From 763a55102d3641e4c07e526679d6ab93df17ad66 Mon Sep 17 00:00:00 2001 From: Denis Palmeiro Date: Mon, 10 Feb 2025 10:19:12 -0500 Subject: [PATCH] Add job to automatically generate nimbus performance reports --- jobs/nimbus-perf-reports/.gitignore | 0 jobs/nimbus-perf-reports/Dockerfile | 20 + jobs/nimbus-perf-reports/README.md | 26 + jobs/nimbus-perf-reports/ci_job.yaml | 12 + jobs/nimbus-perf-reports/ci_workflow.yaml | 13 + jobs/nimbus-perf-reports/entry.sh | 31 + .../find-latest-experiment | 196 + jobs/nimbus-perf-reports/generate-perf-report | 21 + jobs/nimbus-perf-reports/lib/analysis.py | 343 + jobs/nimbus-perf-reports/lib/generate.py | 174 + jobs/nimbus-perf-reports/lib/parser.py | 161 + jobs/nimbus-perf-reports/lib/probe-index.json | 602760 +++++++++++++++ jobs/nimbus-perf-reports/lib/report.py | 565 + jobs/nimbus-perf-reports/lib/telemetry.py | 581 + .../lib/templates/html/categorical.html | 55 + .../lib/templates/html/cdf.html | 198 + .../lib/templates/html/cdf_uplift.html | 205 + .../lib/templates/html/config.html | 31 + .../lib/templates/html/header.html | 361 + .../lib/templates/html/index.html | 190 + .../lib/templates/html/mean.html | 194 + .../lib/templates/html/sidebar.html | 34 + .../lib/templates/html/summary.html | 168 + .../lib/templates/html/uplift.html | 210 + .../templates/sql/archived/events_generic.sql | 71 + .../sql/archived/events_no_segments.sql | 41 + ...s_segments_non_experiment_with_android.sql | 94 + .../sql/archived/histogram_generic.sql | 74 + .../sql/archived/histogram_no_segments.sql | 35 + .../glean/histogram_os_segments.sql | 145 + .../glean/pageload_events_os_segments.sql | 104 + .../legacy/histogram_os_segments.sql | 81 + .../sql/other/glean/histogram_os_segments.sql | 74 + .../glean/pageload_events_os_segments.sql | 100 + .../other/legacy/histogram_os_segments.sql | 70 + jobs/nimbus-perf-reports/requirements.txt | 38 + jobs/nimbus-perf-reports/update-index | 217 + jobs/nimbus-perf-reports/update-probe-index | 60 + 38 files changed, 607753 insertions(+) create mode 100644 jobs/nimbus-perf-reports/.gitignore create mode 100644 jobs/nimbus-perf-reports/Dockerfile create mode 100644 jobs/nimbus-perf-reports/README.md create mode 100644 jobs/nimbus-perf-reports/ci_job.yaml create mode 100644 jobs/nimbus-perf-reports/ci_workflow.yaml create mode 100755 jobs/nimbus-perf-reports/entry.sh create mode 100755 jobs/nimbus-perf-reports/find-latest-experiment create mode 100755 jobs/nimbus-perf-reports/generate-perf-report create mode 100644 jobs/nimbus-perf-reports/lib/analysis.py create mode 100644 jobs/nimbus-perf-reports/lib/generate.py create mode 100644 jobs/nimbus-perf-reports/lib/parser.py create mode 100644 jobs/nimbus-perf-reports/lib/probe-index.json create mode 100644 jobs/nimbus-perf-reports/lib/report.py create mode 100644 jobs/nimbus-perf-reports/lib/telemetry.py create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/categorical.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/cdf.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/cdf_uplift.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/config.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/header.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/index.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/mean.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/sidebar.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/summary.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/html/uplift.html create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/archived/events_generic.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/archived/events_no_segments.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/archived/events_os_segments_non_experiment_with_android.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/archived/histogram_generic.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/archived/histogram_no_segments.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/experiment/glean/histogram_os_segments.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/experiment/glean/pageload_events_os_segments.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/experiment/legacy/histogram_os_segments.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/other/glean/histogram_os_segments.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/other/glean/pageload_events_os_segments.sql create mode 100644 jobs/nimbus-perf-reports/lib/templates/sql/other/legacy/histogram_os_segments.sql create mode 100644 jobs/nimbus-perf-reports/requirements.txt create mode 100755 jobs/nimbus-perf-reports/update-index create mode 100755 jobs/nimbus-perf-reports/update-probe-index diff --git a/jobs/nimbus-perf-reports/.gitignore b/jobs/nimbus-perf-reports/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/jobs/nimbus-perf-reports/Dockerfile b/jobs/nimbus-perf-reports/Dockerfile new file mode 100644 index 00000000..ee38e197 --- /dev/null +++ b/jobs/nimbus-perf-reports/Dockerfile @@ -0,0 +1,20 @@ +FROM continuumio/miniconda3 +WORKDIR /app + +# Install dependencies for gsutil +RUN apt-get update && apt-get install -y \ + curl \ + gnupg \ + && curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \ + && echo "deb https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list \ + && apt-get update && apt-get install -y google-cloud-sdk \ + && apt-get clean + +# Create the conda environment and install python dependencies +COPY requirements.txt . +RUN conda create --name nimbusperf python=3.10 && \ + conda run -n nimbusperf pip install --no-cache-dir -r requirements.txt + +COPY . . +ENV BUCKET_URL="gs://moz-fx-data-prot-nonprod-c3a1-protodash/perf-reports" +CMD ["conda", "run", "--no-capture-output", "-n", "nimbusperf", "/app/entry.sh"] \ No newline at end of file diff --git a/jobs/nimbus-perf-reports/README.md b/jobs/nimbus-perf-reports/README.md new file mode 100644 index 00000000..0f8a5c4a --- /dev/null +++ b/jobs/nimbus-perf-reports/README.md @@ -0,0 +1,26 @@ +# Nimbus Perf Reports + +## Overview + +Nimbus Perf Reports is a python project imported from https://github.com/dpalmeiro/telemetry-perf-reports that is designed for analyzing and generating performance reports based on telemetry data. This job will check for any recently finished Nimbus experiments, and automatically generate and publish a performance report for that experiment which covers some basic performance coverage. + +## Dependencies + +You can install the necessary python dependencies with: + +`pip install -r requirements.txt` + +This project also requires the [gcloud sdk](https://cloud.google.com/sdk/docs/install) and expects that authentication has already been established. + +## Usage + +To generate a report locally: + +1. Define a config for your experiment. See https://github.com/dpalmeiro/telemetry-perf-reports/tree/main/configs for some examples. +2. `./generate-perf-report --config ` + + +To update the existing perf-reports list on protosaur, you can run this through docker: + +1. `docker build -t nimbusperf-app .` +2. `docker run -it --rm -v ~/.config/gcloud:/root/.config/gcloud:ro nimbusperf-app` diff --git a/jobs/nimbus-perf-reports/ci_job.yaml b/jobs/nimbus-perf-reports/ci_job.yaml new file mode 100644 index 00000000..51dd48c2 --- /dev/null +++ b/jobs/nimbus-perf-reports/ci_job.yaml @@ -0,0 +1,12 @@ +build-nimbus-perf-reports: + docker: + - image: << pipeline.parameters.git-image >> + steps: + - checkout + - compare-branch: + pattern: ^jobs/nimbus-perf-reports/ + - setup_remote_docker: + version: << pipeline.parameters.docker-version >> + - run: + name: Build Docker image + command: docker build -t app:build jobs/nimbus-perf-reports diff --git a/jobs/nimbus-perf-reports/ci_workflow.yaml b/jobs/nimbus-perf-reports/ci_workflow.yaml new file mode 100644 index 00000000..c5aeae3a --- /dev/null +++ b/jobs/nimbus-perf-reports/ci_workflow.yaml @@ -0,0 +1,13 @@ +nimbus-perf-reports: + jobs: + - build-nimbus-perf-reports + - gcp-gcr/build-and-push-image: + context: data-eng-airflow-gcr + docker-context: jobs/nimbus-perf-reports/ + path: jobs/nimbus-perf-reports/ + image: nimbus-perf-reports + requires: + - build-nimbus-perf-reports + filters: + branches: + only: main diff --git a/jobs/nimbus-perf-reports/entry.sh b/jobs/nimbus-perf-reports/entry.sh new file mode 100755 index 00000000..04ee5ba7 --- /dev/null +++ b/jobs/nimbus-perf-reports/entry.sh @@ -0,0 +1,31 @@ +#!/bin/bash +set -euxo pipefail +export PATH=/opt/conda/envs/nimbusperf/bin:$PATH + +# Clear any pre-existing reports +rm -rf reports + +echo -e "\n*************************************************" +echo -e "Copying index.html\n" +gsutil cp $BUCKET_URL/index.html index.html +cp index.html index-backup.html + +echo -e "\n*************************************************" +echo -e "Generating reports...\n" +python find-latest-experiment index.html + +if [ -d "reports" ] && [ "$(ls -A reports)" ]; then + for file in reports/* ; do + echo -e "\n*************************************************" + echo -e "Updating index.html with $file" + python update-index --index index.html --append $file + + echo -e "Transferring $file to protosaur\n" + gsutil cp $file $BUCKET_URL/$(basename $file) + done + + echo -e "\n*************************************************" + echo -e "Uploading new index.html to protosaur\n" + gsutil cp index-backup.html $BUCKET_URL/index-backup.html + gsutil cp index.html $BUCKET_URL/index.html +fi diff --git a/jobs/nimbus-perf-reports/find-latest-experiment b/jobs/nimbus-perf-reports/find-latest-experiment new file mode 100755 index 00000000..ae9aaaf2 --- /dev/null +++ b/jobs/nimbus-perf-reports/find-latest-experiment @@ -0,0 +1,196 @@ +#!/usr/bin/env python3 +import requests +import json +import sys +import os +from lib.generate import generate_report +from datetime import datetime, timedelta +from bs4 import BeautifulSoup as bs + +default_histograms = [ + "metrics.timing_distribution.performance_pageload_fcp", + "metrics.timing_distribution.performance_pageload_load_time", + "metrics.timing_distribution.perf_largest_contentful_paint", + "metrics.timing_distribution.networking_http_channel_sub_open_to_first_sent_https_rr", + + "metrics.timing_distribution.perf_startup_cold_view_app_to_first_frame", + "metrics.timing_distribution.perf_startup_cold_unknwn_app_to_first_frame", + "metrics.timing_distribution.perf_startup_cold_main_app_to_first_frame", + "metrics.timing_distribution.perf_startup_application_on_create", + "metrics.timing_distribution.geckoview_startup_runtime", + + "metrics.timing_distribution.performance_interaction_tab_switch_composite", + "metrics.timing_distribution.recent_synced_tabs_recent_synced_tab_time_to_load", + "metrics.timing_distribution.perf_awesomebar_search_engine_suggestions" +] + +default_events = { + "fcp_time" : [0, 30000], + "lcp_time" : [0, 30000], + "load_time": [0, 30000], + "response_time": [0, 30000] +} + +class NpEncoder(json.JSONEncoder): + def default(self, obj): + if isinstance(obj, np.integer): + return int(obj) + if isinstance(obj, np.floating): + return float(obj) + if isinstance(obj, np.ndarray): + return obj.tolist() + return super(NpEncoder, self).default(obj) + +# Only generate reports for Desktop or Android experiments. +def is_supported_experiment(exp): + if not (exp['appName'] == 'firefox_desktop' or exp['appName'] == 'fenix'): + print("--> unsupported platform.") + return False + + # Skip experiments with no branches + if len(exp['branches']) == 0: + print("--> no branches found.") + return False + + # If this is an experiment with only 1 branch, then pretend it's a rollout. + if not exp['isRollout'] and len(exp['branches']) == 1: + exp['isRollout'] = True + + # Cannot generate a performance report for rollouts that use 100% of population. + if exp['isRollout'] and len(exp['branches']) == 1 and exp['branches'][0]['ratio'] >= 0.9: + print("--> no control population available.") + return False + + return True + +# Check if the experiment finished recently. +def is_recent_experiment(date_string, days=3): + given_date = datetime.strptime(date_string, "%Y-%m-%d") + now = datetime.now() + + # Check if the given date is within the last 3 days + days_ago = now - timedelta(days) + return days_ago <= given_date + +def filter_and_sort(experiments): + # Remove invalid entries (those with None as endDate) + experiments[:] = [exp for exp in experiments if exp["endDate"] is not None] + + # Sort the remaining entries by endDate + experiments.sort(key=lambda x: x["endDate"]) + +def retrieve_nimbus_experiment_list(): + url=f'https://experimenter.services.mozilla.com/api/v6/experiments/' + print(f"Loading nimbus experiment list from {url}") + + response = requests.get(url) + if response.ok: + values = response.json() + return values + else: + print(f"Failed to retrieve {url}: {response.status_code}") + sys.exit(1) + +def extract_existing_reports(index_file): + with open(index_file, 'r') as file: + soup = bs(file, 'html.parser') + + # Find the table containing experiment reports + experiment_table = soup.find('table', class_='experiment-table') + experiments = {} + + if experiment_table: + rows = experiment_table.find_all('tr')[1:] # Skip the header row + for row in rows: + cells = row.find_all('td') + if cells and len(cells) > 0: + experiment_name = cells[0].get_text(strip=True) + experiments[experiment_name] = { + 'start_date': cells[1].get_text(strip=True), + 'end_date': cells[2].get_text(strip=True), + 'channel': cells[3].get_text(strip=True) + } + + return experiments + +def generate_histogram_metrics(exp): + return default_histograms + +def generate_event_metrics(exp): + return default_events + +# Create a config for the experiment, and return a dict of +# args used to generate the experiment report. +def create_config_for_experiment(exp): + args = {} + config = {} + config['slug'] = exp['slug'] + + if exp['appName'] == 'firefox_desktop': + config['segments'] = ['Windows', 'Linux', 'Mac'] + elif exp['appName'] == 'fenix': + config['segments'] = ['Android'] + + config['histograms'] = generate_histogram_metrics(exp) + config['pageload_event_metrics'] = generate_event_metrics(exp) + + configFile = f"{exp['slug']}.json" + with open(configFile, 'w') as f: + json.dump(config, f, indent=2, cls=NpEncoder) + + class ArgsDict(dict): + def __getattr__(self, name): + return self[name] + def __setattr__(self, name, value): + self[name] = value + + args = ArgsDict() + args.config = configFile + args.dataDir = 'data' + args.reportDir = 'reports' + args.skip_cache = False + args.html_report = True + return args + +def main(): + if len(sys.argv) < 2: + print("Error: Please provide path to existing reports index.html file.") + sys.exit(1) + + index_file = sys.argv[1] + if not os.path.isfile(index_file): + print(f"Error: Cannot find '{index_file}'") + sys.exit(1) + + # Get list of reports already created by slug + reports = extract_existing_reports(index_file) + + # Get experiment list + experiments = retrieve_nimbus_experiment_list() + + # Sort list by endDate + filter_and_sort(experiments) + + for exp in experiments: + print("Checking ", exp['slug'], "...") + + if not is_recent_experiment(exp['endDate']): + print("---> not recent") + continue + + if not is_supported_experiment(exp): + continue + + if exp['slug'] in reports: + print("---> already exists") + continue + + print('---------------------------') + print(f"Generating Report for {exp['slug']}") + print("Config:") + print(json.dumps(exp, indent=2)) + args = create_config_for_experiment(exp) + generate_report(args) + +if __name__ == "__main__": + main() diff --git a/jobs/nimbus-perf-reports/generate-perf-report b/jobs/nimbus-perf-reports/generate-perf-report new file mode 100755 index 00000000..4e622af6 --- /dev/null +++ b/jobs/nimbus-perf-reports/generate-perf-report @@ -0,0 +1,21 @@ +#!/usr/bin/env python3 +import os +import sys +import argparse +from lib.generate import generate_report + +def parseArguments(): + parser = argparse.ArgumentParser(description='Process telemetry performance report.') + parser.add_argument('--config', type=str, required=True, help="Input JSON config file.") + parser.add_argument('--dataDir', type=str, default="data", help="Directory to save data to.") + parser.add_argument('--reportDir', type=str, default="reports", help="Directory to save results to.") + parser.add_argument('--skip-cache', action=argparse.BooleanOptionalAction, + default=False, help="Ignore any cached files on disk, and regenerate them.") + parser.add_argument('--html-report', action=argparse.BooleanOptionalAction, + default=True, help="Generate html report.") + args = parser.parse_args() + return args + +if __name__ == "__main__": + args = parseArguments() + generate_report(args) diff --git a/jobs/nimbus-perf-reports/lib/analysis.py b/jobs/nimbus-perf-reports/lib/analysis.py new file mode 100644 index 00000000..35d85141 --- /dev/null +++ b/jobs/nimbus-perf-reports/lib/analysis.py @@ -0,0 +1,343 @@ +from scipy import stats +import numpy as np +import json +import sys + +# Expand the histogram into an array of values +def flatten_histogram(bins, counts): + array = [] + for i in range(len(bins)): + for j in range(1, int(counts[i]/2.0)): + array.append(bins[i]) + return array + +# effect size calculation for t-test +def calc_cohen_d(x1, x2, s1, s2, n1, n2): + effect_size = (x1-x2)/np.sqrt(((n1-1)*s1**2 + (n2-1)*s2**2) / (n1+n2-2)) + return effect_size + +# effect size calculation for mwu +def rank_biserial_correlation(n1, n2, U): + return (1-2*U/(n1*n2)) + +# Calculate two-way t-test with unequal sample size and unequal variances. +# Return the t-value, p-value, and effect size via cohen's d. +def calc_t_test(x1, x2, s1, s2, n1, n2): + s_prime = np.sqrt((s1**2/n1) + (s2**2)/n2) + t_value = (x1-x2)/s_prime + + df = (s1**2/n1 + s2**2/n2)**2/( (s1**2/n1)**2/(n1-1) + (s2**2/n2)**2/(n2-1) ) + p_value = 2 * (1-(stats.t.cdf(abs(t_value), df))) + effect_size = calc_cohen_d(x1, x2, s1, s2, n1, n2) + return [t_value, p_value, effect_size] + +def create_subsample(bins, counts, sample_size=100000): + total_counts = sum(counts) + if total_counts <= sample_size: + return flatten_histogram(bins, counts) + + ratio = total_counts/sample_size + subsample = [] + for i in range(len(bins)): + subsample.extend(np.repeat(bins[i], counts[i]/ratio)) + return subsample + +def calc_cdf_from_density(density, vals): + cdf = [] + sum = 0 + for i in range(0,len(density)-2): + width = vals[i+1]-vals[i] + cdf_val = sum+density[i]*width + sum = cdf_val + cdf.append(cdf_val) + + width = vals[-1]-vals[-2] + cdf_val = sum+density[-1]*width + sum = cdf_val + cdf.append(cdf_val) + return cdf + +# TODO: Interpolate the quantiles. +def calc_histogram_quantiles(bins, density): + vals = [] + quantiles = [] + q = 0 + j = 0 + for i in range(len(bins)): + q = q + density[i] + vals.append(bins[i]) + quantiles.append(q) + + return [quantiles, vals] + +def calc_histogram_density(counts, n): + density = [] + cdf = [] + cum = 0 + for i in range(len(counts)): + density.append(float(counts[i]/n)) + cum = cum+counts[i] + cdf.append(float(cum)) + cdf = [x / cum for x in cdf] + return [density, cdf] + +def calc_histogram_mean_var(bins, counts): + mean = 0 + n = 0 + for i in range(len(bins)): + bucket = float(bins[i]) + count = float(counts[i]) + n = n + count + mean = mean + bucket*count + mean = float(mean)/float(n) + + var = 0 + for i in range(len(bins)): + bucket = float(bins[i]) + count = float(counts[i]) + var = var + count*(bucket-mean)**2 + var = float(var)/float(n) + std = np.sqrt(var) + + return [mean, var, std, n] + +def calculate_histogram_stats(bins, counts, data): + # Calculate mean, std, and var + [mean, var, std, n] = calc_histogram_mean_var(bins, counts) + data['mean'] = mean + data['std'] = std + data['var'] = var + data['n'] = n + + # Calculate densities + [density, cdf] = calc_histogram_density(counts, n) + data["pdf"]["cdf"] = cdf + data["pdf"]["density"] = density + data["pdf"]["values"] = bins + + # Calculate quantiles + [quantiles, vals] = calc_histogram_quantiles(bins, density) + data["quantiles"] = quantiles + data["quantile_vals"] = vals + +def calculate_histogram_tests_subsampling(control_data, branch_data, result): + bins_control = control_data["bins"] + counts_control = control_data["counts"] + control_sample = create_subsample(bins_control, counts_control) + + bins_branch = branch_data["bins"] + counts_branch = branch_data["counts"] + branch_sample = create_subsample(bins_branch, counts_branch) + + # Calculate t-test and effect + x1 = np.mean(control_sample) + s1 = np.std(control_sample) + n1 = len(control_sample) + x2 = np.mean(branch_sample) + s2 = np.std(branch_sample) + n2 = len(branch_sample) + effect = calc_cohen_d(x1, x2, s1, s2, n1, n2) + [t, p] = stats.ttest_ind(control_sample, branch_sample) + result["tests"]["ttest"] = {} + result["tests"]["ttest"]["score"] = t + result["tests"]["ttest"]["p-value"] = p + result["tests"]["ttest"]["effect"] = effect + + # Calculate mwu-test + [U, p] = stats.mannwhitneyu(control_sample, branch_sample) + r = rank_biserial_correlation(n1, n2, U) + result["tests"]["mwu"] = {} + result["tests"]["mwu"]["score"] = U + result["tests"]["mwu"]["p-value"] = p + result["tests"]["mwu"]["effect"] = r + + # Calculate ks-test + [D, p] = stats.ks_2samp(control_sample, branch_sample) + result["tests"]["ks"] = {} + result["tests"]["ks"]["score"] = D + result["tests"]["ks"]["p-value"] = p + result["tests"]["ks"]["effect"] = D + +def calculate_histogram_ttest(bins, counts, data, control): + mean_control = control['mean'] + std_control = control['std'] + n_control = control['n'] + + mean = data['mean'] + std = data['std'] + n = data['n'] + + # Calculate t-test + [t_value, p_value, effect] = calc_t_test(mean, mean_control, std, std_control, n, n_control) + data["tests"]["ttest"] = {} + data["tests"]["ttest"]["score"] = t_value + data["tests"]["ttest"]["p-value"] = p_value + data["tests"]["ttest"]["effect"] = effect + +def calc_confidence_interval(data, confidence=0.95): + a = 1.0 * np.array(data) + n = len(a) + m, se = np.mean(a), stats.sem(a) + h = se * stats.t.ppf((1 + confidence) / 2., n-1) + return [m, se, m-h, m+h] + +def createNumericalTemplate(): + template = { + "desc": "", + "mean": 0, + "confidence": { + "min": 0, + "max": 0 + }, + "se": 0, + "var": 0, + "std": 0, + "n": 0, + "pdf": + { + "values" : [], + "density" : [], + "cdf": [] + }, + "quantiles": [], + "quantile_vals": [], + "tests": {} + } + return template + +def createCategoricalTemplate(): + template = { + "desc": "", + "labels": [], + "counts": [], + "ratios": [], + "sum": 0 + } + return template + +def createResultsTemplate(config): + template = {} + for branch in config['branches']: + template[branch] = {} + for segment in config['segments']: + template[branch][segment] = { + "histograms": {}, + "pageload_event_metrics": {} + } + + + for histogram in config['histograms']: + hist_name = histogram.split(".")[-1] + if config['histograms'][histogram]['kind'] == 'categorical': + template[branch][segment]["histograms"][hist_name] = createCategoricalTemplate() + else: + template[branch][segment]["histograms"][hist_name] = createNumericalTemplate() + + for metric in config["pageload_event_metrics"]: + template[branch][segment]["pageload_event_metrics"][metric] = createNumericalTemplate() + + return template + +class DataAnalyzer: + def __init__(self, config): + self.config = config + self.event_controldf = None + self.control = self.config["branches"][0] + self.results = createResultsTemplate(config) + + self.binVals = {} + for field in self.config["pageload_event_metrics"]: + self.binVals[field] = 'auto' + + def processTelemetryData(self, telemetryData): + for branch in self.config['branches']: + self.processTelemetryDataForBranch(telemetryData, branch) + return self.results + + def processTelemetryDataForBranch(self, data, branch): + self.processHistogramData(data, branch) + self.processPageLoadEventData(data, branch) + + def processNumericalHistogramData(self, hist, data, branch, segment): + hist_name = hist.split('.')[-1] + print(f" processing numerical histogram: {hist}") + + # Calculate stats + bins = data[branch][segment]["histograms"][hist]["bins"] + counts = data[branch][segment]["histograms"][hist]["counts"] + + desc = self.config["histograms"][hist]["desc"] + self.results[branch][segment]["histograms"][hist_name]["desc"] = desc + + calculate_histogram_stats(bins, counts, self.results[branch][segment]["histograms"][hist_name]) + + # Calculate statistical tests + if branch != self.control: + control_data = data[self.control][segment]["histograms"][hist] + branch_data = data[branch][segment]["histograms"][hist] + result = self.results[branch][segment]["histograms"][hist_name] + calculate_histogram_tests_subsampling(control_data, branch_data, result) + + def processCategoricalHistogramData(self, hist, data, branch, segment): + hist_name = hist.split('.')[-1] + print(f" processing categorical histogram: {hist}") + desc = self.config["histograms"][hist]["desc"] + labels = data[branch][segment]["histograms"][hist]["bins"] + counts = data[branch][segment]["histograms"][hist]["counts"] + + self.results[branch][segment]["histograms"][hist_name]["desc"] = desc + self.results[branch][segment]["histograms"][hist_name]["labels"] = labels + self.results[branch][segment]["histograms"][hist_name]["counts"] = counts + total = sum(counts) + + self.results[branch][segment]["histograms"][hist_name]["sum"] = total + ratios = [x/total for x in counts] + self.results[branch][segment]["histograms"][hist_name]["ratios"] = ratios + + if branch != self.control: + ratios_control = self.results[self.control][segment]["histograms"][hist_name]["ratios"] + uplift = [] + for i in range(len(ratios)): + uplift.append((ratios[i]-ratios_control[i])*100) + self.results[branch][segment]["histograms"][hist_name]["uplift"] = uplift + + def processHistogramData(self, data, branch): + print(f"Calculating histogram statistics for branch: {branch}") + for segment in self.config['segments']: + print(f" processing segment: {segment}") + + for hist in self.config["histograms"]: + kind = self.config["histograms"][hist]["kind"] + if kind=="categorical": + self.processCategoricalHistogramData(hist, data, branch, segment) + else: + self.processNumericalHistogramData(hist, data, branch, segment) + + + def processPageLoadEventData(self, data, branch): + print(f"Calculating pageload event statistics for branch: {branch}") + for segment in self.config['segments']: + print(f" processing segment: {segment}") + + for metric in self.config["pageload_event_metrics"]: + print(f" processing metric: {metric}") + + # Calculate stats + bins = data[branch][segment]["pageload_event_metrics"][metric]["bins"] + counts = data[branch][segment]["pageload_event_metrics"][metric]["counts"] + desc = self.config["pageload_event_metrics"][metric]["desc"] + self.results[branch][segment]["pageload_event_metrics"][metric]["desc"] = desc + calculate_histogram_stats(bins, counts, self.results[branch][segment]["pageload_event_metrics"][metric]) + + # Calculate statistical tests + if branch != self.control: + control_data = data[self.control][segment]["pageload_event_metrics"][metric] + branch_data = data[branch][segment]["pageload_event_metrics"][metric] + result = self.results[branch][segment]["pageload_event_metrics"][metric] + calculate_histogram_tests_subsampling(control_data, branch_data, result) + + # Calculate statistical tests + #if branch != self.control: + # control_data = self.results[self.control][segment]["pageload_event_metrics"][metric] + # branch_data = self.results[branch][segment]["pageload_event_metrics"][metric] + # calculate_histogram_ttest(bins, counts, branch_data, control_data) diff --git a/jobs/nimbus-perf-reports/lib/generate.py b/jobs/nimbus-perf-reports/lib/generate.py new file mode 100644 index 00000000..035f02ca --- /dev/null +++ b/jobs/nimbus-perf-reports/lib/generate.py @@ -0,0 +1,174 @@ +#!/usr/bin/env python3 +import json +import os +import sys +import time +import numpy as np +import django +from django.apps import apps +import lib.parser as parser +from django.conf import settings +from lib.telemetry import TelemetryClient +from lib.analysis import DataAnalyzer +from lib.report import ReportGenerator + +class NpEncoder(json.JSONEncoder): + def default(self, obj): + if isinstance(obj, np.integer): + return int(obj) + if isinstance(obj, np.floating): + return float(obj) + if isinstance(obj, np.ndarray): + return obj.tolist() + return super(NpEncoder, self).default(obj) + +def setupDjango(): + if apps.ready: + return + + TEMPLATES = [ + { + "BACKEND": "django.template.backends.django.DjangoTemplates", + 'DIRS': [os.path.join(os.path.dirname(__file__),'templates','sql'), + os.path.join(os.path.dirname(__file__),'templates','html')] + } + ] + settings.configure(TEMPLATES=TEMPLATES) + django.setup() + +def setupDirs(slug, dataDir, reportDir, generate_report): + if not os.path.isdir(dataDir): + os.mkdir(dataDir) + if not os.path.isdir(os.path.join(dataDir,slug)): + os.mkdir(os.path.join(dataDir,slug)) + if generate_report: + if not os.path.isdir(reportDir): + os.mkdir(reportDir) + +def getResultsForExperiment(slug, dataDir, config, skipCache): + sqlClient = TelemetryClient(dataDir, config, skipCache) + telemetryData = sqlClient.getResults() + + # Change the branches to a list for easier use during analysis. + branch_names = [] + for i in range(len(config['branches'])): + branch_names.append(config['branches'][i]['name']) + config['branches'] = branch_names + + analyzer = DataAnalyzer(config) + results = analyzer.processTelemetryData(telemetryData) + + # Save the queries into the results and cache them. + queriesFile=os.path.join(dataDir, f"{slug}-queries.json") + if 'queries' in telemetryData and telemetryData['queries']: + with open(queriesFile, 'w') as f: + json.dump(telemetryData['queries'], f, indent=2, cls=NpEncoder) + else: + queries = checkForLocalResults(queriesFile) + if queries is not None: + telemetryData['queries'] = queries + + results['queries'] = telemetryData['queries'] + return results + +def checkForLocalResults(resultsFile): + if os.path.isfile(resultsFile): + with open(resultsFile, 'r') as f: + results = json.load(f) + return results + return None + +def generate_report(args): + startTime = time.time() + + setupDjango() + + # Parse config file. + print("Loading config file: ", args.config) + config = parser.parseConfigFile(args.config) + slug = config['slug'] + + # Setup local dirs + print("Setting up local directories.") + setupDirs(slug, args.dataDir, args.reportDir, args.html_report) + dataDir=os.path.join(args.dataDir, slug) + reportDir=args.reportDir + skipCache=args.skip_cache + + # Check for local results first. + resultsFile= os.path.join(dataDir, f"{slug}-results.json") + if skipCache: + results = None + else: + results = checkForLocalResults(resultsFile) + + # If results not found, generate them. + if results is None: + # Annotate metrics + parser.annotateMetrics(config) + + if config["is_experiment"] == True: + # Parse Nimbus API. + api = parser.parseNimbusAPI(dataDir, slug, skipCache) + config = config | api + + # If the experiment is a rollout, then use the non-enrolled branch + # as the control. + if config['isRollout'] == True: + config['include_non_enrolled_branch'] = True + + # If non-enrolled branch was included, add an extra branch. + if 'include_non_enrolled_branch' in config: + include_non_enrolled_branch = config['include_non_enrolled_branch'] + if include_non_enrolled_branch == True or include_non_enrolled_branch.lower() == "true": + config['include_non_enrolled_branch'] = True + if config['isRollout'] == True: + config["branches"].insert(0, {'name': 'default'}) + else: + config["branches"].append({'name': 'default'}) + else: + config['include_non_enrolled_branch'] = False + + # Make control the first element if not already. + if "control" in config: + control = config["control"] + del config["control"] + if config["branches"][0]["name"] != control: + for i,b in enumerate(config["branches"]): + if b["name"] == control: + tmpFirst = config["branches"][0] + tmpControl = config["branches"][i] + config["branches"][i] = tmpFirst + config["branches"][0] = tmpControl + break + + print("Using Config:") + configStr = json.dumps(config, indent=2) + print(configStr) + + # Get statistical results + origConfig = config.copy() + results = getResultsForExperiment(slug, dataDir, config, skipCache) + results = results | config + results['input'] = origConfig + + # Save results to disk. + print("---------------------------------") + print(f"Writing results to {resultsFile}") + with open(resultsFile, 'w') as f: + json.dump(results, f, indent=2, cls=NpEncoder) + else: + print("---------------------------------") + print(f"Found local results in {resultsFile}") + + if args.html_report: + reportFile = os.path.join(reportDir, f"{slug}.html") + print(f"Generating html report in {reportFile}") + + gen = ReportGenerator(results) + report = gen.createHTMLReport() + with open(reportFile, "w") as f: + f.write(report) + + executionTime = time.time()-startTime + print(f"Execution time: {executionTime:.1f} seconds") diff --git a/jobs/nimbus-perf-reports/lib/parser.py b/jobs/nimbus-perf-reports/lib/parser.py new file mode 100644 index 00000000..b3d47759 --- /dev/null +++ b/jobs/nimbus-perf-reports/lib/parser.py @@ -0,0 +1,161 @@ +import requests +import json +import yaml +import sys +import os +import datetime + +def checkForLocalFile(filename): + try: + with open(filename, 'r') as f: + data = json.load(f) + return data + except: + return None + +def loadProbeIndex(): + filename=os.path.join(os.path.dirname(__file__), "probe-index.json") + data = checkForLocalFile(filename) + return data + +def annotateMetrics(config): + probeIndex = loadProbeIndex() + annotateHistograms(config, probeIndex) + annotatePageloadEventMetrics(config, probeIndex) + +def annotatePageloadEventMetrics(config, probeIndex): + event_schema = probeIndex["glean"]["perf_page_load"]["extra_keys"] + + event_metrics = config['pageload_event_metrics'].copy() + config['pageload_event_metrics'] = {} + + for metric in event_metrics: + config['pageload_event_metrics'][metric] = {} + if metric in event_schema: + config['pageload_event_metrics'][metric]["desc"] = event_schema[metric]["description"] + config['pageload_event_metrics'][metric]["min"] = event_metrics[metric][0] + config['pageload_event_metrics'][metric]["max"] = event_metrics[metric][1] + else: + print(f"ERROR: {metric} not found in pageload event schema.") + sys.exit(1) + +def annotateHistograms(config, probeIndex): + histograms = config['histograms'].copy() + config['histograms'] = {} + for i,hist in enumerate(histograms): + config['histograms'][hist] = {} + hist_name = hist.split('.')[-1] + + # Annotate legacy probe. + if hist_name.upper() in probeIndex["legacy"]: + schema = probeIndex["legacy"][hist_name.upper()] + config['histograms'][hist]["glean"] = False + config['histograms'][hist]["desc"] = schema["description"] + config['histograms'][hist]["available_on_desktop"] = True + config['histograms'][hist]["available_on_android"] = False + kind = schema["details"]["kind"] + print(hist, kind) + if kind=="categorical" or kind=="boolean" or kind=="enumerated": + config['histograms'][hist]["kind"] = "categorical" + if "labels" in schema["details"]: + config['histograms'][hist]["labels"] = schema["details"]["labels"] + elif kind=="boolean": + config['histograms'][hist]["labels"] = ["no", "yes"] + elif "n_buckets" in schema["details"]: + n_buckets = schema["details"]["n_buckets"] + config['histograms'][hist]["labels"] = list(range(0, n_buckets)) + else: + config['histograms'][hist]["kind"] = "numerical" + + + # Annotate glean probe. + elif hist_name in probeIndex["glean"]: + schema = probeIndex["glean"][hist_name] + config['histograms'][hist]["glean"] = True + config['histograms'][hist]["desc"] = schema["description"] + + # Mark if the probe is available on desktop or mobile. + config['histograms'][hist]["available_on_desktop"] = False + config['histograms'][hist]["available_on_android"] = False + + if "gecko" in schema["repos"]: + config['histograms'][hist]["available_on_desktop"] = True + config['histograms'][hist]["available_on_android"] = True + elif "fenix" in schema["repos"]: + config['histograms'][hist]["available_on_android"] = True + elif "desktop" in schema["repos"]: + config['histograms'][hist]["available_on_desktop"] = True + + # Only support timing distribution types for now. + if schema["type"] == "timing_distribution": + config['histograms'][hist]["kind"] = "numerical" + else: + type=schema["type"] + print(f"ERROR: Type {type} for {hist_name} not currently supported.") + sys.exit(1) + + # Use the high and low values from the legacy mirror as bounds. + if "telemetry_mirror" in probeIndex["glean"][hist_name]: + legacy_mirror = probeIndex["glean"][hist_name]["telemetry_mirror"] + high = probeIndex["legacy"][legacy_mirror]["details"]["high"] + config['histograms'][hist]['max'] = high + + else: + print(f"ERROR: {hist_name} not found in histograms schema.") + sys.exit(1) + +def retrieveNimbusAPI(dataDir, slug, skipCache): + filename = f"{dataDir}/{slug}-nimbus-API.json" + if skipCache: + values = None + else: + values = checkForLocalFile(filename) + if values is not None: + print(f"Using local config found in {filename}") + return values + + url=f'https://experimenter.services.mozilla.com/api/v6/experiments/{slug}/' + print(f"Loading nimbus API from {url}") + response = requests.get(url) + if response.ok: + values = response.json() + with open(filename, 'w') as f: + json.dump(values, f, indent=2) + return values + else: + print(f"Failed to retrieve {url}: {response.status_code}") + sys.exit(1) + +# We only care about a few values from the API. +# Specifically, the branch slugs, channel and start/end dates. +def extractValuesFromAPI(api): + values = {} + values["startDate"] = api["startDate"] + values["endDate"] = api["endDate"] + values["channel"] = api["channel"] + values["isRollout"] = api["isRollout"] + + if values["endDate"] is None: + now = datetime.datetime.now(); + values["endDate"] = now.strftime('%Y-%m-%d') + + values["branches"] = [] + for branch in api["branches"]: + values["branches"].append({'name': branch["slug"]}) + return values + +def parseNimbusAPI(dataDir, slug, skipCache): + apiValues = retrieveNimbusAPI(dataDir, slug, skipCache) + return extractValuesFromAPI(apiValues) + +def parseConfigFile(configFile): + with open(configFile, "r") as configData: + config = json.load(configData) + configData.close() + + if "branches" in config: + config["is_experiment"] = False + else: + config["is_experiment"] = True + + return config diff --git a/jobs/nimbus-perf-reports/lib/probe-index.json b/jobs/nimbus-perf-reports/lib/probe-index.json new file mode 100644 index 00000000..d4e80747 --- /dev/null +++ b/jobs/nimbus-perf-reports/lib/probe-index.json @@ -0,0 +1,602760 @@ +{ + "glean": { + "app_build": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1508305" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-08-18 07:55:11", + "last": "2025-02-04 14:05:11" + }, + "description": "The build identifier generated by the CI system (e.g. \"1234/A\").\nIf the value was not provided through configuration,\nthis metric gets set to `Unknown`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7ed24eaf3a2bc6d6687739fa15e0858d3b461514", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L169", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "app_channel": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1520741" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1520741#c18" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "The channel the application is being distributed on.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L207", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "app_display_version": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1508305" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1508305#c9" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-08-18 07:55:11", + "last": "2025-02-04 14:05:11" + }, + "description": "The user visible version string (e.g. \"1.0.3\").\nIf the value was not provided through configuration,\nthis metric gets set to `Unknown`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7ed24eaf3a2bc6d6687739fa15e0858d3b461514", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L188", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "architecture": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1497894" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "The architecture of the device, (e.g. \"arm\", \"x86\").\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L135", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "build_date": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742448" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742448#c17" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-12 16:19:48", + "last": "2025-02-04 14:05:11" + }, + "description": "The date & time the application was built.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7bbd340f7cf440226e1a3659659978028088585e", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L224", + "time_unit": "second", + "type": "datetime", + "version": 0, + "repos": [ + "glean-core", + "glean-js" + ] + }, + "client_id": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1497894" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "A UUID uniquely identifying the client.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L152", + "type": "uuid", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "device_manufacturer": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1522552" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "The manufacturer of the device the application is running on.\nNot set if the device manufacturer can't be determined (e.g. on Desktop).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L97", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "device_model": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1522552" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-27 22:38:27", + "last": "2025-02-04 14:05:11" + }, + "description": "The model of the device the application is running on.\nOn Android, this is Build.MODEL, the user-visible marketing name,\nlike \"Pixel 2 XL\".\nNot set if the device model can't be determined (e.g. on Desktop).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "657909f47c1a00b662a47cf875cffc37f9ece775", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 28, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L115", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "end_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1556966", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1827852" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-19 16:50:47", + "last": "2025-02-04 14:05:11" + }, + "description": "The time of the end of collection of the data in the ping,\nin local time and with minute precision, including timezone information.\nThis is also the time this ping was generated\nand is likely well before ping transmission time.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "514cbbe7cd990bc8c13c56aa3c0ccade05f8a09a", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "glean_internal_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L358", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "glean-core", + "glean-js" + ] + }, + "experiments": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1552471" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-10-15 13:19:32", + "last": "2025-02-04 14:05:11" + }, + "description": "Optional. A dictionary of active experiments.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "afbf89d458192e1405d512535d86db4230040112", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "glean_internal_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L321", + "type": "string", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "first_run_date": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1525045" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1525045#c18" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "The date of the first run of the application.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L243", + "time_unit": "day", + "type": "datetime", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "glean_baseline_duration": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1497894", + "https://bugzilla.mozilla.org/1519120" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "The duration of the last foreground session.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 0 + }, + "send_in_pings": [ + "baseline" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L20", + "time_unit": "second", + "type": "timespan", + "version": 0, + "repos": [ + "glean-core", + "glean-android" + ] + }, + "glean_baseline_locale": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1512938", + "https://bugzilla.mozilla.org/1525540" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "dates": { + "first": "2020-04-03 09:23:16", + "last": "2020-06-24 08:08:15" + }, + "description": "The locale of the application during initialization (e.g. \"es-ES\").\nIf the locale can't be determined on the system, the value is\n[\"und\"](https://unicode.org/reports/tr35/#Unknown_or_Invalid_Identifiers),\nto indicate \"undetermined\".\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "103ca861a147759018a656dbc1af4c1c9bbc0446", + "last": "479d9b8651881ef0a9fdee847b2c491043dda22e" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 34, + "last": 31 + }, + "send_in_pings": [ + "baseline" + ], + "source_url": "https://github.com/mozilla/glean/blob/103ca861a147759018a656dbc1af4c1c9bbc0446/glean-core/metrics.yaml#L28", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android" + ] + }, + "glean_client_annotation_experimentation_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1848201" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1848201#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-19 16:50:47", + "last": "2025-02-04 14:05:11" + }, + "description": "An experimentation identifier derived and provided by the application\nfor the purpose of experimentation enrollment.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "514cbbe7cd990bc8c13c56aa3c0ccade05f8a09a", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "all-pings" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L400", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-server-metrics-compat", + "glean-js", + "accounts-backend" + ] + }, + "glean_database_rkv_load_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1815253" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1815253" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-12 16:08:55", + "last": "2025-02-04 14:05:11" + }, + "description": "If there was an error loading the RKV database, record it.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "34d1652a6ecca56088d230fcfa1a313ec0b18c97", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L709", + "type": "string", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_database_size": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656589" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656589#c7" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-08-26 11:27:21", + "last": "2025-02-04 14:05:11" + }, + "description": "The size of the database file at startup.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d956dbd015b0e5ec4147d607dc547f95faaaf31e", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 25, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L694", + "type": "memory_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_database_write_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896193" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896193#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-31 11:15:22", + "last": "2025-02-04 14:05:11" + }, + "description": "The time it takes for a write-commit for the Glean database.\n", + "disabled": true, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "97ccf96df7d18150c5479b187db2b1a32a3e2f8b", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L723", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_error_invalid_label": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1499761" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499761#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-27 22:38:27", + "last": "2025-02-04 14:05:11" + }, + "description": "Counts the number of times a metric was set with an invalid label.\nThe labels are the `category.name` identifier of the metric.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "657909f47c1a00b662a47cf875cffc37f9ece775", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "labels": null, + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 28, + "last": 0 + }, + "send_in_pings": [ + "all-pings" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L438", + "type": "labeled_counter", + "version": 0, + "repos": [ + "glean-core", + "glean-server-metrics-compat", + "glean-android", + "glean-js", + "accounts-backend" + ] + }, + "glean_error_invalid_overflow": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1591912" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1591912#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-27 22:38:27", + "last": "2025-02-04 14:05:11" + }, + "description": "Counts the number of times a metric was set a value that overflowed.\nThe labels are the `category.name` identifier of the metric.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "657909f47c1a00b662a47cf875cffc37f9ece775", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "labels": null, + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 28, + "last": 0 + }, + "send_in_pings": [ + "all-pings" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L476", + "type": "labeled_counter", + "version": 0, + "repos": [ + "glean-core", + "glean-server-metrics-compat", + "glean-js", + "accounts-backend" + ] + }, + "glean_error_invalid_state": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1566380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499761#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-27 22:38:27", + "last": "2025-02-04 14:05:11" + }, + "description": "Counts the number of times a timing metric was used incorrectly.\nThe labels are the `category.name` identifier of the metric.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "657909f47c1a00b662a47cf875cffc37f9ece775", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "labels": null, + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 28, + "last": 0 + }, + "send_in_pings": [ + "all-pings" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L457", + "type": "labeled_counter", + "version": 0, + "repos": [ + "glean-core", + "glean-server-metrics-compat", + "glean-js", + "accounts-backend" + ] + }, + "glean_error_invalid_value": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1499761" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499761#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-27 22:38:27", + "last": "2025-02-04 14:05:11" + }, + "description": "Counts the number of times a metric was set to an invalid value.\nThe labels are the `category.name` identifier of the metric.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "657909f47c1a00b662a47cf875cffc37f9ece775", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "labels": null, + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 28, + "last": 0 + }, + "send_in_pings": [ + "all-pings" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L419", + "type": "labeled_counter", + "version": 0, + "repos": [ + "glean-core", + "glean-server-metrics-compat", + "glean-android", + "glean-js", + "accounts-backend" + ] + }, + "glean_error_io": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1686233" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1686233#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-02-04 21:22:44", + "last": "2025-02-04 14:05:11" + }, + "description": "The number of times we encountered an IO error\nwhen writing a pending ping to disk.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "124cfae3dde98bb346472edff6eec6f0d78d625f", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 14, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L515", + "type": "counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_error_preinit_tasks_overflow": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1609482" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1609482#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-02 10:01:11", + "last": "2025-02-04 14:05:11" + }, + "description": "The number of tasks that overflowed the pre-initialization buffer.\nOnly sent if the buffer ever overflows.\n\nIn Version 0 this reported the total number of tasks enqueued.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d0f7836043200cc593845dd98f073f3ef1481b81", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L495", + "type": "counter", + "unit": "tasks", + "version": 1, + "repos": [ + "glean-core" + ] + }, + "glean_error_preinit_tasks_timeout": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1575848" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1575848#c5" + ], + "dates": { + "first": "2019-12-13 16:08:53", + "last": "2020-01-17 14:00:01" + }, + "description": "Set to true if the tasks that are queued prior to Glean initialization time out.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d79ff3ddca65e1d37c77641e92e8a275e252dd7a", + "last": "38607e38992fe6b9b143446103b8f0ceb0c80c1b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 50, + "last": 45 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/d79ff3ddca65e1d37c77641e92e8a275e252dd7a/glean-core/metrics.yaml#L248", + "type": "boolean", + "version": 0, + "repos": [ + "glean-core", + "glean-android" + ] + }, + "glean_restarted": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1716725" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1716725" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-12-07 16:35:03", + "last": "2025-02-04 14:05:11" + }, + "description": "Recorded when the Glean SDK is restarted.\n\nOnly included in custom pings that record events.\n\nFor more information, please consult the\n[Custom Ping documentation](https://mozilla.github.io/glean/book/user/pings/custom.html#the-gleanrestarted-event).\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "18ac3c7c4d69c9ecfb7002930e01d4772d9ed296", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "all-pings" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L818", + "type": "event", + "version": 0, + "repos": [ + "glean-core", + "glean-js" + ] + }, + "glean_time_invalid_timezone_offset": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611770", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717402#c1" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611770#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717402#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-06-21 13:17:59", + "last": "2021-08-18 07:55:11" + }, + "description": "Counts the number of times we encountered an invalid timezone offset\nwhen trying to get the current time.\nA timezone offset is invalid if it is outside [-24h, +24h].\nIf invalid a UTC offset is used (+0h).\n", + "disabled": false, + "expires": "2021-12-31", + "gecko_datapoint": "", + "git-commits": { + "first": "adb2e627b6ae9eba34f5ce04654f590df0ca07ef", + "last": "7ed24eaf3a2bc6d6687739fa15e0858d3b461514" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "jrediger@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 3 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/adb2e627b6ae9eba34f5ce04654f590df0ca07ef/glean-core/metrics.yaml#L625", + "type": "counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_deleted_pings_after_quota_hit": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1601550" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1601550#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-02-04 21:22:44", + "last": "2025-02-04 14:05:11" + }, + "description": "The number of pings deleted after the quota\nfor the size of the pending pings directory or number of files is hit.\nSince quota is only calculated for the pending pings directory,\nand deletion request ping live in a different directory,\ndeletion request pings are never deleted.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "124cfae3dde98bb346472edff6eec6f0d78d625f", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 14, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L591", + "type": "counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_discarded_exceeding_pings_size": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597761" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597761#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-29 10:27:10", + "last": "2025-02-04 14:05:11" + }, + "description": "The size of pings that exceeded the maximum ping size allowed for upload.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "218ff33ed6326762a17281f768bceecf249e33c6", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 27, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L556", + "type": "memory_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_in_flight_pings_dropped": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1816401" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1816401" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-02-17 15:13:38", + "last": "2025-02-04 14:05:11" + }, + "description": "How many pings were dropped because we found them already in-flight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cac6602e1d737e7cc1333a3063a3d81efa706b65", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "chutten@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L661", + "type": "counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_missing_send_ids": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1816400" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1816400" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-02-17 21:56:57", + "last": "2025-02-04 14:05:11" + }, + "description": "How many ping upload responses did we not record as a success or failure\n(in `glean.upload.send_success` or `glean.upload.send_failue`,\nrespectively) due to an inconsistency in our internal bookkeeping?\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f97fc351d54836108c9e3364934e6faa9004550b", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "chutten@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L676", + "type": "counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_pending_pings": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1665041" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1665041#c23" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-02-04 21:22:44", + "last": "2025-02-04 14:05:11" + }, + "description": "The total number of pending pings at startup.\nThis does not include deletion-request pings.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "124cfae3dde98bb346472edff6eec6f0d78d625f", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 14, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L611", + "type": "counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_pending_pings_directory_size": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1601550" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1601550#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-02-04 21:22:44", + "last": "2025-02-04 14:05:11" + }, + "description": "The size of the pending pings directory upon initialization of Glean.\nThis does not include the size of the deletion request pings directory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "124cfae3dde98bb346472edff6eec6f0d78d625f", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 14, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L573", + "type": "memory_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_ping_upload_failure": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1589124" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1589124#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-27 22:38:27", + "last": "2025-02-04 14:05:11" + }, + "description": "Counts the number of ping upload failures, by type of failure.\nThis includes failures for all ping types,\nthough the counts appear in the next successfully sent `metrics` ping.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "657909f47c1a00b662a47cf875cffc37f9ece775", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "labels": [ + "status_code_4xx", + "status_code_5xx", + "status_code_unknown", + "unrecoverable", + "recoverable" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 28, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L532", + "type": "labeled_counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_send_failure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814592" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814592#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-02-09 10:12:49", + "last": "2025-02-04 14:05:11" + }, + "description": "Time needed for a failed send of a ping to the servers and getting a reply back.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "18d912c277b2a445c3816e766a1b01ec4b3b86b7", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L645", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_upload_send_success": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814592" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814592#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-02-09 10:12:49", + "last": "2025-02-04 14:05:11" + }, + "description": "Time needed for a successful send of a ping to the servers and getting a reply back\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "18d912c277b2a445c3816e766a1b01ec4b3b86b7", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L629", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_validation_first_run_hour": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1680783" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1680783#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-01-05 23:18:53", + "last": "2022-12-01 13:45:40" + }, + "description": "The hour of the first run of the application.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9b14fc8072e9cd8a75a322b0fa79faf777b09d54", + "last": "9f6529b1c08bbd2d8de8eda1031cd03e60993a90" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [ + "UNIT_IN_NAME" + ], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "baseline", + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/9f6529b1c08bbd2d8de8eda1031cd03e60993a90/glean-core/metrics.yaml#L605", + "time_unit": "hour", + "type": "datetime", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_validation_foreground_count": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1683707", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685712" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1683707#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-01-29 17:42:56", + "last": "2025-02-04 14:05:11" + }, + "description": "On mobile, the number of times the application went to foreground.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff866318b4c87e4a899241d71797521b32f2cd0e", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 15, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L741", + "type": "counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_validation_pings_submitted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1586764" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1586764#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-13 10:50:02", + "last": "2025-02-04 14:05:11" + }, + "description": "A count of the built-in pings submitted, by ping type.\n\nThis metric appears in both the metrics and baseline pings.\n\n- On the metrics ping, the counts include the number of pings sent since\n the last metrics ping (including the last metrics ping)\n- On the baseline ping, the counts include the number of pings send since\n the last baseline ping (including the last baseline ping)\n\nNote: Previously this also recorded the number of submitted custom pings.\nNow it only records counts for the Glean built-in pings.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7f71457425e524af1b0d342b7f2b2859b6ac9344", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "labels": null, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "baseline", + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L756", + "type": "labeled_counter", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_validation_shutdown_dispatcher_wait": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828066" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828066#c7" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-05-10 08:47:17", + "last": "2025-02-04 14:05:11" + }, + "description": "Time waited for the dispatcher to unblock during shutdown.\nMost samples are expected to be below the 10s timeout used.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ce37542b8f7944c807a1c6e408dd27279619511e", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L800", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "glean_validation_shutdown_wait": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814592" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814592#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-02-09 10:12:49", + "last": "2025-02-04 14:05:11" + }, + "description": "Time waited for the uploader at shutdown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "18d912c277b2a445c3816e766a1b01ec4b3b86b7", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L784", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "locale": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1601489" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1601489#c3" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "The locale of the application during initialization (e.g. \"es-ES\").\nIf the locale can't be determined on the system, the value is\n[\"und\"](https://unicode.org/reports/tr35/#Unknown_or_Invalid_Identifiers),\nto indicate \"undetermined\".\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L261", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-js" + ] + }, + "os": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1497894" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-08-18 07:55:11", + "last": "2025-02-04 14:05:11" + }, + "description": "The name of the operating system.\nPossible values:\nAndroid, iOS, Linux, Darwin, Windows,\nFreeBSD, NetBSD, OpenBSD, Solaris, Unknown\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7ed24eaf3a2bc6d6687739fa15e0858d3b461514", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L40", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "os_version": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1497894" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-08-18 07:55:11", + "last": "2025-02-04 14:05:11" + }, + "description": "The user-visible version of the operating system (e.g. \"1.2.3\").\nIf the version detection fails, this metric gets set to `Unknown`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7ed24eaf3a2bc6d6687739fa15e0858d3b461514", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L60", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-android", + "glean-js" + ] + }, + "ping_reason": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1557048" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1609218#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2020-09-17 14:43:17" + }, + "description": "The optional reason the ping was submitted.\nThe specific values for reason are specific to each ping, and are\ndocumented in the ping's pings.yaml file.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "db0d4ade2de927be336c9b49c5c7cc5a4fab34f1" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 29, + "last": 24 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/678459233982815917eea9a053537232724a91df/glean-core/metrics.yaml#L241", + "type": "string", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "reason": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1557048" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1609218#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-10-15 12:40:35", + "last": "2025-02-04 14:05:11" + }, + "description": "The optional reason the ping was submitted.\nThe specific values for reason are specific to each ping, and are\ndocumented in the ping's pings.yaml file.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "57ff3aaa1fd0cc23ffd5dcbe518a5adb1f3fe02b", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 23, + "last": 0 + }, + "send_in_pings": [ + "glean_internal_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L380", + "type": "string", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "seq": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1556964" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-06-17 14:44:47", + "last": "2025-02-04 14:05:11" + }, + "description": "A running counter of the number of times pings of this type have been\nsent.\nThis metric definition is only used for documentation purposes:\ninternally, Glean instantiates the metric manually and calls it\n`sequence`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d5b5c2c93acd325b20f9759b0982eb013dd215d", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 9, + "last": 0 + }, + "send_in_pings": [ + "glean_internal_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L300", + "type": "counter", + "version": 0, + "repos": [ + "glean-core", + "glean-js" + ] + }, + "start_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1556966", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1827852" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-19 16:50:47", + "last": "2025-02-04 14:05:11" + }, + "description": "The time of the start of collection of the data in the ping,\nin local time and with minute precision, including timezone information.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "514cbbe7cd990bc8c13c56aa3c0ccade05f8a09a", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "glean_internal_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L338", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "glean-core", + "glean-js" + ] + }, + "telemetry_sdk_build": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1556966" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-07-06 15:11:16", + "last": "2025-02-04 14:05:11" + }, + "description": "The version of the Glean SDK\nat the time the ping was collected (e.g. 25.0.0).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "52a97229b3be5e32fecbcdab66397384ca433cc1", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "glean_internal_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L282", + "type": "string", + "version": 0, + "repos": [ + "glean-core", + "glean-js" + ] + }, + "windows_build_number": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1802094" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1802094" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-01-26 12:04:09", + "last": "2025-02-04 14:05:11" + }, + "description": "The optional Windows build number, reported by Windows\n(e.g. 22000) and not set for other platforms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1eb269ec003fd8c09b59c946421ce72719abc9e0", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/metrics.yaml#L78", + "type": "quantity", + "unit": "build_number", + "version": 0, + "repos": [ + "glean-core" + ] + }, + "android_sdk_version": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1525606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1525606#c14" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-07-21 23:14:26", + "last": "2025-02-04 14:05:11" + }, + "description": "The optional Android specific SDK version of the software running on this\nhardware device.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "678459233982815917eea9a053537232724a91df", + "last": "8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean/blob/8dab0d9cd6b987138a90ac3e35b1ddfaa8173c61/glean-core/android/metrics.yaml#L17", + "type": "string", + "version": 0, + "repos": [ + "glean-android" + ] + }, + "glean_core_migration_successful": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1582099" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1582099#c4" + ], + "dates": { + "first": "2019-10-04 17:30:42", + "last": "2019-12-31 22:03:31" + }, + "description": "Reports `true` if the client was successfully migrated from the Android-specific implementation of the Glean SDK to the cross-platform one.", + "disabled": false, + "expires": "2020-03-31", + "gecko_datapoint": "", + "git-commits": { + "first": "b42e09bd7aeccb1d8d19f21a3872be44e33c5739", + "last": "58c62d9c1ee52f45828e5bb1f03372a546ebb575" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "aplacitelli@mozilla.com" + ], + "reflog-index": { + "first": 17, + "last": 5 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/b42e09bd7aeccb1d8d19f21a3872be44e33c5739/glean-core/android/metrics.yaml#L246", + "type": "boolean", + "version": 0, + "repos": [ + "glean-android" + ] + }, + "glean_validation_app_forceclosed_count": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1600340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1600340#c3" + ], + "dates": { + "first": "2019-12-02 14:59:00", + "last": "2019-12-13 16:08:53" + }, + "description": "This metric counts how many times a dirty bit was detected when starting the Glean SDK, on Android. This dirty bit is set to `true` when Android's lifecycle `ON_START` is hit and flipped back to false on `ON_STOP`. When an application is force-closed, it might not get the `ON_STOP` and so the value would stay `true`. The next time Glean starts, it will increment this counter.", + "disabled": false, + "expires": "2019-12-31", + "gecko_datapoint": "", + "git-commits": { + "first": "ef8f22ba56c0fb3ac336d4d6b17e376b4d5706dd", + "last": "d79ff3ddca65e1d37c77641e92e8a275e252dd7a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "aplacitelli@mozilla.com" + ], + "reflog-index": { + "first": 9, + "last": 6 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/ef8f22ba56c0fb3ac336d4d6b17e376b4d5706dd/glean-core/android/metrics.yaml#L90", + "type": "counter", + "version": 0, + "repos": [ + "glean-android" + ] + }, + "glean_validation_baseline_ping_count": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597980" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597980#c3" + ], + "dates": { + "first": "2019-11-20 16:02:22", + "last": "2019-12-02 14:59:00" + }, + "description": "The number of baseline pings sent during the lifetime of this metrics ping.", + "disabled": false, + "expires": "2019-12-20", + "gecko_datapoint": "", + "git-commits": { + "first": "a85946032f381baae86bc9af8f8bc57a2d4e9f33", + "last": "ef8f22ba56c0fb3ac336d4d6b17e376b4d5706dd" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "mdroettboom@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 9 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/glean/blob/a85946032f381baae86bc9af8f8bc57a2d4e9f33/glean-core/android/metrics.yaml#L60", + "type": "counter", + "version": 0, + "repos": [ + "glean-android" + ] + }, + "glean_validation_metrics_ping_count": { + "_config": { + "allow_reserved": true, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597980" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597980#c3" + ], + "dates": { + "first": "2019-11-20 16:02:22", + "last": "2019-12-02 14:59:00" + }, + "description": "The number of metrics pings sent during the lifetime of this baseline ping.", + "disabled": false, + "expires": "2019-12-20", + "gecko_datapoint": "", + "git-commits": { + "first": "a85946032f381baae86bc9af8f8bc57a2d4e9f33", + "last": "ef8f22ba56c0fb3ac336d4d6b17e376b4d5706dd" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com", + "mdroettboom@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 9 + }, + "send_in_pings": [ + "baseline" + ], + "source_url": "https://github.com/mozilla/glean/blob/a85946032f381baae86bc9af8f8bc57a2d4e9f33/glean-core/android/metrics.yaml#L74", + "type": "counter", + "version": 0, + "repos": [ + "glean-android" + ] + }, + "crash_app_build": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The build id of the application. This may differ from `client_info` because a main process crash may be reported later by a different (e.g. updated) client.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L176", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_app_channel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The release channel of the application. This may differ from `client_info` because a main process crash may be reported later by a different (e.g. updated) client.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L138", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_app_display_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The version of the application. This may differ from `client_info` because a main process crash may be reported later by a different (e.g. updated) client.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L157", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_async_shutdown_timeout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Present when a shutdown blocker failed to respond within a reasonable amount of time.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L291", + "type": "object", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_background_task_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The name of the background task if launched as one.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L320", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_breadcrumbs": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1904847" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1904847" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Crash breadcrumb information.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L562", + "type": "object", + "version": 0, + "repos": [ + "lib-crash" + ] + }, + "crash_cause": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1839697" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1839697#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-07-26 19:22:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The cause of the crash. May be one of `os_fault` or `java_exception`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f53afc0a2e421b2eb914ce884f47f1eabcae3183", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L121", + "type": "string", + "version": 0, + "repos": [ + "lib-crash" + ] + }, + "crash_event_loop_nesting_level": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Indicates the nesting level of the event loop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L337", + "type": "quantity", + "unit": "levels", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_font_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The font family name that is being loaded when the crash occurred.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L355", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_gpu_process_launch": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times that the GPU process was launched.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L372", + "type": "quantity", + "unit": "events", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_ipc_channel_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The error reason for an ipc-based content crash.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L390", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_is_garbage_collecting": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Indicates that the crash occurred while the garbage collector was running.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L407", + "type": "boolean", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_java_exception": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1904847" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1904847" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Error and stack trace information for a java exception.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L516", + "type": "object", + "version": 0, + "repos": [ + "lib-crash" + ] + }, + "crash_main_thread_runnable_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Name of the currently executing `nsIRunnable` on the main thread. Nightly-only.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L425", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_minidump_sha256_hash": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The SHA256 hash of the associated minidump file, if any.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L195", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_moz_crash_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Contains the string passed to `MOZ_CRASH()`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L443", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_process_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569#c12" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-03-07 06:00:47", + "last": "2025-02-04 14:27:22" + }, + "description": "The type of process that experienced a crash. See the full list of options [here](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/crash-ping.html#process-types).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a7b474b982ee543fa2ed6034b307f982c07688c6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L48", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_profiler_child_shutdown_phase": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The shutdown phase of the profiler.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L460", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_quota_manager_shutdown_timeout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Contains a list of shutdown steps and status of the quota manager clients.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L477", + "type": "object", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_remote_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2024-09-05 12:35:22" + }, + "description": "The type of the content process. See the full list of options [here](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/crash-ping.html#remote-process-types).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "ed2b06f15a5081b2b5e4ab101184c1272d249235" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ed2b06f15a5081b2b5e4ab101184c1272d249235/mobile/android/android-components/components/lib/crash/metrics.yaml#L420", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_shutdown_progress": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The shutdown phase in which the crash occurred.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L499", + "type": "string", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_stack_traces": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 00:05:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Stack trace and module information of the crashing process.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f39e7eba0d82f06e60a238c5eac50cd288c627dd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L212", + "type": "object", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_startup": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569#c12" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-03-07 06:00:47", + "last": "2025-02-04 14:27:22" + }, + "description": "If true, the crash occurred during process startup.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a7b474b982ee543fa2ed6034b307f982c07688c6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L104", + "type": "boolean", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569#c12" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-03-07 06:00:47", + "last": "2025-02-04 14:27:22" + }, + "description": "The time at which the crash occurred.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a7b474b982ee543fa2ed6034b307f982c07688c6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L86", + "time_unit": "minute", + "type": "datetime", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_uptime": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790569#c12" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-03-07 06:00:47", + "last": "2024-08-27 00:18:04" + }, + "description": "The application uptime. This is equivalent to the legacy crash ping's `UptimeTS` field.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a7b474b982ee543fa2ed6034b307f982c07688c6", + "last": "9fc98ec9dcdb31f6325fffff7cc8e987d4af663b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 1 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/9fc98ec9dcdb31f6325fffff7cc8e987d4af663b/mobile/android/android-components/components/lib/crash/metrics.yaml#L48", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "crash_metrics_crash_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://bugzilla.mozilla.org/1553935", + "https://github.com/mozilla-mobile/android-components/issues/5175", + "https://github.com/mozilla-mobile/android-components/issues/11876" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1553935#c3", + "https://github.com/mozilla-mobile/android-components/pull/5700#pullrequestreview-347721248", + "https://github.com/mozilla-mobile/android-components/pull/11908#issuecomment-1075243414" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-12-15 23:40:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of crashes that occur in the application. This measures only the counts of each crash in association with the labeled type of the crash. The labels correspond to the types of crashes handled by lib-crash.\nDeprecated: `native_code_crash`, `fatal_native_code_crash` and `nonfatal_native_code_crash` replaced by `main_proc_native_code_crash`, `fg_proc_native_code_crash` and `bg_proc_native_code_crash`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "294f53424deaea92c1414edf36542f93d2dfa1c9", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "uncaught_exception", + "caught_exception", + "main_proc_native_code_crash", + "fg_proc_native_code_crash", + "bg_proc_native_code_crash", + "fatal_native_code_crash", + "nonfatal_native_code_crash" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com", + "jnicol@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L13", + "type": "labeled_counter", + "version": 0, + "repos": [ + "lib-crash" + ] + }, + "environment_experimental_features": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Specifies the enabled experimental features from about:preferences#experimental.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L825", + "type": "string_list", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "environment_headless_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the app was invoked in headless mode via `--headless` or `--backgroundtask`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L843", + "type": "boolean", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "environment_uptime": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The start time of the application.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L861", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_available_commit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Available commit space.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L605", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_available_physical": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Available physical memory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L623", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_available_swap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Available swap memory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L641", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_available_virtual": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Available virtual memory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L659", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_low_physical": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times the available memory tracker has detected that free physical memory is running low.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L677", + "type": "quantity", + "unit": "events", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_oom_allocation_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The size of the allocation that caused on OOM crash.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L696", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_purgeable_physical": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of memory that can be deallocated by the OS in case of memory pressure.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L714", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_system_use_percentage": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The percentage of memory in use.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L733", + "type": "quantity", + "unit": "percent", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_texture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of memory used in textures.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L751", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_total_page_file": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The total page file size.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L769", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_total_physical": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The total physical memory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L787", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "memory_total_virtual": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830098" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-27 14:58:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The total virtual memory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c057da69f4f6de4ffb157179ccee947ddf01dc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "crash-reporting-wg@mozilla.org", + "stability@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "crash" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/lib/crash/metrics.yaml#L805", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "lib-crash", + "firefox-desktop", + "firefox-crashreporter", + "firefox-desktop-background-update", + "firefox-desktop-background-tasks" + ] + }, + "addresses_sync_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records why the addresses sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L751", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_finished_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the addresses sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L669", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_incoming": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records incoming addresses record counts. `applied` is the number of incoming records that were successfully stored or updated in the local database. `failed_to_apply` is the number of records that were ignored due to errors. `reconciled` is the number of merged records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L687", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_outgoing": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records outgoing addresses record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L710", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_outgoing_batches": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L732", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_started_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the addresses sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L652", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_uid": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L636", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_v2_failure_reason": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records why the addresses sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L788", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_v2_finished_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the addresses sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L702", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_v2_incoming": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records incoming addresses record counts. `applied` is the number of incoming records that were successfully stored or updated in the local database. `failed_to_apply` is the number of records that were ignored due to errors. `reconciled` is the number of merged records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L721", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_v2_outgoing": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records outgoing addresses record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L745", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_v2_outgoing_batches": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L768", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_v2_started_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the addresses sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L684", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "addresses_sync_v2_uid": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "addresses-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L667", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records bookmark sync failure reasons.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L449", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "bookmarks_sync_finished_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the bookmark sync finished.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L377", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_incoming": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records incoming bookmark record counts.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L394", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "bookmarks_sync_outgoing": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records outgoing bookmark record counts.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L414", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "bookmarks_sync_outgoing_batches": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records the number of batches needed to upload all outgoing records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L433", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_remote_tree_problems": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records counts for structure problems and divergences in the remote bookmarks tree. These are documented in https://github.com/mozilla/dogear/blob/fbade15f2a4f11215e30b8f428a0a8df3defeaec/src/tree.rs#L1273-L1294.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "orphans", + "misparented_roots", + "multiple_parents_by_children", + "missing_parent_guids", + "non_folder_parent_guids", + "parent_child_disagreements", + "missing_children" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L469", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_started_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the bookmark sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L360", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_uid": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L344", + "type": "string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "bookmarks_sync_v2_failure_reason": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records bookmark sync failure reasons.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L471", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_v2_finished_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the bookmark sync finished.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L395", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_v2_incoming": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records incoming bookmark record counts.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L413", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_v2_outgoing": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records outgoing bookmark record counts.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L434", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_v2_outgoing_batches": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records the number of batches needed to upload all outgoing records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L454", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_v2_remote_tree_problems": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records counts for structure problems and divergences in the remote bookmarks tree. These are documented in https://github.com/mozilla/dogear/blob/fbade15f2a4f11215e30b8f428a0a8df3defeaec/src/tree.rs#L1273-L1294.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "orphans", + "misparented_roots", + "multiple_parents_by_children", + "missing_parent_guids", + "non_folder_parent_guids", + "parent_child_disagreements", + "missing_children" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L492", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_v2_started_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the bookmark sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L377", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "bookmarks_sync_v2_uid": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L360", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records why the credit cards sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L612", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_finished_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the credit cards sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L530", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_incoming": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records incoming credit cards record counts. `applied` is the number of incoming records that were successfully stored or updated in the local database. `failed_to_apply` is the number of records that were ignored due to errors. `reconciled` is the number of merged records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L548", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_outgoing": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records outgoing credit cards record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L571", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_outgoing_batches": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L593", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_started_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the credit cards sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L513", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_uid": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L497", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_v2_failure_reason": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records why the credit cards sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L642", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_v2_finished_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the credit cards sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L556", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_v2_incoming": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records incoming credit cards record counts. `applied` is the number of incoming records that were successfully stored or updated in the local database. `failed_to_apply` is the number of records that were ignored due to errors. `reconciled` is the number of merged records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L575", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_v2_outgoing": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records outgoing credit cards record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L599", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_v2_outgoing_batches": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L622", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_v2_started_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the credit cards sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L538", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "creditcards_sync_v2_uid": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "creditcards-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L521", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "fxa_tab_received": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "_generate_enums": [ + [ + "allowed_extra_keys_with_types", + "Extra" + ] + ], + "bugs": [ + "https://github.com/mozilla/application-services/pull/3308", + "https://github.com/mozilla-mobile/android-components/pull/7618" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1652902" + ], + "dates": { + "first": "2021-06-08 09:31:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Recorded when a tab is received. Also sent by desktop - see also the docs at https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/sync-ping.html\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A guid, unique for the URL being sent but common for all target devices.\n", + "type": "string" + }, + "reason": { + "description": "The reason we discovered the tab. Will be one of 'push', 'push-missed' or 'poll'.\n", + "type": "string" + }, + "stream_id": { + "description": "A guid, unique for both the URL being sent and the target device.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "56d7ae26b91eda7662f285f20529f5968f865dbc", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L942", + "type": "event", + "version": 0, + "repos": [ + "sync" + ] + }, + "fxa_tab_sent": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "_generate_enums": [ + [ + "allowed_extra_keys_with_types", + "Extra" + ] + ], + "bugs": [ + "https://github.com/mozilla/application-services/pull/3308", + "https://github.com/mozilla-mobile/android-components/pull/7618" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1652902" + ], + "dates": { + "first": "2021-06-08 09:31:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Recorded when a tab is sent. Also sent by desktop - see also the docs at https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/sync-ping.html\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A guid, unique for the URL being sent but common for all target devices. The value is randomly generated so can not identify details about the user or tab.\n", + "type": "string" + }, + "stream_id": { + "description": "A guid, unique for both the URL being sent and the target device. The value is randomly generated so can not identify details about the user or tab.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "56d7ae26b91eda7662f285f20529f5968f865dbc", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L914", + "type": "event", + "version": 0, + "repos": [ + "sync" + ] + }, + "fxa_tab_v2_received": { + "bugs": [ + "https://github.com/mozilla/application-services/pull/3308", + "https://github.com/mozilla-mobile/android-components/pull/7618" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1652902" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when a tab is received. Also sent by desktop - see also the docs at https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/sync-ping.html\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A guid, unique for the URL being sent but common for all target devices.\n", + "type": "string" + }, + "reason": { + "description": "The reason we discovered the tab. Will be one of 'push', 'push-missed' or 'poll'.\n", + "type": "string" + }, + "stream_id": { + "description": "A guid, unique for both the URL being sent and the target device.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L988", + "type": "event", + "version": 0, + "repos": [ + "sync" + ] + }, + "fxa_tab_v2_sent": { + "bugs": [ + "https://github.com/mozilla/application-services/pull/3308", + "https://github.com/mozilla-mobile/android-components/pull/7618" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1652902" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when a tab is sent. Also sent by desktop - see also the docs at https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/sync-ping.html\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A guid, unique for the URL being sent but common for all target devices. The value is randomly generated so can not identify details about the user or tab.\n", + "type": "string" + }, + "stream_id": { + "description": "A guid, unique for both the URL being sent and the target device. The value is randomly generated so can not identify details about the user or tab.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L959", + "type": "event", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records why the history sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L180", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "history_sync_finished_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the history sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L97", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_incoming": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records incoming history record counts. `applied` is the number of incoming history pages that were successfully stored or updated in the local database. `failed_to_apply` is the number of pages that were ignored due to errors. `reconciled` is the number of pages with new visits locally and remotely, and had their visits merged.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L115", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "history_sync_outgoing": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records outgoing history record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L139", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "history_sync_outgoing_batches": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L161", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_started_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the history sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L80", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_uid": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L64", + "type": "string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "history_sync_v2_failure_reason": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records why the history sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L188", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_v2_finished_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the history sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L101", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_v2_incoming": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records incoming history record counts. `applied` is the number of incoming history pages that were successfully stored or updated in the local database. `failed_to_apply` is the number of pages that were ignored due to errors. `reconciled` is the number of pages with new visits locally and remotely, and had their visits merged.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L120", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_v2_outgoing": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records outgoing history record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L145", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_v2_outgoing_batches": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L168", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_v2_started_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the history sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L83", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "history_sync_v2_uid": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "history-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L66", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records why the passwords sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like usernames and passwords.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L320", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "logins_sync_finished_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the passwords sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L237", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_incoming": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records incoming passwords record counts. `applied` is the number of incoming passwords entries that were successfully stored or updated in the local database. `failed_to_apply` is the number of entries that were ignored due to errors. `reconciled` is the number of entries with changes both locally and remotely that were merged.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L255", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "logins_sync_outgoing": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records outgoing passwords record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L279", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "logins_sync_outgoing_batches": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L301", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_started_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the passwords sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L220", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_uid": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L204", + "type": "string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "logins_sync_v2_failure_reason": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records why the passwords sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like usernames and passwords.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L335", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_v2_finished_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the passwords sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L248", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_v2_incoming": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records incoming passwords record counts. `applied` is the number of incoming passwords entries that were successfully stored or updated in the local database. `failed_to_apply` is the number of entries that were ignored due to errors. `reconciled` is the number of entries with changes both locally and remotely that were merged.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L267", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_v2_outgoing": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records outgoing passwords record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L292", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_v2_outgoing_batches": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L315", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_v2_started_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the passwords sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L230", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "logins_sync_v2_uid": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/4556" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5294" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "logins-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L213", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "sync_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Records a global sync failure: either due to an authentication error, unexpected exception, or other error that caused the sync to fail. Error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L33", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "sync_sync_uuid": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5386#pullrequestreview-392363687" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-08-10 12:51:50", + "last": "2023-06-14 02:57:59" + }, + "description": "Unique identifier for this sync, used to correlate together individual pings for data types that were synchronized together (history, bookmarks, logins). If a data type is synchronized by itself via the legacy 'sync' API (as opposed to the Sync Manager), then this field will not be set on the corresponding ping.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "92ca723bba524c20b4227f7d87ab515a9ee01049", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync", + "history-sync", + "logins-sync", + "sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L9", + "type": "uuid", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "sync_v2_failure_reason": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/3092" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records a global sync failure: either due to an authentication error, unexpected exception, or other error that caused the sync to fail. Error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L34", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "sync_v2_sync_uuid": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5386#pullrequestreview-392363687" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Unique identifier for this sync, used to correlate together individual pings for data types that were synchronized together (history, bookmarks, logins). If a data type is synchronized by itself via the legacy 'sync' API (as opposed to the Sync Manager), then this field will not be set on the corresponding ping.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bookmarks-sync", + "history-sync", + "logins-sync", + "sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L9", + "type": "uuid", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records why the tabs sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L890", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "tabs_sync_finished_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the tabs sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L808", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_incoming": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records incoming tabs record counts. `applied` is the number of incoming records that were successfully stored or updated in the local database. `failed_to_apply` is the number of records that were ignored due to errors. `reconciled` is the number of merged records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L826", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "tabs_sync_outgoing": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records outgoing tabs record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L849", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "tabs_sync_outgoing_batches": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L871", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_started_at": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "Records when the tabs sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L791", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_uid": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-05-28 17:48:46", + "last": "2023-06-14 02:57:59" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9ef23786813a54b789fcebd4c6e93dbaa81a9c8", + "last": "ce046588f005ae84d78cfb6e5b2c7c06618dfcc2" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-core@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla-mobile/firefox-android/blob/ce046588f005ae84d78cfb6e5b2c7c06618dfcc2/android-components/components/support/sync-telemetry/metrics.yaml#L775", + "type": "string", + "version": 0, + "repos": [ + "sync", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "tabs_sync_v2_failure_reason": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records why the tabs sync failed: either due to an authentication error, unexpected exception, or other error. The error strings are truncated and sanitized to omit PII, like URLs and file system paths.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "other", + "unexpected", + "auth" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L934", + "type": "labeled_string", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_v2_finished_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the tabs sync finished. This includes the time to download, apply, and upload all records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L848", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_v2_incoming": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records incoming tabs record counts. `applied` is the number of incoming records that were successfully stored or updated in the local database. `failed_to_apply` is the number of records that were ignored due to errors. `reconciled` is the number of merged records.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "applied", + "failed_to_apply", + "reconciled" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L867", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_v2_outgoing": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records outgoing tabs record counts. `uploaded` is the number of records that were successfully sent to the server. `failed_to_upload` is the number of records that weren't uploaded, and will be retried on the next sync.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "uploaded", + "failed_to_upload" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L891", + "type": "labeled_counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_v2_outgoing_batches": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records the number of batches needed to upload all outgoing records. The Sync server has a hard limit on the number of records (and request body bytes) on the number of records that can fit into a single batch, and large syncs may require multiple batches.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L914", + "type": "counter", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_v2_started_at": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "Records when the tabs sync started.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L830", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "sync" + ] + }, + "tabs_sync_v2_uid": { + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/10371" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/10372#issuecomment-850378481" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-06-14 09:58:29", + "last": "2025-02-03 14:31:17" + }, + "description": "The user's hashed Firefox Account ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8debf5cd7dab3c08a50698448b43c41af32340ca", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com", + "skhamis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "tabs-sync" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/sync_manager/metrics.yaml#L813", + "type": "string", + "version": 0, + "repos": [ + "sync" + ] + }, + "avif_a1lx": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AV1LayeredImageIndexingProperty (a1lx).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_A1LX", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "present", + "absent" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1169", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_a1op": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF OperatingPointSelectorProperty (a1op).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_A1OP", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "present", + "absent" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1185", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_alpha": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF alpha plane.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_ALPHA", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "absent", + "present" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L948", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_aom_decode_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1690406" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1690406#c3" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "Image-decode Error from AOM decoder\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_AOM_DECODE_ERROR", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "error", + "mem_error", + "abi_mismatch", + "incapable", + "unsup_bitstream", + "unsup_feature", + "corrupt_frame", + "invalid_param" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L885", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_bit_depth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "Bits per pixel of AVIF image.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_BIT_DEPTH", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "color_8", + "color_10", + "color_12", + "color_16", + "unknown" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L929", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_cicp_cp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF CICP colour primaries.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_CICP_CP", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "reserved", + "bt709", + "unspecified", + "reserved_3", + "bt470m", + "bt470bg", + "bt601", + "smpte240", + "generic_film", + "bt2020", + "xyz", + "smpte431", + "smpte432", + "reserved_13", + "reserved_14", + "reserved_15", + "reserved_16", + "reserved_17", + "reserved_18", + "reserved_19", + "reserved_20", + "reserved_21", + "ebu3213", + "reserved_rest" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L984", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_cicp_mc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF CICP transfer characteristics.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_CICP_MC", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "identity", + "bt709", + "unspecified", + "reserved", + "fcc", + "bt470bg", + "bt601", + "smpte240", + "ycgco", + "bt2020_ncl", + "bt2020_cl", + "smpte2085", + "chromat_ncl", + "chromat_cl", + "ictcp", + "reserved_rest" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1056", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_cicp_tc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF CICP transfer characteristics.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_CICP_TC", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "reserved", + "bt709", + "unspecified", + "reserved_3", + "bt470m", + "bt470bg", + "bt601", + "smpte240", + "linear", + "log_100", + "log_100_sqrt10", + "iec61966", + "bt_1361", + "srgb", + "bt2020_10bit", + "bt2020_12bit", + "smpte2084", + "smpte428", + "hlg", + "reserved_rest" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1022", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_clap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF CleanApertureBox (clap).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_CLAP", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "present", + "absent" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1201", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_colr": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1729071" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1729071#c15" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF colour information type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_COLR", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "nclx", + "icc", + "absent", + "both" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L964", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_dav1d_decode_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9" + ], + "dates": { + "first": "2020-11-03 01:57:10", + "last": "2021-01-18 23:42:52" + }, + "description": "Image-decode Error from dav1d decoder\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "avif.dav1d_decode_error", + "git-commits": { + "first": "eeae815abc01272695a75432040951944175a6e6", + "last": "b5871646fca32526d7357afeb7b6eaeb2a23c624" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "cchang@mozilla.com", + "jbauman@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 22 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b5871646fca32526d7357afeb7b6eaeb2a23c624/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L841", + "type": "quantity", + "unit": "error code", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "avif_decode_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9" + ], + "dates": { + "first": "2023-04-03 04:32:34", + "last": "2024-02-12 21:08:09" + }, + "description": "Decode result of AVIF image.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_DECODE_RESULT", + "git-commits": { + "first": "31278a4957b88703d822a90bfa12496bdc259917", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "success", + "parse_error", + "no_primary_item", + "decode_error", + "size_overflow", + "out_of_memory", + "pipe_init_error", + "write_buffer_error", + "alpha_y_sz_mismatch", + "alpha_y_bpc_mismatch", + "ispe_mismatch", + "render_size_mismatch", + "frame_size_changed", + "invalid_cicp", + "invalid_parse_status", + "missing_brand", + "ftyp_not_first", + "no_image", + "multiple_moov", + "no_moov", + "lsel_no_essential", + "a1op_no_essential", + "a1lx_essential", + "txform_no_essential", + "image_item_type", + "item_type_missing", + "construction_method", + "item_loc_not_found", + "no_item_data_box" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L826", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_decoder": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "Decoder of AVIF image.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_DECODER", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "dav1d", + "aom" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L869", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_grid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF AVIF grid-based image.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_GRID", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "present", + "absent" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1217", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_ipro": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF ItemProtectionBox (ipro).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_IPRO", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "present", + "absent" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1233", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_ispe": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF spatial extents (image size).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_ISPE", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "valid", + "absent", + "bitstream_mismatch" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1086", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_lsel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF LayerSelectorProperty (lsel).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_LSEL", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "present", + "absent" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1249", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_major_brand": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF major brand.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "avif", + "avis", + "other" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1138", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "avif_pasp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF pixel aspect ratio.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_PASP", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "absent", + "square", + "nonsquare", + "invalid" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1120", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_pixi": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696045#c5" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF pixel information (bits per channel).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_PIXI", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "valid", + "absent", + "bitstream_mismatch" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1103", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "avif_sequence": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1745608#c2" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "AVIF image sequence.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "present", + "absent" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1154", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "avif_yuv_color_space": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1670827#c9" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "YUV color space of AVIF image.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "AVIF_YUV_COLOR_SPACE", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "bt601", + "bt709", + "bt2020", + "identity", + "unknown" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L910", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "fog_validation_gvsv_audio_stream_init_gvst": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862765" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-11 17:01:42", + "last": "2024-01-11 08:13:11" + }, + "description": "Incremented when an audio stream is initialized, recorded alongside the\nGlean API for the purposes of Validation (hence GVSV).\nUses a single label due to only labeled counters being supported\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GVSV_AUDIO_STREAM_INITS", + "git-commits": { + "first": "c76748e8f2656c2f27d748d9f0902de000279c90", + "last": "2eb20cb555ff0f020cd87d9e29bfca2e06424fa3" + }, + "labels": [ + "inits" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/2eb20cb555ff0f020cd87d9e29bfca2e06424fa3/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L2043", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "geckoview_build_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "The Buildid of the Gecko engine, example: 20200205124310\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gecko.build_id", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L34", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "geckoview_content_process_lifetime": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1625325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1625325#c2" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The uptime of content processes in ms\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GV_CONTENT_PROCESS_LIFETIME_MS", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L52", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "geckoview_document_site_origins": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1589700" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1589700#c5" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "When a document is loaded, report the number of [site origins](https://searchfox.org/ mozilla-central/rev/ 3300072e993ae05d50d5c63d815260367eaf9179/ caps/nsIPrincipal.idl#264) of the entire browser if it has been at least 5 minutes since last time we collect this data.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "FX_NUMBER_OF_UNIQUE_SITE_ORIGINS_ALL_TABS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sefeng@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L134", + "type": "custom_distribution", + "unit": "number of site_origin", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "geckoview_page_load_progress_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499418", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time between page load progress starts (0) and completion (100).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GV_PAGE_LOAD_PROGRESS_MS", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L66", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "geckoview_page_load_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499418", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time taken to load a page. This includes all static contents, no dynamic content. Loading of about: pages is not counted. Back back navigation (sometimes via BFCache) is included which is a source of bimodality due to the <50ms load times.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GV_PAGE_LOAD_MS", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L81", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "geckoview_page_reload_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1549519", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2022-11-23 21:05:27", + "last": "2024-02-12 21:08:09" + }, + "description": "Time taken to reload a page. This includes all static contents, no dynamic content. Loading of about: pages is not counted.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GV_PAGE_RELOAD_MS", + "git-commits": { + "first": "7b0b2ab18b2dcf9b310b4ed89f10f016a03be2a5", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com", + "sefeng@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L100", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "geckoview_per_document_site_origins": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1603185" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1603185#c13" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "When a document is unloaded, report the highest number of [site origins](https://searchfox.org/ mozilla-central/rev/ 3300072e993ae05d50d5c63d815260367eaf9179/ caps/nsIPrincipal.idl#264) loaded simultaneously in that document.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "FX_NUMBER_OF_UNIQUE_SITE_ORIGINS_PER_DOCUMENT", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "barret@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L159", + "type": "custom_distribution", + "unit": "number of site origins per document", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "geckoview_startup_runtime": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499418", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time taken to initialize GeckoRuntime.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GV_STARTUP_RUNTIME_MS", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L119", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "geckoview_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "The version of the Gecko engine, example: 74.0a1\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gecko.version", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L16", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_adapter_primary_description": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Long form description of the Graphics adapter\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.description", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L595", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_device_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Graphics adapter device identification\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.device_id", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L629", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_device_id_last_seen": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1601091" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2020-02-07 17:02:29", + "last": "2020-02-07 17:02:29" + }, + "description": "Graphics adapter device identification last seen This is a temporary workaround for some early telemetry system issues. See Bug 1601091 for more information\n", + "disabled": false, + "expires": "2020-04-01", + "gecko_datapoint": "gfx.adapter.device_id_last_seen", + "git-commits": { + "first": "b4ab3d4de762c7999ddd21e72eec5b57fc2cf83f", + "last": "b4ab3d4de762c7999ddd21e72eec5b57fc2cf83f" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "ktaeleman@mozilla.com" + ], + "reflog-index": { + "first": 51, + "last": 51 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b4ab3d4de762c7999ddd21e72eec5b57fc2cf83f/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L556", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_adapter_primary_driver_date": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Graphics adapter driver date\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.driver_date", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L732", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_driver_files": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "List of graphics adapter driver files\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.driver_files", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L681", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_driver_vendor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Graphics adapter driver vendor identification\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.driver_vendor", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L698", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_driver_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Graphics adapter driver version\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.driver_version", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L715", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_ram": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Graphics adapter dedicated memory\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.ram", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L663", + "type": "quantity", + "unit": "Megabytes", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_subsystem_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Graphics adapter subsystem identification\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.subsystem_id", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L646", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_adapter_primary_vendor_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Graphics adapter vendor identification\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.adapter.vendor_id", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L612", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_checkerboard_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238040", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1539309", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2020-10-30 17:42:56", + "last": "2024-02-12 21:08:09" + }, + "description": "The duration of a checkerboard event. Checkerboarding is when painting has not kept up with asynchronous panning and zooming so the compositor has to display a \"checkerboard pattern\" (or in practice, the background color) rather than the actual page content.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CHECKERBOARD_DURATION", + "git-commits": { + "first": "63acd7c6181a4b8bd8bde90cdaa52f67b69075df", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "botond@mozilla.com" + ], + "reflog-index": { + "first": 35, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L225", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_checkerboard_peak_pixel_count": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238040", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1539309", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2020-10-30 17:42:56", + "last": "2024-02-12 21:08:09" + }, + "description": "The peak number of CSS pixels that checkerboarded during a checkerboard event. The minimum value of the largest histogram bucket is the size of a 4k display with maximum APZ zooming.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CHECKERBOARD_PEAK", + "git-commits": { + "first": "63acd7c6181a4b8bd8bde90cdaa52f67b69075df", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "botond@mozilla.com" + ], + "range_max": 66355200, + "range_min": 1, + "reflog-index": { + "first": 35, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L246", + "type": "custom_distribution", + "unit": "Pixels", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_checkerboard_potential_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238040", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1539309", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2020-10-30 17:42:56", + "last": "2024-02-12 21:08:09" + }, + "description": "The total amount of time that we could reasonably be checkerboarding. This is the union of two possibly-intersecting sets of time periods: The first set is that in which checkerboarding was actually happening, since by definition it could potentially be happening. The second set is that in which the APZC is actively transforming content in the compositor, since it could potentially transform it so as to display checkerboarding to the user. Combined with other information, this allows us to meaningfully say how frequently users actually enncounters checkerboarding.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CHECKERBOARD_POTENTIAL_DURATION", + "git-commits": { + "first": "63acd7c6181a4b8bd8bde90cdaa52f67b69075df", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "botond@mozilla.com" + ], + "reflog-index": { + "first": 35, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L268", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_checkerboard_severity": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238040", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1539309", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2020-10-30 17:42:56", + "last": "2024-02-12 21:08:09" + }, + "description": "An opaque measurement of the severity of a checkerboard event. This doesn't have units, it's just useful for comparing two checkerboard events to see which one is worse, for some implementation-specific definition of \"worse\". The larger the value, the worse the checkerboarding.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CHECKERBOARD_SEVERITY", + "git-commits": { + "first": "63acd7c6181a4b8bd8bde90cdaa52f67b69075df", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "botond@mozilla.com" + ], + "range_max": 1073741824, + "range_min": 1, + "reflog-index": { + "first": 35, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L293", + "type": "custom_distribution", + "unit": "Opaque unit", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_composite_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1080160", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1529352", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580129#c7" + ], + "dates": { + "first": "2019-10-09 10:56:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time taken to composite a frame. On non-webrender this is the time taken in `CompositorBridgeParent::CompositeToTarget()`. On webrender, this is the time taken from the start of `WebRenderBridgeParent::CompositeToTarget()`, until the render thread has rendered the frame (in `RenderThread::HandleFrameOneDoc()`).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "COMPOSITE_TIME", + "git-commits": { + "first": "73cb259c5e7474efbba838eb17874deae131e9e1", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jnicol@mozilla.com" + ], + "reflog-index": { + "first": 69, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L184", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_frame_time_from_paint": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470528", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1509536", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2019-10-09 10:56:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time, in percentage of a vsync interval, spent from beginning a paint in the content process until that frame is presented in the compositor.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_FRAME_TIME", + "git-commits": { + "first": "73cb259c5e7474efbba838eb17874deae131e9e1", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jnicol@mozilla.com" + ], + "range_max": 5000, + "range_min": 1, + "reflog-index": { + "first": 69, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L359", + "type": "custom_distribution", + "unit": "Percentage of vsync interval", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_frame_time_from_vsync": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1517355", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time, in percentage of a vsync interval, spent from the vsync that started a paint in the content process until that frame is presented in the compositor.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_FRAME_TIME_VSYNC", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 792, + "range_min": 8, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L380", + "type": "custom_distribution", + "unit": "Percentage of vsync interval", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_frame_time_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1510853", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The reason that `gfx.content.frame_time.from_paint` recorded a slow (>200ms) result, if any.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_FRAME_TIME_REASON", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "on_time", + "no_vsync", + "missed_composite", + "slow_composite", + "missed_composite_mid", + "missed_composite_long", + "missed_composite_low", + "no_vsync_no_id" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L462", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_frame_time_with_svg": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1483549", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1509536", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time, in percentage of a vsync interval, spent from beginning a paint in the content process until that frame is presented in the compositor, for frames that contained an SVG to be drawn by webrender.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_FRAME_TIME_WITH_SVG", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 5000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L401", + "type": "custom_distribution", + "unit": "Percentage of vsync interval", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_frame_time_without_resource_upload": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1503405", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time, in percentage of a vsync interval, spent from beginning a paint in the content process until that frame is presented in the compositor by webrender, excluding time spent uploading resources.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_FRAME_TIME_WITHOUT_RESOURCE_UPLOAD", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 5000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L422", + "type": "custom_distribution", + "unit": "Percentage of vsync interval", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_frame_time_without_upload": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1503405", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time, in percentage of a vsync interval, spent from beginning a paint in the content process until that frame is presented in the compositor by webrender, excluding time spent uploading any content.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_FRAME_TIME_WITHOUT_UPLOAD", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 5000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L442", + "type": "custom_distribution", + "unit": "Percentage of vsync interval", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_full_paint_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1505858", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent in the full paint pipeline for content until it's ready for composition. For non-webrender this includes `paint_time`, plus rasterization if OMTP is enabled. For webrender, this includes `paint_time`, plus scene building time.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_FULL_PAINT_TIME", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaar@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L338", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_content_paint_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1309442", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent in the main-thread paint pipeline for content. For non-webrender, this includes display list building, layer building, and when OMTP is disabled, rasterization. For webrender, this includes display list building, and webrender display list building.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "CONTENT_PAINT_TIME", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L318", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_display_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Amount of displays connected to the device\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.display.count", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L540", + "type": "quantity", + "unit": "Display count", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_display_primary_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Height of the primary display, takes device rotation into account.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.display.primary_height", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L576", + "type": "quantity", + "unit": "Pixels", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_display_primary_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Width of the primary display, takes device rotation into account.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.display.primary_width", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L558", + "type": "quantity", + "unit": "Pixels", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_feature_webrender": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687312" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687312#c5" + ], + "dates": { + "first": "2021-03-31 17:49:00", + "last": "2024-02-12 21:08:09" + }, + "description": "Whether webrender is enabled or disabled, and why.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.feature.webrender", + "git-commits": { + "first": "c46937fc1d7c4dc94bb2c420d200b09fa7b4d8cd", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jnicol@mozilla.com" + ], + "reflog-index": { + "first": 15, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L811", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_scroll_present_latency": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1604818" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1604818#c4" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time between receiving a scroll event on the event loop and compositing its result onto the screen (ms).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "SCROLL_PRESENT_LATENCY", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sefeng@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L207", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_status_compositor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Name of the graphics compositor in use. Possible values are \"opengl, d3d11, client, webrender or basic\"\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.compositor", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L751", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_status_compositor_last_seen": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1601091" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2020-02-07 17:02:29", + "last": "2020-02-07 17:02:29" + }, + "description": "Name of the graphics compositor last seen in use. Possible values are \"opengl, d3d11, client, webrender or basic\" This is a temporary workaround for some early telemetry system issues. See Bug 1601091 for more information\n", + "disabled": false, + "expires": "2020-04-01", + "gecko_datapoint": "gfx.compositor_last_seen", + "git-commits": { + "first": "b4ab3d4de762c7999ddd21e72eec5b57fc2cf83f", + "last": "b4ab3d4de762c7999ddd21e72eec5b57fc2cf83f" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "ktaeleman@mozilla.com" + ], + "reflog-index": { + "first": 51, + "last": 51 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b4ab3d4de762c7999ddd21e72eec5b57fc2cf83f/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L674", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_status_framebuild_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470901", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2020-10-30 17:42:56", + "last": "2021-01-18 23:42:52" + }, + "description": "The time taken to build a webrender frame. This involves calculating the visibility of primitives, requesting resources, and building the render passes which will be used to render the frame.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "WR_FRAMEBUILD_TIME", + "git-commits": { + "first": "63acd7c6181a4b8bd8bde90cdaa52f67b69075df", + "last": "b5871646fca32526d7357afeb7b6eaeb2a23c624" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaar@mozilla.com" + ], + "reflog-index": { + "first": 35, + "last": 22 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b5871646fca32526d7357afeb7b6eaeb2a23c624/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L764", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_status_headless": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1594145#c4" + ], + "dates": { + "first": "2021-02-11 14:06:01", + "last": "2024-02-12 21:08:09" + }, + "description": "Boolean indicated whether graphics is running in headless (no display) mode\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.headless", + "git-commits": { + "first": "159ccb6db74bdac94a269466e96d08159805c15b", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 18, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L791", + "type": "boolean", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_status_last_compositor_gecko_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1704842" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1704842#c8" + ], + "dates": { + "first": "2021-04-26 16:26:38", + "last": "2024-02-12 21:08:09" + }, + "description": "The gecko version at the last time a compositor was initialized, and therefore when gfx_status_compositor was last updated. Due to gfx_status_compositor's user lifetime we see lots of unexpected values for the current gecko version. We believe this is because the user has not opened a tab since they were updated to a version where webrender should be enabled on their device. This can be used to verify that theory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "gfx.last_compositor_gecko_version", + "git-commits": { + "first": "e0f76877731ef2bb3d5da7d3b9c4c43d8a175337", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "jnicol@mozilla.com", + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 14, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L769", + "type": "string", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "gfx_status_sceneswap_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470901", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2020-10-30 17:42:56", + "last": "2021-01-18 23:42:52" + }, + "description": "The time taken to do a webrender scene swap. This is book-keeping that APZ must perform once webrender has built a new scene.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "WR_SCENESWAP_TIME", + "git-commits": { + "first": "63acd7c6181a4b8bd8bde90cdaa52f67b69075df", + "last": "b5871646fca32526d7357afeb7b6eaeb2a23c624" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaar@mozilla.com" + ], + "reflog-index": { + "first": 35, + "last": 22 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b5871646fca32526d7357afeb7b6eaeb2a23c624/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L747", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_webrender_framebuild_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470901", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time taken to build a webrender frame. This involves calculating the visibility of primitives, requesting resources, and building the render passes which will be used to render the frame.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "WR_FRAMEBUILD_TIME", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaar@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L520", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_webrender_render_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470901", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2019-10-09 10:56:58", + "last": "2019-10-09 10:56:58" + }, + "description": "The time taken to build a webrender frame. This involves calculating the visibility of primitives, requesting resources, and building the render passes which will be used to render the frame.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "WR_FRAMEBUILD_TIME", + "git-commits": { + "first": "73cb259c5e7474efbba838eb17874deae131e9e1", + "last": "73cb259c5e7474efbba838eb17874deae131e9e1" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "kgupta@mozilla.com" + ], + "reflog-index": { + "first": 69, + "last": 69 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/73cb259c5e7474efbba838eb17874deae131e9e1/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L364", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_webrender_scenebuild_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470901", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2020-10-30 17:42:56", + "last": "2024-02-12 21:08:09" + }, + "description": "The time taken to build a webrender scene. This occurs each time webrender receives a new display list. This additionally includes blob rasterization time.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "WR_SCENEBUILD_TIME", + "git-commits": { + "first": "63acd7c6181a4b8bd8bde90cdaa52f67b69075df", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaar@mozilla.com" + ], + "reflog-index": { + "first": 35, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L487", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "gfx_webrender_sceneswap_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470901", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1584109#c1" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time taken to do a webrender scene swap. This is book-keeping that APZ must perform once webrender has built a new scene.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "WR_SCENESWAP_TIME", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaar@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L504", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "javascript_gc_compact_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17" + ], + "dates": { + "first": "2020-05-22 17:11:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time spent in the compact phase.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_COMPACT_MS", + "git-commits": { + "first": "192006582fec793278b5d6fd29f798d0da25d1a7", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 44, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1921", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_gc_mark_roots_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17" + ], + "dates": { + "first": "2020-05-22 17:11:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time spent marking GC roots.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_MARK_ROOTS_US", + "git-commits": { + "first": "192006582fec793278b5d6fd29f798d0da25d1a7", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 44, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1876", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_gc_mark_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17" + ], + "dates": { + "first": "2020-05-22 17:11:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time spent in the mark phase.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_MARK_MS", + "git-commits": { + "first": "192006582fec793278b5d6fd29f798d0da25d1a7", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 44, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1891", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_gc_minor_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17" + ], + "dates": { + "first": "2020-05-29 16:04:23", + "last": "2024-02-12 21:08:09" + }, + "description": "The time taked by a minor (nursery) collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_MINOR_US", + "git-commits": { + "first": "539a82f76597217a30b6b3b58ab858f160c07149", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 43, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1846", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_gc_prepare_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17" + ], + "dates": { + "first": "2020-05-22 17:11:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time spent in the preparation phase.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_PREPARE_MS", + "git-commits": { + "first": "192006582fec793278b5d6fd29f798d0da25d1a7", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 44, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1861", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_gc_slice_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17" + ], + "dates": { + "first": "2020-05-22 17:11:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time spent running a GC slice.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_SLICE_MS", + "git-commits": { + "first": "192006582fec793278b5d6fd29f798d0da25d1a7", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 44, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1936", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_gc_sweep_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c17" + ], + "dates": { + "first": "2020-05-22 17:11:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The time spent in the sweep phase.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_SWEEP_MS", + "git-commits": { + "first": "192006582fec793278b5d6fd29f798d0da25d1a7", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 44, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1906", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_gc_total_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636419#c8" + ], + "dates": { + "first": "2020-05-22 17:11:58", + "last": "2024-02-12 21:08:09" + }, + "description": "The total time taken by a major collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "GC_MS", + "git-commits": { + "first": "192006582fec793278b5d6fd29f798d0da25d1a7", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 44, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1831", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_pageload_baseline_compile_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4" + ], + "dates": { + "first": "2021-05-12 16:38:40", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent during page load baseline compiling Javascript in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "JS_PAGELOAD_BASELINE_COMPILE_MS", + "git-commits": { + "first": "d2a8c4a6599f184b6168475003f99c9b71cec820", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1772", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_pageload_delazification_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4" + ], + "dates": { + "first": "2021-05-12 16:38:40", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent during page load delazifying Javascript in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "JS_PAGELOAD_DELAZIFICATION_MS", + "git-commits": { + "first": "d2a8c4a6599f184b6168475003f99c9b71cec820", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1744", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_pageload_execution_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4" + ], + "dates": { + "first": "2021-05-12 16:38:40", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent during page load executing Javascript in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "JS_PAGELOAD_EXECUTION_MS", + "git-commits": { + "first": "d2a8c4a6599f184b6168475003f99c9b71cec820", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1730", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_pageload_gc_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4" + ], + "dates": { + "first": "2021-05-12 16:38:40", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent during page load in the GC in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "JS_PAGELOAD_GC_MS", + "git-commits": { + "first": "d2a8c4a6599f184b6168475003f99c9b71cec820", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1786", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_pageload_parse_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4" + ], + "dates": { + "first": "2021-05-12 16:38:40", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent during page load syntax parsing JS scripts on the main thread in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "JS_PAGELOAD_PARSE_MS", + "git-commits": { + "first": "d2a8c4a6599f184b6168475003f99c9b71cec820", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1800", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_pageload_protect_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4" + ], + "dates": { + "first": "2021-05-12 16:38:40", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent during page load protecting JIT executable memory.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "JS_PAGELOAD_PROTECT_MS", + "git-commits": { + "first": "d2a8c4a6599f184b6168475003f99c9b71cec820", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1815", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "javascript_pageload_xdr_encode_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1709139#c4" + ], + "dates": { + "first": "2021-05-12 16:38:40", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent during page load XDR encoding Javascript in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "JS_PAGELOAD_XDR_ENCODING_MS", + "git-commits": { + "first": "d2a8c4a6599f184b6168475003f99c9b71cec820", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1758", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "js_baseline_compile_percentage": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475#c6" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2021-04-26 16:26:38" + }, + "description": "Percentage of execution time spent during Baseline compilation for JS scripts up until the page load event fires.\n", + "disabled": false, + "expires": "2021-03-18", + "gecko_datapoint": "JS_BASELINE_COMPILE_PROPORTION", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "e0f76877731ef2bb3d5da7d3b9c4c43d8a175337" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 21, + "last": 14 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e0f76877731ef2bb3d5da7d3b9c4c43d8a175337/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1468", + "type": "custom_distribution", + "unit": "percentage of execution time", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "js_bytecode_caching_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475#c6" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2021-04-26 16:26:38" + }, + "description": "Time spent caching JS bytecode for scripts executed during a page load.\n", + "disabled": false, + "expires": "2021-03-18", + "gecko_datapoint": "JS_BYTECODE_CACHING_TIME", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "e0f76877731ef2bb3d5da7d3b9c4c43d8a175337" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 14 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e0f76877731ef2bb3d5da7d3b9c4c43d8a175337/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1487", + "time_unit": "nanosecond", + "type": "timing_distribution", + "unit": "milliseconds", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "js_delazification_percentage": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475#c6" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2021-04-26 16:26:38" + }, + "description": "Percentage of execution time spent during delazification for JS scripts up until the page load event fires.\n", + "disabled": false, + "expires": "2021-03-18", + "gecko_datapoint": "JS_DELAZIFICATION_PROPORTION", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "e0f76877731ef2bb3d5da7d3b9c4c43d8a175337" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 21, + "last": 14 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e0f76877731ef2bb3d5da7d3b9c4c43d8a175337/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1430", + "type": "custom_distribution", + "unit": "percentage of execution time", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "js_execution_percentage": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475#c6" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2021-04-26 16:26:38" + }, + "description": "Percentage of page load time spent executing Javascript.\n", + "disabled": false, + "expires": "2021-03-18", + "gecko_datapoint": "JS_EXECUTION_PROPORTION", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "e0f76877731ef2bb3d5da7d3b9c4c43d8a175337" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 21, + "last": 14 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e0f76877731ef2bb3d5da7d3b9c4c43d8a175337/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1412", + "type": "custom_distribution", + "unit": "percentage of execution time", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "js_xdr_encode_percentage": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664475#c6" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2021-04-26 16:26:38" + }, + "description": "Percentage of execution time spent during XDR encoding for JS scripts up until the page load event fires.\n", + "disabled": false, + "expires": "2021-03-18", + "gecko_datapoint": "JS_XDR_ENCODING_PROPORTION", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "e0f76877731ef2bb3d5da7d3b9c4c43d8a175337" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 21, + "last": 14 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e0f76877731ef2bb3d5da7d3b9c4c43d8a175337/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1449", + "type": "custom_distribution", + "unit": "percentage of execution time", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "media_audio_backend": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671714" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671714#c10" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "The operating system audio backend\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "MEDIA_AUDIO_BACKEND", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "unknown", + "audiounit", + "audiounit_rust", + "aaudio", + "opensl", + "wasapi", + "winmm", + "alsa", + "jack", + "oss", + "pulse", + "pulse_rust", + "sndio", + "sun" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L2014", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "media_audio_init_failure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671714" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671714#c10" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2024-02-12 21:08:09" + }, + "description": "Failure occurs when initializing the audio stream.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "MEDIA_AUDIO_INIT_FAILURE", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "labels": [ + "first", + "other" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1998", + "type": "labeled_counter", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-beta", + "engine-gecko-nightly", + "engine-gecko-nightly", + "gecko" + ] + }, + "network_cache_hit_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time to open existing cache entry file.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "NETWORK_CACHE_V2_HIT_TIME_MS", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1266", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "network_dns_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "In the HTTP page channel, time from the DNS request being issued to the response.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "HTTP_PAGE_DNS_LOOKUP_TIME", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vogosu@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1331", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "network_dns_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "In the HTTP page channel, time from connection open to the DNS request being issued.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "HTTP_PAGE_DNS_ISSUE_TIME", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vogosu@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1315", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "network_first_from_cache": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "In the HTTP page channel, time from connection open to cache read start.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "HTTP_PAGE_OPEN_TO_FIRST_FROM_CACHE_V2", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1363", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "network_font_download_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "Time after navigationStart that all webfont downloads are completed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "WEBFONT_DOWNLOAD_TIME_AFTER_START", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "necko@mozilla.com", + "bdekoz@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1347", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "network_tcp_connection": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=772589", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "In the HTTP page channel, time from the TCP SYN packet is received to the connection is established and ready for HTTP.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "HTTP_PAGE_TCP_CONNECTION_2", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "ddamjanovic@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1298", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "network_tls_handshake": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=772589", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "In the HTTP page channel, time from after the TCP SYN packet is received to the secure connection is established and ready for HTTP.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "HTTP_PAGE_TLS_HANDSHAKE", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "ddamjanovic@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1281", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_clone_deserialize_items": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717631" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4" + ], + "dates": { + "first": "2021-07-07 15:56:58", + "last": "2024-02-12 21:08:09" + }, + "description": "Size of deserialized data, in items\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "DESERIALIZE_ITEMS", + "git-commits": { + "first": "a8793c0ceb4838fa6d33a183b5802d6605e00c6d", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sfink@mozilla.com" + ], + "range_max": 2147483646, + "range_min": 1, + "reflog-index": { + "first": 12, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1966", + "type": "custom_distribution", + "unit": "Serialized items", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_clone_deserialize_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717631" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4" + ], + "dates": { + "first": "2021-07-07 15:56:58", + "last": "2024-02-12 21:08:09" + }, + "description": "Size of deserialized data, in bytes\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "DESERIALIZE_BYTES", + "git-commits": { + "first": "a8793c0ceb4838fa6d33a183b5802d6605e00c6d", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sfink@mozilla.com" + ], + "reflog-index": { + "first": 12, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1952", + "type": "memory_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_clone_deserialize_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717631" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1717631#c4" + ], + "dates": { + "first": "2021-07-07 15:56:58", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent deserializing structured data\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "DESERIALIZE_US", + "git-commits": { + "first": "a8793c0ceb4838fa6d33a183b5802d6605e00c6d", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "sfink@mozilla.com" + ], + "reflog-index": { + "first": 12, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1983", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_interaction_keypress_present_latency": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1506537", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "Time between receiving a keypress event in the event loop and compositing its result onto the screen.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "KEYPRESS_PRESENT_LATENCY", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "vchin@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1678", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_interaction_mouseup_click_present_latency": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1698643" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1698643#c3" + ], + "dates": { + "first": "2021-03-18 14:20:20", + "last": "2024-02-12 21:08:09" + }, + "description": "Time between receiving a mouseup which follow by a mouseclick on the event loop and compositing its result onto the screen.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "MOUSEUP_FOLLOWED_BY_CLICK_PRESENT_LATENCY", + "git-commits": { + "first": "395458ba54c71680f9897fe5c91e37a13ae872fe", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "sefeng@mozilla.com" + ], + "reflog-index": { + "first": 16, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1695", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_interaction_tab_switch_composite": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481704", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1529352", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time between tab selection and first composite of the tab content onto the screen.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "FX_TAB_SWITCH_COMPOSITE_E10S_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mconley@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1711", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "firefox-desktop", + "pine" + ] + }, + "performance_page_non_blank_paint": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1307242", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time between navigationStart and the first non-blank paint of a foreground root content document, in milliseconds. This only records documents that were in an active docshell throughout the whole time between navigation start and non-blank paint. The non-blank paint timestamp is taken during display list building and does not include rasterization or compositing of that paint.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_NON_BLANK_PAINT_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "vchin@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1640", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_page_total_content_page_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "Time to load all of a page's resources and render.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TOTAL_CONTENT_PAGE_LOAD_TIME", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "bdekoz@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1662", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_pageload_dcl": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time in milliseconds from navigationStart to domContentLoaded for the foreground http or https root content document.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_DOM_CONTENT_LOADED_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1410", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "performance_pageload_dcl_responsestart": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time in milliseconds from responseStart to domContentLoaded for the foreground http or https root content document.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_DOM_CONTENT_LOADED_FROM_RESPONSESTART_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1426", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "performance_pageload_fcp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_FIRST_CONTENTFUL_PAINT_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1442", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_pageload_fcp_responsestart": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "The time between responseStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_FIRST_CONTENTFUL_PAINT_FROM_RESPONSESTART_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1461", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_pageload_load_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time in milliseconds from navigationStart to loadEventStart for the foreground http or https root content document.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_PAGE_LOAD_TIME_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1378", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_pageload_load_time_responsestart": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time in milliseconds from responseStart to loadEventStart for the foreground http or https root content document.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_PAGE_LOAD_TIME_FROM_RESPONSESTART_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1394", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_pageload_req_anim_frame_callback": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent in milliseconds calling all request animation frame callbacks for a document before it has reached readystate complete.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_REQUEST_ANIMATION_CALLBACK_PAGELOAD_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1480", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_responsiveness_req_anim_frame_callback": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671729#c7" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time spent in milliseconds calling all request animation frame callbacks for a document after it has reached readystate complete.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "PERF_REQUEST_ANIMATION_CALLBACK_NON_PAGELOAD_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1497", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_time_dom_complete": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1344893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time from navigationStart to domComplete as per the W3C Performance Timing API.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_DOM_COMPLETE_MS", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "vgosu@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1586", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_time_dom_content_loaded_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1344893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time from navigationStart to domContentLoadedEventEnd as per the W3C Performance Timing API.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_DOM_CONTENT_LOADED_END_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "vchin@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1568", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_time_dom_content_loaded_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1344893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "Time from navigationStart to domContentLoadedEventStart as per the W3C Performance Timing API.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_DOM_CONTENT_LOADED_START_MS", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "bdekoz@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1551", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_time_dom_interactive": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?1344893", + "https://bugzilla.mozilla.org/show_bug.cgi?1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2022-11-23 21:05:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time from navigationStart to domInteractive as per the W3C Performance Timing API.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_DOM_INTERACTIVE_MS", + "git-commits": { + "first": "b9300d6885db1dc5e4f21d83c61bb8daec85bc9c", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "vgosu@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1533", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_time_load_event_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1344893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time from navigationStart to loadEventEnd as per the W3C Performance Timing API.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_LOAD_EVENT_END_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "vchin@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1621", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_time_load_event_end_no_preload": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188#c5" + ], + "dates": { + "first": "2020-09-09 21:44:48", + "last": "2021-02-11 14:06:01" + }, + "description": "Time from navigationStart to [`loadEventEnd`](https://www.w3.org/TR/ navigation-timing/#dom-performancetiming-loadend) as per the W3C Performance Timing API. This is only submitted on when the document would not preload a resource.\n", + "disabled": false, + "expires": "2021-02-24", + "gecko_datapoint": "TIME_TO_LOAD_EVENT_END_NO_PRELOAD_MS", + "git-commits": { + "first": "423307263a7758d082beb7a3aac1c6bace01821b", + "last": "159ccb6db74bdac94a269466e96d08159805c15b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "barret@mozilla.com" + ], + "reflog-index": { + "first": 42, + "last": 18 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/159ccb6db74bdac94a269466e96d08159805c15b/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1356", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "performance_time_load_event_end_preload": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188#c5" + ], + "dates": { + "first": "2020-09-09 21:44:48", + "last": "2021-02-11 14:06:01" + }, + "description": "Time from navigationStart to [`loadEventEnd`](https://www.w3.org/TR/ navigation-timing/#dom-performancetiming-loadend) as per the W3C Performance Timing API. This is only submitted on when the document would preload a resource (i.e., if it encounters a `` element or a `Link` header with `rel=\"preload\"`), even if the `network.preload` pref is disabled.\n", + "disabled": false, + "expires": "2021-02-24", + "gecko_datapoint": "TIME_TO_LOAD_EVENT_END_PRELOAD_MS", + "git-commits": { + "first": "423307263a7758d082beb7a3aac1c6bace01821b", + "last": "159ccb6db74bdac94a269466e96d08159805c15b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "barret@mozilla.com" + ], + "reflog-index": { + "first": 42, + "last": 18 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/159ccb6db74bdac94a269466e96d08159805c15b/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1318", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "performance_time_load_event_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1344893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2019-11-22 18:18:17", + "last": "2024-02-12 21:08:09" + }, + "description": "Time from navigationStart to loadEventStart as per the W3C Performance Timing API.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_LOAD_EVENT_START_MS", + "git-commits": { + "first": "a72f7d8189e89539061837a1fe7247dad1a2c6c3", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "bdekoz@mozilla.com" + ], + "reflog-index": { + "first": 64, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1604", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "performance_time_load_event_start_no_preload": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188#c5" + ], + "dates": { + "first": "2020-09-09 21:44:48", + "last": "2021-02-11 14:06:01" + }, + "description": "Time from navigationStart to [`loadEventStart`](https://www.w3.org/TR/ navigation-timing/#dom-performancetiming-loadstart) as per the W3C Performance Timing API. This is only submitted on when the document would not preload a resource.\n", + "disabled": false, + "expires": "2021-02-24", + "gecko_datapoint": "TIME_TO_LOAD_EVENT_END_NO_PRELOAD_MS", + "git-commits": { + "first": "423307263a7758d082beb7a3aac1c6bace01821b", + "last": "159ccb6db74bdac94a269466e96d08159805c15b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "barret@mozilla.com" + ], + "reflog-index": { + "first": 42, + "last": 18 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/159ccb6db74bdac94a269466e96d08159805c15b/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1338", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "performance_time_load_event_start_preload": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1657188#c5" + ], + "dates": { + "first": "2020-09-09 21:44:48", + "last": "2021-02-11 14:06:01" + }, + "description": "Time from navigationStart to [`loadEventStart`](https://www.w3.org/TR/ navigation-timing/#dom-performancetiming-loadstart) as per the W3C Performance Timing API. This is only submitted on when the document would preload a resource (i.e., if it encounters a `` element or a `Link` header with `rel=\"preload\"`), even if the `network.preload` pref is disabled.\n", + "disabled": false, + "expires": "2021-02-24", + "gecko_datapoint": "TIME_TO_LOAD_EVENT_START_PRELOAD_MS", + "git-commits": { + "first": "423307263a7758d082beb7a3aac1c6bace01821b", + "last": "159ccb6db74bdac94a269466e96d08159805c15b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "barret@mozilla.com" + ], + "reflog-index": { + "first": 42, + "last": 18 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/159ccb6db74bdac94a269466e96d08159805c15b/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1298", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly" + ] + }, + "performance_time_response_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1344893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2021-01-18 17:43:28", + "last": "2024-02-12 21:08:09" + }, + "description": "Time from navigationStart to responseStart as per the W3C Performance Timing API.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "TIME_TO_RESPONSE_START_MS", + "git-commits": { + "first": "80959132a350d205338dc33783e357c2643d73be", + "last": "6713b39a567c8004e0bde500e70c55fd87c9fee7" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "vchin@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 21, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6713b39a567c8004e0bde500e70c55fd87c9fee7/toolkit/components/telemetry/geckoview/streaming/metrics.yaml#L1515", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "engine-gecko", + "engine-gecko-beta", + "engine-gecko-nightly", + "gecko" + ] + }, + "logins_store_key_regenerated_corrupt": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4554" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4582", + "https://github.com/mozilla/application-services/issues/4899", + "https://github.com/mozilla/application-services/issues/5051" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-07-28 17:07:01", + "last": "2025-02-03 14:31:17" + }, + "description": "The encryption key was regenerated because it didn't match the encrypted data\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "9157f07c36ca18db2405d74c28368553db271d31", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/logins/android/metrics.yaml#L40", + "type": "event", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_key_regenerated_lost": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4554" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4582", + "https://github.com/mozilla/application-services/issues/4899", + "https://github.com/mozilla/application-services/issues/5051" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-07-28 17:07:01", + "last": "2025-02-03 14:31:17" + }, + "description": "The encryption key was regenerated because it was lost\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "9157f07c36ca18db2405d74c28368553db271d31", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/logins/android/metrics.yaml#L23", + "type": "event", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_key_regenerated_other": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4554" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4582", + "https://github.com/mozilla/application-services/issues/4899", + "https://github.com/mozilla/application-services/issues/5051" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-07-28 17:07:01", + "last": "2025-02-03 14:31:17" + }, + "description": "The encryption key was regenerated for an unknown reason\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "9157f07c36ca18db2405d74c28368553db271d31", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/logins/android/metrics.yaml#L58", + "type": "event", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_migration_errors": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4064", + "https://github.com/mozilla/application-services/issues/4102" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4467" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-09-15 21:35:21", + "last": "2022-04-06 19:25:12" + }, + "description": "Errors discovered in the migration.\n", + "disabled": false, + "expires": "2022-06-30", + "gecko_datapoint": "", + "git-commits": { + "first": "b838770268b1ff3ad44b016c692a28e331d755a9", + "last": "8ef65ffea264daa5135e687246f9a75cfa92a238" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 2 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/b838770268b1ff3ad44b016c692a28e331d755a9/components/logins/android/metrics.yaml#L184", + "type": "string_list", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_migration_num_failed": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4064", + "https://github.com/mozilla/application-services/issues/4102" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4467" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-09-15 21:35:21", + "last": "2022-04-06 19:25:12" + }, + "description": "The total number of login records which failed to migrate\n", + "disabled": false, + "expires": "2022-06-30", + "gecko_datapoint": "", + "git-commits": { + "first": "b838770268b1ff3ad44b016c692a28e331d755a9", + "last": "8ef65ffea264daa5135e687246f9a75cfa92a238" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 2 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/b838770268b1ff3ad44b016c692a28e331d755a9/components/logins/android/metrics.yaml#L150", + "type": "counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_migration_num_processed": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4064", + "https://github.com/mozilla/application-services/issues/4102" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4467" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-09-15 21:35:21", + "last": "2022-04-06 19:25:12" + }, + "description": "The total number of login records processed by the migration\n", + "disabled": false, + "expires": "2022-06-30", + "gecko_datapoint": "", + "git-commits": { + "first": "b838770268b1ff3ad44b016c692a28e331d755a9", + "last": "8ef65ffea264daa5135e687246f9a75cfa92a238" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 2 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/b838770268b1ff3ad44b016c692a28e331d755a9/components/logins/android/metrics.yaml#L118", + "type": "counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_migration_num_succeeded": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4064", + "https://github.com/mozilla/application-services/issues/4102" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4467" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-09-15 21:35:21", + "last": "2022-04-06 19:25:12" + }, + "description": "The total number of login records successfully migrated\n", + "disabled": false, + "expires": "2022-06-30", + "gecko_datapoint": "", + "git-commits": { + "first": "b838770268b1ff3ad44b016c692a28e331d755a9", + "last": "8ef65ffea264daa5135e687246f9a75cfa92a238" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 2 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/b838770268b1ff3ad44b016c692a28e331d755a9/components/logins/android/metrics.yaml#L134", + "type": "counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_migration_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/4064", + "https://github.com/mozilla/application-services/issues/4102" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/4467" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-09-15 21:35:21", + "last": "2022-04-06 19:25:12" + }, + "description": "How long the migration tool\n", + "disabled": false, + "expires": "2022-06-30", + "gecko_datapoint": "", + "git-commits": { + "first": "b838770268b1ff3ad44b016c692a28e331d755a9", + "last": "8ef65ffea264daa5135e687246f9a75cfa92a238" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 2 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/b838770268b1ff3ad44b016c692a28e331d755a9/components/logins/android/metrics.yaml#L166", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_read_query_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of read operations performed on the logins store. The count only includes operations triggered by the application, not e.g. incidental reads performed as part of a sync. It is intended to be used together with `read_query_error_count` to measure the overall error rate of read operations on the logins store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 8, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/logins/android/metrics.yaml#L80", + "type": "counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_read_query_error_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of errors encountered during read operations on the logins store, labeled by type. It is intended to be used together with `read_query_count` to measure the overall error rate of read operations on the logins store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "interrupted", + "storage_error" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 8, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/logins/android/metrics.yaml#L101", + "type": "labeled_counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_read_query_time": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-26 08:27:49", + "last": "2020-08-26 08:27:49" + }, + "description": "The time taken to execute a read query on the logins store (such as listing all logins, or finding a specific login by id).\n", + "disabled": false, + "expires": "2021-03-01", + "gecko_datapoint": "", + "git-commits": { + "first": "9018a6aed6179dc8a218136a998e26986f2cb375", + "last": "9018a6aed6179dc8a218136a998e26986f2cb375" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 9, + "last": 9 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/9018a6aed6179dc8a218136a998e26986f2cb375/components/logins/android/metrics.yaml#L173", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_unlock_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2021-02-26 00:05:40" + }, + "description": "The number of times the login store was unlocked. It is intended to be used together with `unlock_error_count` to measure the overall error rate of unlocking the logins store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "1379aab17f898f951068833fd92be7f9dc24c6db" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 8, + "last": 8 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/1379aab17f898f951068833fd92be7f9dc24c6db/components/logins/android/metrics.yaml#L28", + "type": "counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_unlock_error_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2021-02-26 00:05:40" + }, + "description": "The number of errors encountered when unlocking the logins store, labeled by type. It is intended to be used together with `unlock_count` to measure the overall error rate of unlocking the logins store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "1379aab17f898f951068833fd92be7f9dc24c6db" + }, + "labels": [ + "invalid_key", + "mismatched_lock", + "storage_error" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 8, + "last": 8 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/1379aab17f898f951068833fd92be7f9dc24c6db/components/logins/android/metrics.yaml#L47", + "type": "labeled_counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_unlock_time": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-26 08:27:49", + "last": "2020-08-26 08:27:49" + }, + "description": "The time taken to open the logins store on startup, or after locking it due to user inactivity.\n", + "disabled": false, + "expires": "2021-03-01", + "gecko_datapoint": "", + "git-commits": { + "first": "9018a6aed6179dc8a218136a998e26986f2cb375", + "last": "9018a6aed6179dc8a218136a998e26986f2cb375" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 9, + "last": 9 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/9018a6aed6179dc8a218136a998e26986f2cb375/components/logins/android/metrics.yaml#L157", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_write_query_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of write operations performed on the logins store. The count only includes operations triggered by the application, not e.g. incidental writes performed as part of a sync. It is intended to be used together with `write_query_error_count` to measure the overall error rate of write operations on the logins store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 8, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/logins/android/metrics.yaml#L124", + "type": "counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_write_query_error_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-08-18 05:30:07", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of errors encountered during write operations on the logins store, labeled by type. It is intended to be used together with `write_query_count` to measure the overall error rate of write operations on the logins store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4051d2285a0c0cd970761a168213b46d5eb319c6", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "no_such_record", + "interrupted", + "invalid_record", + "storage_error" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/logins/android/metrics.yaml#L145", + "type": "labeled_counter", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "logins_store_write_query_time": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2225" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1597895", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-26 08:27:49", + "last": "2020-08-26 08:27:49" + }, + "description": "The time taken to execute a write query on the logins store (such as adding, updating, or deleting a login record).\n", + "disabled": false, + "expires": "2021-03-01", + "gecko_datapoint": "", + "git-commits": { + "first": "9018a6aed6179dc8a218136a998e26986f2cb375", + "last": "9018a6aed6179dc8a218136a998e26986f2cb375" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 9, + "last": 9 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/9018a6aed6179dc8a218136a998e26986f2cb375/components/logins/android/metrics.yaml#L189", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "logins-store" + ] + }, + "fxa_client_error_count": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5871" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5872" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-16 16:03:00", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of errors encountered during FxA operations, labeled by type. It is intended to be used together with `operation_count` to measure the overall error rate of FxA operations operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "acbb1bef489d63919f785de8f0ab8cd6e9f74803", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "network", + "authentication", + "no_existing_auth_flow", + "origin_mismatch", + "fxa_other", + "unexpected" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "bdk@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/fxa-client/android/metrics.yaml#L35", + "type": "labeled_counter", + "version": 0, + "repos": [ + "fxa-client" + ] + }, + "fxa_client_operation_count": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5871" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5872" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-06 15:53:32", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of operations performed by the FxA client.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "866b2be74dfb23ef93c096ff218a5f8dcdef6760", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "bdk@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/fxa-client/android/metrics.yaml#L21", + "type": "counter", + "version": 0, + "repos": [ + "fxa-client" + ] + }, + "migration_addons_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L952", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_addons_failed_addons": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "How many addons failed to migrate?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1003", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_addons_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L969", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_addons_migrated_addons": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "How many addons were migrated?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1020", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_addons_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L986", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_addons_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1037", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_bookmarks_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L343", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_bookmarks_detected": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total number of detected bookmarks prior to a migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L290", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_bookmarks_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Duration of the bookmarks migration (Rust operations).\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L307", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_bookmarks_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L376", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_bookmarks_migrated": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Counters describing how bookmark migration went; should add-up to 'migration.bookmarks.detected'.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "labels": [ + "succeeded", + "failed" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L269", + "type": "labeled_counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_bookmarks_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L360", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_bookmarks_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L325", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L497", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_bad_auth_state": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "If we couldn't migrate due to a bad auth state, what was it?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L548", + "type": "string", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L514", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_failure_reason_rust": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "dates": { + "first": "2020-01-14 04:44:15", + "last": "2020-01-14 04:44:15" + }, + "description": "Why this migration failed (rust exception).\n", + "disabled": false, + "expires": "2020-10-01", + "gecko_datapoint": "", + "git-commits": { + "first": "de1f46edbf9ac27f7fa680130d361043eccce10c", + "last": "de1f46edbf9ac27f7fa680130d361043eccce10c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 13 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/de1f46edbf9ac27f7fa680130d361043eccce10c/components/support/migration/metrics.yaml#L274", + "type": "string", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_has_custom_idp_server": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5359" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5582#issuecomment-574673110" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Is custom idp server configured?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L582", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_has_custom_token_server": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5359" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5582#issuecomment-574673110" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Is custom token server configured?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L565", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L531", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L650", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_unsupported_account_version": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5359" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5582#issuecomment-574673110" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "What is the detected unsupported account version?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L599", + "type": "string", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_unsupported_pickle_version": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5359" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5582#issuecomment-574673110" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "What is the detected unsupported pickle version?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L616", + "type": "string", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_fxa_unsupported_state_version": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5359" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5582#issuecomment-574673110" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "What is the detected unsupported state version?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L633", + "type": "string", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_gecko_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L670", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_gecko_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L703", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_gecko_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L687", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_gecko_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L719", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_history_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L218", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_history_detected": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total number of detected history items prior to a migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L165", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_history_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Duration of the history migration (Rust operations).\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L182", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_history_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L251", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_history_migrated": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Counters describing how history migration went; should add-up to 'migration.history.detected'.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "labels": [ + "succeeded", + "failed" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L144", + "type": "labeled_counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_history_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L235", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_history_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L200", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_logins_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L739", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_logins_detected": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "How many logins were detected?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L807", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_logins_failure_counts": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "How many logins failed to be migrated, and in which ways?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "labels": [ + "process", + "import" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L824", + "type": "labeled_counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_logins_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L756", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_logins_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L790", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_logins_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L844", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_logins_unsupported_db_version": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "If we couldn't migrate due to an unsupported db version, what was it?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L773", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_migration_versions": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Versions of the migrations which were executed.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "labels": [ + "history", + "bookmarks", + "logins", + "open_tabs", + "fxa", + "gecko", + "settings", + "telemetry_identifiers", + "addons", + "search", + "pinned_sites" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L9", + "type": "labeled_string", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_open_tabs_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L428", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_open_tabs_detected": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Number of detected open tabs.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L394", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_open_tabs_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L461", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_open_tabs_migrated": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Number of migrated open tabs.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L411", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_open_tabs_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L445", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_open_tabs_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L477", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_pinned_sites_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5126" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1125", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_pinned_sites_detected_pinned_sites": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5126" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "How many pinned sites were detected?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1176", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_pinned_sites_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5126" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1142", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_pinned_sites_migrated_pinned_sites": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5126" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "How many pinned sites were migrated?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1193", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_pinned_sites_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5126" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1159", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_pinned_sites_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1210", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_search_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5818" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5819#pullrequestreview-353890362" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1057", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_search_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5818" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5819#pullrequestreview-353890362" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1073", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_search_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5818" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5819#pullrequestreview-353890362" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1089", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_search_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L1105", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_settings_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L864", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_settings_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L881", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_settings_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L898", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_settings_telemetry_enabled": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Is telemetry enabled after this migration?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L915", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_settings_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L932", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_telemetry_identifiers_any_failures": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Did this migration encounter any failures (exceptions)?\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L75", + "type": "boolean", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_telemetry_identifiers_failure_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration failed. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L108", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_telemetry_identifiers_fennec_client_id": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Records clientID of the migrated Fennec profile.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L40", + "type": "uuid", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_telemetry_identifiers_fennec_profile_creation_date": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/5888" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5483#issuecomment-573971458" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Records when the migrated Fennec profile was created.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L57", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_telemetry_identifiers_success_reason": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/5653" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/5655#pullrequestreview-346359792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Why this migration succeeded. See codes in TelemetryHelpers.kt\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L92", + "type": "counter", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "migration_telemetry_identifiers_total_duration": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla-mobile/android-components/issues/6196" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/6214#pullrequestreview-372237195" + ], + "data_sensitivity": [ + "technical", + "interaction" + ], + "dates": { + "first": "2021-04-29 20:20:29", + "last": "2021-04-29 20:20:29" + }, + "description": "Total duration of this migration.\n", + "disabled": false, + "expires": "2021-11-01", + "gecko_datapoint": "", + "git-commits": { + "first": "b5b9899a5c8e91a91073f224c3b53dad3048d25a", + "last": "b5b9899a5c8e91a91073f224c3b53dad3048d25a" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "fenix-core@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "migration" + ], + "source_url": "https://github.com/mozilla-mobile/android-components/blob/b5b9899a5c8e91a91073f224c3b53dad3048d25a/components/support/migration/metrics.yaml#L124", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "support-migration" + ] + }, + "places_manager_db_size_after_maintenance": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5115" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5122", + "https://github.com/mozilla/application-services/issues/5387", + "https://github.com/mozilla/application-services/issues/5830" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-22 18:58:28", + "last": "2025-02-03 14:31:17" + }, + "description": "Size of the db after executing `run_maintenance()`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5d6997adaad61b3392766b35c958ebb2b3b57dcd", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L212", + "type": "memory_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_read_query_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2300", + "https://github.com/mozilla/application-services/issues/2299" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607621", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of read operations performed on the places store. The count only includes operations triggered by the application, not e.g. incidental reads performed as part of a sync. It is intended to be used together with `read_query_error_count` to measure the overall error rate of read operations on the places store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L22", + "type": "counter", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_read_query_error_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2300", + "https://github.com/mozilla/application-services/issues/2299" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607621", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of errors encountered during read operations on the places store, labeled by type. It is intended to be used together with `read_query_count` to measure the overall error rate of read operations on the places store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "url_parse_failed", + "operation_interrupted" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L44", + "type": "labeled_counter", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_read_query_time": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2300", + "https://github.com/mozilla/application-services/issues/2299" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607621", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-26 08:27:49", + "last": "2020-08-26 08:27:49" + }, + "description": "The time taken to execute a read query on the places store.\n", + "disabled": false, + "expires": "2021-03-01", + "gecko_datapoint": "", + "git-commits": { + "first": "9018a6aed6179dc8a218136a998e26986f2cb375", + "last": "9018a6aed6179dc8a218136a998e26986f2cb375" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 4 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/9018a6aed6179dc8a218136a998e26986f2cb375/components/places/android/metrics.yaml#L110", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_run_maintenance_chk_pnt_time": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5246" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5247", + "https://github.com/mozilla/application-services/issues/5387", + "https://github.com/mozilla/application-services/issues/5830" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-22 18:58:28", + "last": "2025-02-03 14:31:17" + }, + "description": "Time taken to execute `PRAGMA_CHECKPOINT` inside `run_maintenance()`", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5d6997adaad61b3392766b35c958ebb2b3b57dcd", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L194", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_run_maintenance_optimize_time": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5246" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5247", + "https://github.com/mozilla/application-services/issues/5387", + "https://github.com/mozilla/application-services/issues/5830" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-22 18:58:28", + "last": "2025-02-03 14:31:17" + }, + "description": "Time taken to execute `PRAGMA optimize` inside `run_maintenance()`", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5d6997adaad61b3392766b35c958ebb2b3b57dcd", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L176", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_run_maintenance_prune_time": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5246" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5247", + "https://github.com/mozilla/application-services/issues/5387", + "https://github.com/mozilla/application-services/issues/5830" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-22 18:58:28", + "last": "2025-02-03 14:31:17" + }, + "description": "Time taken to execute `prune_older_visits()` inside `run_maintenance()`", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5d6997adaad61b3392766b35c958ebb2b3b57dcd", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L141", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_run_maintenance_time": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5115" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5122", + "https://github.com/mozilla/application-services/issues/5387", + "https://github.com/mozilla/application-services/issues/5830" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-22 18:58:28", + "last": "2025-02-03 14:31:17" + }, + "description": "Time taken to execute `run_maintenance()`", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5d6997adaad61b3392766b35c958ebb2b3b57dcd", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L124", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_run_maintenance_vacuum_time": { + "bugs": [ + "https://github.com/mozilla/application-services/issues/5246" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/issues/5247", + "https://github.com/mozilla/application-services/issues/5387", + "https://github.com/mozilla/application-services/issues/5830" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-22 18:58:28", + "last": "2025-02-03 14:31:17" + }, + "description": "Time taken to execute `VACUUM` inside `run_maintenance()`", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5d6997adaad61b3392766b35c958ebb2b3b57dcd", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com", + "bdk@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L159", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_scan_query_time": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2300", + "https://github.com/mozilla/application-services/issues/2299" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607621", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-26 08:27:49", + "last": "2020-08-26 08:27:49" + }, + "description": "The time taken to execute a scan query on the places store. This metric is for queries that we expect to be costly e.g. getBookmarksTree(guid, recursive=True).\n", + "disabled": false, + "expires": "2021-03-01", + "gecko_datapoint": "", + "git-commits": { + "first": "9018a6aed6179dc8a218136a998e26986f2cb375", + "last": "9018a6aed6179dc8a218136a998e26986f2cb375" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 4 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/9018a6aed6179dc8a218136a998e26986f2cb375/components/places/android/metrics.yaml#L126", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_write_query_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2300", + "https://github.com/mozilla/application-services/issues/2299" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607621", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2021-02-26 00:05:40", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of write operations performed on the places store. The count only includes operations triggered by the application, not e.g. incidental writes performed as part of a sync. It is intended to be used together with `write_query_error_count` to measure the overall error rate of write operations on the places store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1379aab17f898f951068833fd92be7f9dc24c6db", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L68", + "type": "counter", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_write_query_error_count": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2300", + "https://github.com/mozilla/application-services/issues/2299" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607621", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694316", + "https://github.com/mozilla/application-services/issues/4848" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2022-02-16 23:01:39", + "last": "2025-02-03 14:31:17" + }, + "description": "The total number of errors encountered during write operations on the places store, labeled by type. It is intended to be used together with `write_query_count` to measure the overall error rate of write operations on the places store.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ab89c506addd278b4a6a0baa71f1a716fa2bdceb", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "labels": [ + "url_parse_failed", + "invalid_bookmark_update", + "invalid_parent", + "unknown_bookmark_item", + "url_too_long", + "cannot_update_root", + "json_parse_failed", + "places_connection_busy", + "operation_interrupted", + "unexpected_places_exception", + "bookmarks_corruption" + ], + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mhammond@mozilla.com", + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/places/android/metrics.yaml#L90", + "type": "labeled_counter", + "version": 0, + "repos": [ + "android-places" + ] + }, + "places_manager_write_query_time": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "bugs": [ + "https://github.com/mozilla/application-services/issues/2300", + "https://github.com/mozilla/application-services/issues/2299" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607621", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649044" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2020-08-26 08:27:49", + "last": "2020-08-26 08:27:49" + }, + "description": "The time taken to execute a write query on the places store.\n", + "disabled": false, + "expires": "2021-03-01", + "gecko_datapoint": "", + "git-commits": { + "first": "9018a6aed6179dc8a218136a998e26986f2cb375", + "last": "9018a6aed6179dc8a218136a998e26986f2cb375" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "synced-client-integrations@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 4 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/9018a6aed6179dc8a218136a998e26986f2cb375/components/places/android/metrics.yaml#L144", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "android-places" + ] + }, + "glean_element_click": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1867294" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1867294#c29" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-01-24 18:37:30", + "last": "2024-08-08 14:16:20" + }, + "description": "A event triggered whenever an html element is clicked on a page.\n\n**Clicks are recorded only for those html elements that have at least one of\nthe `data-glean-*` data attributes.\nBy default, this event is not collected automatically. Collection can be turned on\nby clients via Glean configuration object (`enableAutoElementClickEvents`). Glean\nalso provides a separate API for clients to record element clicks manually.**\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "id": { + "description": "An identifier of the element clicked. For automatic collection, its value is the element's `data-glean-id` data attribute value.", + "type": "string" + }, + "label": { + "description": "The label of the element clicked. For automatic collection, its value is the element's `data-glean-label` data attribute value.", + "type": "string" + }, + "type": { + "description": "The type of the element clicked. For automatic collection, its value is the element's `data-glean-type` data attribute value.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ed80081803c75a870a043b9639e0f850e28e5a73", + "last": "eca7d5665be4f2e51ec43628c4427c9def35980b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/glean.js/blob/eca7d5665be4f2e51ec43628c4427c9def35980b/glean/src/metrics.yaml#L513", + "type": "event", + "version": 0, + "repos": [ + "glean-js" + ] + }, + "glean_page_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1888430" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1888430" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-22 21:01:55", + "last": "2024-08-08 14:16:20" + }, + "description": "Uniquely identifies a page_load, not the page itself, for the purpose of associating other events with the specific page load event. This gets\nrotated with each page load and is sent along with each event ping.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c5aa793f45024a88a8a551251a358a14702f5bb9", + "last": "eca7d5665be4f2e51ec43628c4427c9def35980b" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/glean.js/blob/eca7d5665be4f2e51ec43628c4427c9def35980b/glean/src/metrics.yaml#L542", + "type": "uuid", + "version": 0, + "repos": [ + "glean-js" + ] + }, + "glean_page_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1867126" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1867126#c8" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-01-24 18:37:30", + "last": "2024-08-08 14:16:20" + }, + "description": "A event triggered whenever a page is loaded.\n\n**This event by default is not collected automatically. This can be\nturned on by the client in the Glean configuration object\n(`enableAutoPageLoadEvents`). Glean provides a separate API for\ncollecting the same page load data if the client wants to collect\npage loads manually.**\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "referrer": { + "description": "The page referrer.", + "type": "string" + }, + "title": { + "description": "The page title.", + "type": "string" + }, + "url": { + "description": "The page URL.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ed80081803c75a870a043b9639e0f850e28e5a73", + "last": "eca7d5665be4f2e51ec43628c4427c9def35980b" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/glean.js/blob/eca7d5665be4f2e51ec43628c4427c9def35980b/glean/src/metrics.yaml#L484", + "type": "event", + "version": 0, + "repos": [ + "glean-js" + ] + }, + "session_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862955" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862955#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-02-22 22:23:36", + "last": "2024-08-08 14:16:20" + }, + "description": "A running counter of the number of sessions for this client. A session is\nthe period of time in which a user interacts with the application. After\na period of inactivity (default being 30 minutes) a new session will be\ncreated the next time the user interacts with the application. On each\nnew session, the session_count will be incremented.\nThis count will ONLY be reset on opt-out or whenever storage is deleted.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3027e1e30835d1ce787587051926f17120b47b34", + "last": "eca7d5665be4f2e51ec43628c4427c9def35980b" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean.js/blob/eca7d5665be4f2e51ec43628c4427c9def35980b/glean/src/metrics.yaml#L148", + "type": "counter", + "version": 0, + "repos": [ + "glean-js" + ] + }, + "session_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862955" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862955#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-02-22 22:23:36", + "last": "2024-08-08 14:16:20" + }, + "description": "A UUID uniquely identifying the client's current session. A session is\nthe period of time in which a user interacts with the application. After\na period of inactivity (default being 30 minutes) a new session will be\ncreated the next time the user interacts with the application. On each\nnew session, the session_id will be updated.\n\nThis metric WILL NOT be included for pings where `include_client_id` is `false`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3027e1e30835d1ce787587051926f17120b47b34", + "last": "eca7d5665be4f2e51ec43628c4427c9def35980b" + }, + "lifetime": "user", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "glean_client_info" + ], + "source_url": "https://github.com/mozilla/glean.js/blob/eca7d5665be4f2e51ec43628c4427c9def35980b/glean/src/metrics.yaml#L125", + "type": "uuid", + "version": 0, + "repos": [ + "glean-js" + ] + }, + "nimbus_events_activation": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-3950" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5908#pullrequestreview-1718840482" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-11 17:47:43", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when a feature is configured with an experimental configuration for the first time in this session.\n", + "disabled": true, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "feature_id": { + "description": "The identifier of the feature that is recording an exposure", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5982870e95e8810320b1cea374bf87da0df3d727", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chumphreys@mozilla.com", + "project-nimbus@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L143", + "type": "event", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "nimbus_events_disqualification": { + "bugs": [ + "https://jira.mozilla.com/browse/SDK-126" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/9168#issuecomment-743461975" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-03 17:21:48", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when a user becomes ineligible to continue receiving the treatment for an enrolled experiment, for reasons such as the user opting out of the experiment or no longer matching targeting for the experiment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "da9301f829de67149d50dce5b709aed42f1bfe1b", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "telemetry-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L119", + "type": "event", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "nimbus_events_enroll_failed": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-2534" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1773563#c7", + "https://github.com/mozilla/application-services/pull/5137#issuecomment-1276562922" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-17 20:21:12", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when an enrollment fails, including the reason for the failure.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "If reason == \"invalid-branch\", this is the invalid branch.", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "reason": { + "description": "The reason for the enrollment failure", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "91e46e61870d8a6c881040a246a267e02d8e3cb4", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "background-update", + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L40", + "type": "event", + "version": 0, + "repos": [ + "nimbus", + "firefox-desktop" + ] + }, + "nimbus_events_enrollment": { + "bugs": [ + "https://jira.mozilla.com/browse/SDK-61" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/9168#issuecomment-743461975" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-03 17:21:48", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when a user has met the conditions and is first bucketed into an experiment (i.e. targeting matched and they were randomized into a bucket and branch of the experiment). Expected a maximum of once per experiment per user.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "experiment_type": { + "description": "Indicates whether this is an experiment or rollout", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "da9301f829de67149d50dce5b709aed42f1bfe1b", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "telemetry-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L13", + "type": "event", + "version": 0, + "repos": [ + "nimbus", + "firefox-desktop" + ] + }, + "nimbus_events_enrollment_status": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-3827" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5857#issuecomment-1749722071" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-13 21:52:11", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded for each enrollment status each time the SDK completes application of pending experiments.\n", + "disabled": true, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen (if the client is enrolled)", + "type": "string" + }, + "conflict_slug": { + "description": "If the enrollment hit a feature conflict, the slug of the conflicting experiment/rollout", + "type": "string" + }, + "error_string": { + "description": "If the enrollment resulted in an error, the associated error string", + "type": "string" + }, + "reason": { + "description": "The reason the client is in the noted status", + "type": "string" + }, + "slug": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "status": { + "description": "The status of this enrollment", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "1e119c213c8f491bb2d8f4bb8b63685b1c4b3aa3", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chumphreys@mozilla.com", + "project-nimbus@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L226", + "type": "event", + "version": 0, + "repos": [ + "nimbus", + "firefox-desktop" + ] + }, + "nimbus_events_exposure": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "_generate_enums": [ + [ + "allowed_extra_keys_with_types", + "Extra" + ] + ], + "bugs": [ + "https://jira.mozilla.com/browse/SDK-65" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/9168#issuecomment-743461975" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-10-26 21:11:09", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when a user actually observes an experimental treatment, or would have observed an experimental treatment if they had been in a branch that would have shown one.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "feature_id": { + "description": "The identifier of the feature that is recording an exposure", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "37ca1864331958fcadb05b2a6f277040254dd21e", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "telemetry-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L170", + "type": "event", + "version": 0, + "repos": [ + "nimbus", + "firefox-desktop" + ] + }, + "nimbus_events_is_ready": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-4221" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/6062#issuecomment-1899087931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-11 17:47:43", + "last": "2025-02-03 14:31:17" + }, + "description": "An event sent when Nimbus finishes launching.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "5982870e95e8810320b1cea374bf87da0df3d727", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chumphreys@mozilla.com", + "project-nimbus@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L260", + "type": "event", + "version": 0, + "repos": [ + "nimbus", + "firefox-desktop" + ] + }, + "nimbus_events_malformed_feature": { + "bugs": [ + "https://jira.mozilla.com/browse/EXP-3310" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5440#pullrequestreview-1356564351" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-11 17:47:43", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when feature code detects a problem with some part of the feature configuration.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "feature_id": { + "description": "The identifier of the feature that is has a malformed configuration", + "type": "string" + }, + "part_id": { + "description": "The identifier of the feature-specific part that is malformed. e.g. the card or message id.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5982870e95e8810320b1cea374bf87da0df3d727", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chumphreys@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L196", + "type": "event", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "nimbus_events_unenroll_failed": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-2534" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1773563#c7", + "https://github.com/mozilla/application-services/pull/5137#issuecomment-1276562922" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-17 20:21:12", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when an unenrollment fails, including the reason for the failure.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "reason": { + "description": "The reason for the unenrollment failure", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "91e46e61870d8a6c881040a246a267e02d8e3cb4", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "background-update", + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L94", + "type": "event", + "version": 0, + "repos": [ + "nimbus", + "firefox-desktop" + ] + }, + "nimbus_events_unenrollment": { + "bugs": [ + "https://jira.mozilla.com/browse/SDK-126" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/android-components/pull/9168#issuecomment-743461975" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-03 17:21:48", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when either telemetry is disabled, or the experiment has run for its designed duration (i.e. it is no longer present in the Nimbus Remote Settings collection)\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "reason": { + "description": "The reason for the unenrollment", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "da9301f829de67149d50dce5b709aed42f1bfe1b", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "telemetry-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L68", + "type": "event", + "version": 0, + "repos": [ + "nimbus", + "firefox-desktop" + ] + }, + "nimbus_health_apply_pending_experiments_time": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-3083" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5344#issuecomment-1402584994" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-11 17:47:43", + "last": "2025-02-03 14:31:17" + }, + "description": "Measure how long `applyPendingExperiments` takes.\n`applyPendingExperiments` uses disk I/O, and happens at\nstartup, as part of the initialization sequence.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5982870e95e8810320b1cea374bf87da0df3d727", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chumphreys@mozilla.com", + "nimbus-dev@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L295", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "nimbus_health_cache_not_ready_for_feature": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "_generate_enums": [ + [ + "allowed_extra_keys_with_types", + "Extra" + ] + ], + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-2743", + "https://mozilla-hub.atlassian.net/browse/EXP-2852" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5118#issuecomment-1235827006" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-10-14 15:55:04", + "last": "2025-02-03 14:31:17" + }, + "description": "Recorded when an application or library requests a feature configuration before the in memory cache has been populated from the database\n", + "disabled": true, + "expires": "never", + "extra_keys": { + "feature_id": { + "description": "The feature id of the configuration that was requested", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "835c45634ecde9d03497d6fc01b4cd1a95a43ffe", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L275", + "type": "event", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "nimbus_health_feature_request_error": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "_generate_enums": [ + [ + "allowed_extra_keys_with_types", + "Extra" + ] + ], + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-2689", + "https://mozilla-hub.atlassian.net/browse/EXP-2690" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5091#issuecomment-1218359426" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-08-18 13:42:38", + "last": "2022-08-18 13:42:38" + }, + "description": "Recorded when an application or library requests a feature configuration prior to Nimbus initialization.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "feature_id": { + "description": "The feature id of the configuration that was requested", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "19f92c4a8ce2e3a425656bbfed6f9a95ff029db3", + "last": "19f92c4a8ce2e3a425656bbfed6f9a95ff029db3" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com, telemetry-team@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/19f92c4a8ce2e3a425656bbfed6f9a95ff029db3/components/nimbus/metrics.yaml#L119", + "type": "event", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "nimbus_health_fetch_experiments_time": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-3083" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5344#issuecomment-1402584994" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-11 17:47:43", + "last": "2025-02-03 14:31:17" + }, + "description": "Measures how long `fetchExperiments` takes.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5982870e95e8810320b1cea374bf87da0df3d727", + "last": "f0d41b46f9b8b0692d000cd7637ee8b74fb384c0" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chumphreys@mozilla.com", + "nimbus-dev@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/application-services/blob/f0d41b46f9b8b0692d000cd7637ee8b74fb384c0/components/nimbus/metrics.yaml#L314", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "nimbus_health_sdk_unavailable_for_feature": { + "_config": { + "allow_reserved": false, + "do_not_disable_expired": true + }, + "_generate_enums": [ + [ + "allowed_extra_keys_with_types", + "Extra" + ] + ], + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-2689", + "https://mozilla-hub.atlassian.net/browse/EXP-2690", + "https://mozilla-hub.atlassian.net/browse/EXP-2852" + ], + "data_reviews": [ + "https://github.com/mozilla/application-services/pull/5091#issuecomment-1218359426" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-10-26 21:11:09", + "last": "2023-01-30 22:05:14" + }, + "description": "Recorded when an application or library requests a feature configuration prior to Nimbus initialization.\n", + "disabled": true, + "expires": "never", + "extra_keys": { + "feature_id": { + "description": "The feature id of the configuration that was requested", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "37ca1864331958fcadb05b2a6f277040254dd21e", + "last": "eb576bade3089cab8825eeb494dc84491e2225ea" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "telemetry-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/application-services/blob/eb576bade3089cab8825eeb494dc84491e2225ea/components/nimbus/metrics.yaml#L177", + "type": "event", + "version": 0, + "repos": [ + "nimbus" + ] + }, + "cirrus_events_enrollment": { + "bugs": [ + "https://github.com/mozilla/experimenter/issues/8928", + "https://github.com/mozilla/experimenter/issues/11227" + ], + "data_reviews": [ + "https://github.com/mozilla/experimenter/pull/9081#issuecomment-1625751843", + "https://github.com/mozilla/experimenter/pull/11228#issuecomment-2310649172" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-17 18:05:29", + "last": "2025-02-04 15:56:35" + }, + "description": "Recorded when a user has met the conditions and is first bucketed into an experiment (i.e. targeting matched and they were randomized into a bucket and branch of the experiment). Expected a maximum of once per experiment per user.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "app_id": { + "description": "A unique identifier for application", + "type": "string" + }, + "branch": { + "description": "The branch slug/identifier that was randomly chosen", + "type": "string" + }, + "experiment": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "experiment_type": { + "description": "Indicates whether this is an experiment or rollout", + "type": "string" + }, + "is_preview": { + "description": "Indicates whether this is preview mode", + "type": "boolean" + }, + "nimbus_user_id": { + "description": "A unique identifier for User/Client sending a request to get feature configuration", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "c330a4a72b9bfbd9efbf8cf85d8b793fb528d0e8", + "last": "c8e6747a8c27f3e1cdfd5f90816fca8348636b39" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "ykhurana@mozilla.com", + "chumphreys@mozilla.com", + "jkerim@mozilla.com", + "project-nimbus@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "enrollment" + ], + "source_url": "https://github.com/mozilla/experimenter/blob/c8e6747a8c27f3e1cdfd5f90816fca8348636b39/cirrus/server/telemetry/metrics.yaml#L5", + "type": "event", + "version": 0, + "repos": [ + "nimbus-cirrus" + ] + }, + "cirrus_events_enrollment_status": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-3828", + "https://github.com/mozilla/experimenter/issues/9649" + ], + "data_reviews": [ + "https://github.com/mozilla/experimenter/pull/9657#issuecomment-1791427765" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-17 18:05:29", + "last": "2025-02-04 15:56:35" + }, + "description": "Recorded for each enrollment status each time the Nimbus SDK completes application of pending experiments.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch slug/identifier that was randomly chosen (if the client is enrolled)", + "type": "string" + }, + "conflict_slug": { + "description": "If the enrollment hit a feature conflict, the slug of the conflicting experiment/rollout", + "type": "string" + }, + "error_string": { + "description": "If the enrollment resulted in an error, the associated error string", + "type": "string" + }, + "nimbus_user_id": { + "description": "The ID of the user requesting enrollment", + "type": "string" + }, + "reason": { + "description": "The reason the client is in the noted status", + "type": "string" + }, + "slug": { + "description": "The slug/unique identifier of the experiment", + "type": "string" + }, + "status": { + "description": "The status of this enrollment", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "c330a4a72b9bfbd9efbf8cf85d8b793fb528d0e8", + "last": "c8e6747a8c27f3e1cdfd5f90816fca8348636b39" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "ykhurana@mozilla.com", + "chumphreys@mozilla.com", + "jkerim@mozilla.com", + "project-nimbus@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "enrollment-status" + ], + "source_url": "https://github.com/mozilla/experimenter/blob/c8e6747a8c27f3e1cdfd5f90816fca8348636b39/cirrus/server/telemetry/metrics.yaml#L47", + "type": "event", + "version": 0, + "repos": [ + "nimbus-cirrus" + ] + }, + "cirrus_events_instance_name": { + "bugs": [ + "https://mozilla-hub.atlassian.net/browse/EXP-3574", + "https://github.com/mozilla/experimenter/issues/9911" + ], + "data_reviews": [ + "https://github.com/mozilla/experimenter/pull/9920#issuecomment-1846146644" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-19 17:42:06", + "last": "2025-02-04 15:56:35" + }, + "description": "The name of the instance", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "93937eb8668aba7426fb376262d8793b78562802", + "last": "c8e6747a8c27f3e1cdfd5f90816fca8348636b39" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "ykhurana@mozilla.com", + "chumphreys@mozilla.com", + "jkerim@mozilla.com", + "project-nimbus@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "startup" + ], + "source_url": "https://github.com/mozilla/experimenter/blob/c8e6747a8c27f3e1cdfd5f90816fca8348636b39/cirrus/server/telemetry/metrics.yaml#L88", + "type": "string", + "version": 0, + "repos": [ + "nimbus-cirrus" + ] + }, + "messaging_malformed": { + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/24224" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/fenix/issues/24224", + "https://github.com/mozilla-mobile/firefox-android/pull/1101" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-04-08 00:16:50", + "last": "2025-02-04 14:27:22" + }, + "description": "A message was malformed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "message_key": { + "description": "The id of the message", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ca0e96c55bead00a5c1452b9a7b9537ed2290a22", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com", + "cgordon@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L92", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "messaging_message_clicked": { + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/24224" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/fenix/issues/24224", + "https://github.com/mozilla-mobile/firefox-android/pull/1101" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-04-08 00:16:50", + "last": "2025-02-04 14:27:22" + }, + "description": "A message was clicked by the user.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "action_uuid": { + "description": "The uuid of the action", + "type": "string" + }, + "message_key": { + "description": "The id of the message", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ca0e96c55bead00a5c1452b9a7b9537ed2290a22", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com", + "cgordon@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L51", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "messaging_message_dismissed": { + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/24224" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/fenix/issues/24224", + "https://github.com/mozilla-mobile/firefox-android/pull/1101" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-04-08 00:16:50", + "last": "2025-02-04 14:27:22" + }, + "description": "A message was dismissed by the user.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "message_key": { + "description": "The id of the message", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ca0e96c55bead00a5c1452b9a7b9537ed2290a22", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com", + "cgordon@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L32", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "messaging_message_expired": { + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/24224" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/fenix/issues/24224", + "https://github.com/mozilla-mobile/firefox-android/pull/1101" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-04-08 00:16:50", + "last": "2025-02-04 14:27:22" + }, + "description": "A message maxDisplayCount has been surpassed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "message_key": { + "description": "The id of the message", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ca0e96c55bead00a5c1452b9a7b9537ed2290a22", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com", + "cgordon@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L73", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "messaging_message_shown": { + "bugs": [ + "https://github.com/mozilla-mobile/fenix/issues/24224" + ], + "data_reviews": [ + "https://github.com/mozilla-mobile/fenix/pull/24426", + "https://github.com/mozilla-mobile/firefox-android/pull/1101" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-04-08 00:16:50", + "last": "2025-02-04 14:27:22" + }, + "description": "A message was shown to the user.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "message_key": { + "description": "The id of the message", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ca0e96c55bead00a5c1452b9a7b9537ed2290a22", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com", + "cgordon@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L13", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "micro_survey_response": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1891509", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1895560" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1891509", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1895560" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-27 00:27:07", + "last": "2024-07-03 00:40:42" + }, + "description": "User response data for a micro survey.", + "disabled": false, + "expires": "never", + "extra_keys": { + "survey_id": { + "description": "The id of the survey.", + "type": "string" + }, + "user_selection": { + "description": "The users selected option. For example, possible values are:\n\"Very satisfied\", \"satisfied\", \"neutral\", \"dissatisfied\" and \"Very dissatisfied\".\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "833bccd519cdefaadfc81e0c9a15f5fa1d6151d3", + "last": "ac246458a6712ce589580c4f4533000c5477d2ce" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 1 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ac246458a6712ce589580c4f4533000c5477d2ce/mobile/android/android-components/components/service/nimbus/metrics.yaml#L113", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "microsurvey_confirmation_shown": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905435" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D215259" + ], + "dates": { + "first": "2024-07-02 16:59:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Records that the confirmation message in the survey has been viewed by the user.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "survey_id": { + "description": "The id of the survey.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "7daab23f0aefafb636193765625b686959acdecc", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L168", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "microsurvey_dismiss_button_tapped": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905435" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D215259" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-02 16:59:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Records that the user tapped on the close button to dismiss the survey.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "survey_id": { + "description": "The id of the survey.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "7daab23f0aefafb636193765625b686959acdecc", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L150", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "microsurvey_privacy_notice_tapped": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905435" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D215259" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-02 16:59:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Records that the user tapped on the privacy notice.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "survey_id": { + "description": "The id of the survey.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "7daab23f0aefafb636193765625b686959acdecc", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L132", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "microsurvey_shown": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905435" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D215259" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-02 16:59:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The survey surface was shown and visible.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "survey_id": { + "description": "The id of the survey.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "7daab23f0aefafb636193765625b686959acdecc", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L114", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "microsurvey_submit_button_tapped": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1891509", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1895560" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1891509", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1895560" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-02 16:59:29", + "last": "2025-02-04 14:27:22" + }, + "description": "User response data for a micro survey.", + "disabled": false, + "expires": "never", + "extra_keys": { + "survey_id": { + "description": "The id of the survey.", + "type": "string" + }, + "user_selection": { + "description": "The users selected option. For example, possible values are:\n\"Very satisfied\", \"satisfied\", \"neutral\", \"dissatisfied\" and \"Very dissatisfied\".\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "7daab23f0aefafb636193765625b686959acdecc", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/mobile/android/android-components/components/service/nimbus/metrics.yaml#L184", + "type": "event", + "version": 0, + "repos": [ + "service-nimbus", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "a11y_always_underline_links": { + "bugs": [ + "https://bugzil.la/1835194" + ], + "data_reviews": [ + "https://bugzil.la/1835194" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Bool tracking if the user has always underline links enabled in firefox. This metric was generated to correspond to the Legacy Telemetry scalar a11y.always_underline_links.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "mreschenberg@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L14", + "telemetry_mirror": "A11Y_ALWAYS_UNDERLINE_LINKS", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_backplate": { + "bugs": [ + "https://bugzil.la/1539212" + ], + "data_reviews": [ + "https://bugzil.la/1539212" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Boolean tracking if the user has the backplate preference enabled or disabled. This metric was generated to correspond to the Legacy Telemetry scalar a11y.backplate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "mreschenberg@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L83", + "telemetry_mirror": "A11Y_BACKPLATE", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_consumers": { + "bucket_count": 12, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1382820", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1462238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1382820", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1462238" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A list of known accessibility clients that inject into Firefox process space (see https://searchfox.org/mozilla-central/source/accessible/windows/msaa/Compatibility.h).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram A11Y_CONSUMERS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "jteh@mozilla.com" + ], + "range_max": 11, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L158", + "telemetry_mirror": "A11Y_CONSUMERS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_hcm_background": { + "bugs": [ + "https://bugzil.la/1694717" + ], + "data_reviews": [ + "https://bugzil.la/1694717" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Unsigned int tracking the user's prefered background color \\ (logged when HCM is enabled). This metric was generated to correspond to the Legacy Telemetry scalar a11y.HCM_background.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "mreschenberg@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L47", + "telemetry_mirror": "A11Y_HCM_BACKGROUND", + "type": "quantity", + "unit": "nscolor", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_hcm_foreground": { + "bugs": [ + "https://bugzil.la/1694717" + ], + "data_reviews": [ + "https://bugzil.la/1694717" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Unsigned int tracking the user's prefered foreground color \\ (logged when HCM is enabled). This metric was generated to correspond to the Legacy Telemetry scalar a11y.HCM_foreground.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "mreschenberg@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L65", + "telemetry_mirror": "A11Y_HCM_FOREGROUND", + "type": "quantity", + "unit": "nscolor", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_instantiators": { + "bugs": [ + "https://bugzil.la/1323069", + "https://bugzil.la/1462238" + ], + "data_reviews": [ + "https://bugzil.la/1323069", + "https://bugzil.la/1462238" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The leaf name and version number of the binary for the process responsible for remotely instantiating a11y. This metric was generated to correspond to the Legacy Telemetry scalar a11y.instantiators.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "jteh@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L100", + "telemetry_mirror": "A11Y_INSTANTIATORS", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_invert_colors": { + "bugs": [ + "https://bugzil.la/1794626" + ], + "data_reviews": [ + "https://bugzil.la/1794626" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Boolean tracking if the user has an invert colors OS setting enabled. This metric was generated to correspond to the Legacy Telemetry scalar a11y.invert_colors.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "mreschenberg@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L119", + "telemetry_mirror": "A11Y_INVERT_COLORS", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_theme": { + "bugs": [ + "https://bugzil.la/1022528" + ], + "data_reviews": [ + "https://bugzil.la/1022528" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "OS high contrast or other accessibility theme is enabled. The result is split into keys which represent the values of browser.display.document_color_use: \"default\", \"always\", or \"never\". This metric was generated to correspond to the Legacy Telemetry scalar a11y.theme.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "default", + "always", + "never" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "eisaacson@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L136", + "telemetry_mirror": "A11Y_THEME", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_tree_update_timing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1424768" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1424768" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time taken to update the accessibility tree (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram A11Y_TREE_UPDATE_TIMING_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "asurkov@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L179", + "telemetry_mirror": "A11Y_TREE_UPDATE_TIMING_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "a11y_use_system_colors": { + "bugs": [ + "https://bugzil.la/1835194" + ], + "data_reviews": [ + "https://bugzil.la/1835194" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Bool tracking if the user has system colors enabled in firefox. This metric was generated to correspond to the Legacy Telemetry scalar a11y.use_system_colors.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Disability Access APIs" + ] + }, + "no_lint": [], + "notification_emails": [ + "accessibility@mozilla.com", + "mreschenberg@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/accessible/metrics.yaml#L31", + "telemetry_mirror": "A11Y_USE_SYSTEM_COLORS", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_dictionary": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#dictionary.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L597", + "telemetry_mirror": "Addonsmanager_Disable_Dictionary", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_extension": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#extension.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L498", + "telemetry_mirror": "Addonsmanager_Disable_Extension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_locale": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#locale.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L581", + "telemetry_mirror": "Addonsmanager_Disable_Locale", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_other": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#other.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L645", + "telemetry_mirror": "Addonsmanager_Disable_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_siteperm_deprecated": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#siteperm_deprecated.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L629", + "telemetry_mirror": "Addonsmanager_Disable_SitepermDeprecated", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_sitepermission": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#sitepermission.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L613", + "telemetry_mirror": "Addonsmanager_Disable_Sitepermission", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_theme": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#theme.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L565", + "telemetry_mirror": "Addonsmanager_Disable_Theme", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_disable_unknown": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.disable#unknown.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L661", + "telemetry_mirror": "Addonsmanager_Disable_Unknown", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_dictionary": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#dictionary.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L725", + "telemetry_mirror": "Addonsmanager_Enable_Dictionary", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_extension": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#extension.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L677", + "telemetry_mirror": "Addonsmanager_Enable_Extension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_locale": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#locale.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L709", + "telemetry_mirror": "Addonsmanager_Enable_Locale", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_other": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#other.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L773", + "telemetry_mirror": "Addonsmanager_Enable_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_siteperm_deprecated": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#siteperm_deprecated.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L757", + "telemetry_mirror": "Addonsmanager_Enable_SitepermDeprecated", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_sitepermission": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#sitepermission.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L741", + "telemetry_mirror": "Addonsmanager_Enable_Sitepermission", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_theme": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#theme.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L693", + "telemetry_mirror": "Addonsmanager_Enable_Theme", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_enable_unknown": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.enable#unknown.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L789", + "telemetry_mirror": "Addonsmanager_Enable_Unknown", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install": { + "bugs": [ + "https://bugzilla.mozilla.org/1433335", + "https://bugzilla.mozilla.org/1515697", + "https://bugzilla.mozilla.org/1523641", + "https://bugzilla.mozilla.org/1549770", + "https://bugzilla.mozilla.org/1590736", + "https://bugzilla.mozilla.org/1630596", + "https://bugzilla.mozilla.org/1672570", + "https://bugzilla.mozilla.org/1714251", + "https://bugzilla.mozilla.org/1749878", + "https://bugzilla.mozilla.org/1781974", + "https://bugzilla.mozilla.org/1817100", + "https://bugzilla.mozilla.org/1820153", + "https://bugzilla.mozilla.org/1912166" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1433335#c8", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820153#c3" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-11-27 16:55:09", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for\nextensions and themes.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "Id of the addon (when available).", + "type": "string" + }, + "addon_type": { + "description": "Addon type, one of: extension, theme, locale, dictionary,\nsitepermission, siteperm_deprecated, other, unknown.\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download.", + "type": "quantity" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_id": { + "description": "Shared by events related to the same install or update flow.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in\nthe addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the\nextension permission doorhanger.\n", + "type": "quantity" + }, + "source": { + "description": "The source that originally triggered the installation, one\nof: \"about:addons\", \"about:debugging\", \"about:preferences\",\n\"amo\", \"browser-import\", \"disco\", \"distribution\",\n\"extension\", \"enterprise-policy\", \"file-url\",\n\"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\",\n\"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\",\n\"temporary-addon\", \"unknown\", \"about:editprofile\", \"about:newprofile\".\nFor events with method set to \"sideload\", the source value\nis derived from the XPIProvider location name (e.g. possible\nvalues are \"app-builtin\", \"app-global\", \"app-profile\",\n\"app-system-addons\", \"app-system-defaults\",\n\"app-system-local\", \"app-system-profile\",\n\"app-system-share\", \"app-system-user\", \"winreg-app-user\",\n\"winreg-app-gobal\").\n", + "type": "string" + }, + "source_method": { + "description": "The method used by the source to install the add-on\n(included when the source can use more than one, e.g.\ninstall events with source \"about:addons\" may have\n\"install-from-file\" or \"url\" as method), one of: \"amWebAPI\",\n\"drag-and-drop\", \"installTrigger\", \"install-from-file\",\n\"link\", \"management-webext-api\", \"sideload\", \"onboarding\",\n\"synthetic-install\", \"url\", \"product-updates\".\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow: started,\npostponed, cancelled, failed, permissions_prompt, completed,\nsite_warning, site_blocked,install_disabled_warning,\ndownload_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or\nthe application (\"app\" / \"user\").\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "61939160599138c8f9340e562d3b233771a70f29", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L13", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_dictionary": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#dictionary.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L141", + "telemetry_mirror": "Addonsmanager_Install_Dictionary", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_extension": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#extension.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L25", + "telemetry_mirror": "Addonsmanager_Install_Extension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_locale": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#locale.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L126", + "telemetry_mirror": "Addonsmanager_Install_Locale", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_other": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#other.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L186", + "telemetry_mirror": "Addonsmanager_Install_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_siteperm_deprecated": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#siteperm_deprecated.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L171", + "telemetry_mirror": "Addonsmanager_Install_SitepermDeprecated", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_sitepermission": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#sitepermission.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L156", + "telemetry_mirror": "Addonsmanager_Install_Sitepermission", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats": { + "bugs": [ + "https://bugzilla.mozilla.org/1653020", + "https://bugzilla.mozilla.org/1699225", + "https://bugzilla.mozilla.org/1820153" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653020#c6", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820153#c3" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only\nwhen the source that originally triggered the add-on installation\nis \"amo\", \"rtamo\" or \"disco\".\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "Id of the addon.", + "type": "string" + }, + "addon_type": { + "description": "Type of the add-on.", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the\ndiscovery addon. When available it is going to be a string\nset to \"1\" for TAAR based recommendations, \"0\" for manually\ncurated and unset if not relevant for the particular\ninstall flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that\ndrives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the\ninstall page (such as an A/B test, a website banner, or a\nspecific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives\ntraffic to the install page.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L113", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_dictionary": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#dictionary.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L418", + "telemetry_mirror": "Addonsmanager_InstallStats_Dictionary", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_extension": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#extension.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L336", + "telemetry_mirror": "Addonsmanager_InstallStats_Extension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_locale": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#locale.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L402", + "telemetry_mirror": "Addonsmanager_InstallStats_Locale", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_other": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#other.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L466", + "telemetry_mirror": "Addonsmanager_InstallStats_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_siteperm_deprecated": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#siteperm_deprecated.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L450", + "telemetry_mirror": "Addonsmanager_InstallStats_SitepermDeprecated", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_sitepermission": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#sitepermission.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L434", + "telemetry_mirror": "Addonsmanager_InstallStats_Sitepermission", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_theme": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#theme.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L386", + "telemetry_mirror": "Addonsmanager_InstallStats_Theme", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_stats_unknown": { + "bugs": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "data_reviews": [ + "https://bugzil.la/1653020", + "https://bugzil.la/1699225" + ], + "dates": { + "first": "2024-10-14 00:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded at the end of the install flow, but only when the source that originally triggered the add-on installation is \"amo\", \"rtamo\" or \"disco\". The value of an event is the SHA256 hash of the addon_id. This event was generated to correspond to the Legacy Telemetry event addonsManager.install_stats#unknown.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_id": { + "description": "A string which identifies the add-on. This value might be trimmed.\n", + "type": "string" + }, + "taar_based": { + "description": "This extra key is only set for install flows related to the discovery addon. When available it is going to be a string set to \"1\" for TAAR based recommendations, \"0\" for manually curated and unset if not relevant for the particular install flow.\n", + "type": "string" + }, + "utm_campaign": { + "description": "The specific product promotion or strategic campaign that drives traffic to the install page.\n", + "type": "string" + }, + "utm_content": { + "description": "The specific item that a person clicks on to access the install page (such as an A/B test, a website banner, or a specific ad).\n", + "type": "string" + }, + "utm_medium": { + "description": "The channel used to share the install page.\n", + "type": "string" + }, + "utm_source": { + "description": "The name of the product, domain of the website that drives traffic to the install page.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "23fe91e199026bf64f33e9169cf56a5f048df27a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L482", + "telemetry_mirror": "Addonsmanager_InstallStats_Unknown", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_theme": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#theme.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L111", + "telemetry_mirror": "Addonsmanager_Install_Theme", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_install_unknown": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.install#unknown.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L201", + "telemetry_mirror": "Addonsmanager_Install_Unknown", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_manage": { + "bugs": [ + "https://bugzilla.mozilla.org/1433335", + "https://bugzilla.mozilla.org/1515697", + "https://bugzilla.mozilla.org/1523641", + "https://bugzilla.mozilla.org/1549770", + "https://bugzilla.mozilla.org/1590736", + "https://bugzilla.mozilla.org/1630596", + "https://bugzilla.mozilla.org/1672570", + "https://bugzilla.mozilla.org/1714251", + "https://bugzilla.mozilla.org/1749878", + "https://bugzilla.mozilla.org/1781974", + "https://bugzilla.mozilla.org/1817100", + "https://bugzilla.mozilla.org/1820153", + "https://bugzilla.mozilla.org/1912166", + "https://bugzilla.mozilla.org/1917859" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1433335#c8", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820153#c3", + "https://phabricator.services.mozilla.com/D224982" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being\ndisable/enabled/uninstalled.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "Id of the addon being managed.", + "type": "string" + }, + "addon_type": { + "description": "The type of the add-on being managed.", + "type": "string" + }, + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "One of: disable, enable, sideload_prompt, uninstall.\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the\nextension permission doorhanger.\n", + "type": "quantity" + }, + "source": { + "description": "The source from which the addon has been installed.\nSee extra_keys.source description from install event.\n", + "type": "string" + }, + "source_method": { + "description": "The method used by the source to install the add-on\n(included when the source can use more than one, e.g.\ninstall events with source \"about:addons\" may have\n\"install-from-file\" or \"url\" as method).\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L166", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_report": { + "bugs": [ + "https://bugzilla.mozilla.org/1544927", + "https://bugzilla.mozilla.org/1580561", + "https://bugzilla.mozilla.org/1590736", + "https://bugzilla.mozilla.org/1630596", + "https://bugzilla.mozilla.org/1672570", + "https://bugzilla.mozilla.org/1714251", + "https://bugzilla.mozilla.org/1749878", + "https://bugzilla.mozilla.org/1780746", + "https://bugzilla.mozilla.org/1781974", + "https://bugzilla.mozilla.org/1817100", + "https://bugzilla.mozilla.org/1820153" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820153#c3" + ], + "dates": { + "first": "2023-11-11 01:25:58", + "last": "2024-04-29 00:22:36" + }, + "description": "An abuse report submitted by a user for a given extension.", + "disabled": false, + "expires": 132, + "extra_keys": { + "addon_id": { + "description": "Id of the addon being reported.", + "type": "string" + }, + "addon_type": { + "description": "The type of the add-on being reported (missing on\nERROR_ADDON_NOT_FOUND, ERROR_AMODETAILS_NOTFOUND\nand ERROR_AMODETAILS_FAILURE).\n", + "type": "string" + }, + "entry_point": { + "description": "Report entry point, one of: amo, menu,\ntoolbar_context_menu, unified_context_menu, uninstall.\n", + "type": "string" + }, + "error_type": { + "description": "AbuseReport Error Type (included in case of submission\nfailures). The error types include ERROR_ABORTED_SUBMIT,\nERROR_ADDON_NOT_FOUND, ERROR_CLIENT, ERROR_NETWORK,\nERROR_UNKNOWN, ERROR_RECENT_SUBMIT, ERROR_SERVER,\nERROR_AMODETAILS_NOTFOUND, ERROR_AMODETAILS_FAILURE.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5b3d25d18056b61699ae1dbd141ab76c907cfbb2", + "last": "45052e07d9b7d0f9cd7d696570d7d8ff2dc35db4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/45052e07d9b7d0f9cd7d696570d7d8ff2dc35db4/toolkit/mozapps/extensions/metrics.yaml#L211", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_report_suspicious_site": { + "bugs": [ + "https://bugzilla.mozilla.org/1806056", + "https://bugzilla.mozilla.org/1817100", + "https://bugzilla.mozilla.org/1820153", + "https://bugzilla.mozilla.org/1912166" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1806056#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820153#c3" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when a user clicks \"Report Suspicious Site\" on the dropdown\nmenu of the third-party xpinstall doorhanger.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "suspicious_site": { + "description": "The domain of the site that was reported.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L229", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_dictionary": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#dictionary.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L853", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_Dictionary", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_extension": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#extension.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L805", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_Extension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_locale": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#locale.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L837", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_Locale", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_other": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#other.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L901", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_siteperm_deprecated": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#siteperm_deprecated.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L885", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_SitepermDeprecated", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_sitepermission": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#sitepermission.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L869", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_Sitepermission", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_theme": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#theme.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L821", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_Theme", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_sideload_prompt_unknown": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.sideload_prompt#unknown.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L917", + "telemetry_mirror": "Addonsmanager_SideloadPrompt_Unknown", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_dictionary": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#dictionary.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L981", + "telemetry_mirror": "Addonsmanager_Uninstall_Dictionary", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_extension": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#extension.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L933", + "telemetry_mirror": "Addonsmanager_Uninstall_Extension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_locale": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#locale.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L965", + "telemetry_mirror": "Addonsmanager_Uninstall_Locale", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_other": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#other.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L1029", + "telemetry_mirror": "Addonsmanager_Uninstall_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_siteperm_deprecated": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#siteperm_deprecated.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L1013", + "telemetry_mirror": "Addonsmanager_Uninstall_SitepermDeprecated", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_sitepermission": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#sitepermission.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L997", + "telemetry_mirror": "Addonsmanager_Uninstall_Sitepermission", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_theme": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#theme.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L949", + "telemetry_mirror": "Addonsmanager_Uninstall_Theme", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_uninstall_unknown": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166", + "https://bugzil.la/1917859" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "This events are recorded when an installed add-ons is being disable/enabled/uninstalled, the value of the event is the addon_id (which also allow to correlate multiple events related to each other). This event was generated to correspond to the Legacy Telemetry event addonsManager.uninstall#unknown.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "blocklist_state": { + "description": "The add-on blocklistState (0 not-blocked, 1 soft-blocked, 2\nhard-blocked) at the time the manage event was being collected.\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method).\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source from which the addon has been installed (See extra_keys.source description from addonsManager.install telemetry event definition).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L1045", + "telemetry_mirror": "Addonsmanager_Uninstall_Unknown", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update": { + "bugs": [ + "https://bugzilla.mozilla.org/1433335", + "https://bugzilla.mozilla.org/1515697", + "https://bugzilla.mozilla.org/1523641", + "https://bugzilla.mozilla.org/1549770", + "https://bugzilla.mozilla.org/1590736", + "https://bugzilla.mozilla.org/1630596", + "https://bugzilla.mozilla.org/1672570", + "https://bugzilla.mozilla.org/1714251", + "https://bugzilla.mozilla.org/1749878", + "https://bugzilla.mozilla.org/1781974", + "https://bugzilla.mozilla.org/1817100", + "https://bugzilla.mozilla.org/1820153", + "https://bugzilla.mozilla.org/1912166" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1433335#c8", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820153#c3" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-11-27 16:55:09", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for\nextensions and themes.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "Id of the addon (when available).", + "type": "string" + }, + "addon_type": { + "description": "Addon type, one of: extension, theme, locale, dictionary,\nsitepermission, siteperm_deprecated, other, unknown.\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download.", + "type": "quantity" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_id": { + "description": "Shared by events related to the same install or update flow.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in\nthe addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the\nextension permission doorhanger.\n", + "type": "quantity" + }, + "source": { + "description": "The source that originally triggered the installation, one\nof: \"about:addons\", \"about:debugging\", \"about:preferences\",\n\"amo\", \"browser-import\", \"disco\", \"distribution\",\n\"extension\", \"enterprise-policy\", \"file-url\",\n\"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\",\n\"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\",\n\"temporary-addon\", \"unknown\", \"about:editprofile\", \"about:newprofile\".\nFor events with method set to \"sideload\", the source value\nis derived from the XPIProvider location name (e.g. possible\nvalues are \"app-builtin\", \"app-global\", \"app-profile\",\n\"app-system-addons\", \"app-system-defaults\",\n\"app-system-local\", \"app-system-profile\",\n\"app-system-share\", \"app-system-user\", \"winreg-app-user\",\n\"winreg-app-gobal\").\n", + "type": "string" + }, + "source_method": { + "description": "The method used by the source to install the add-on\n(included when the source can use more than one, e.g.\ninstall events with source \"about:addons\" may have\n\"install-from-file\" or \"url\" as method), one of: \"amWebAPI\",\n\"drag-and-drop\", \"installTrigger\", \"install-from-file\",\n\"link\", \"management-webext-api\", \"sideload\", \"onboarding\",\n\"synthetic-install\", \"url\", \"product-updates\".\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow: started,\npostponed, cancelled, failed, permissions_prompt, completed,\nsite_warning, site_blocked,install_disabled_warning,\ndownload_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or\nthe application (\"app\" / \"user\").\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "61939160599138c8f9340e562d3b233771a70f29", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L13", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_dictionary": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#dictionary.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L261", + "telemetry_mirror": "Addonsmanager_Update_Dictionary", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_extension": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#extension.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L216", + "telemetry_mirror": "Addonsmanager_Update_Extension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_locale": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#locale.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L246", + "telemetry_mirror": "Addonsmanager_Update_Locale", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_other": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#other.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L306", + "telemetry_mirror": "Addonsmanager_Update_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_siteperm_deprecated": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#siteperm_deprecated.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L291", + "telemetry_mirror": "Addonsmanager_Update_SitepermDeprecated", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_sitepermission": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#sitepermission.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L276", + "telemetry_mirror": "Addonsmanager_Update_Sitepermission", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_theme": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#theme.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L231", + "telemetry_mirror": "Addonsmanager_Update_Theme", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "addons_manager_update_unknown": { + "bugs": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "data_reviews": [ + "https://bugzil.la/1433335", + "https://bugzil.la/1515697", + "https://bugzil.la/1523641", + "https://bugzil.la/1549770", + "https://bugzil.la/1590736", + "https://bugzil.la/1630596", + "https://bugzil.la/1672570", + "https://bugzil.la/1714251", + "https://bugzil.la/1749878", + "https://bugzil.la/1781974", + "https://bugzil.la/1817100", + "https://bugzil.la/1861295", + "https://bugzil.la/1912166" + ], + "dates": { + "first": "2024-10-23 00:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are recorded during the install and update flow for extensions and themes, the value of the event is an install_id shared by the events related to the same install or update flow. This event was generated to correspond to the Legacy Telemetry event addonsManager.update#unknown.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "A string which identify the extension (when available)\n", + "type": "string" + }, + "download_time": { + "description": "The number of ms needed to complete the download\n", + "type": "string" + }, + "error": { + "description": "The AddonManager error related to an install or update failure.\n", + "type": "string" + }, + "install_origins": { + "description": "This flag indicates whether install_origins is defined in the addon manifest. (\"1\" / \"0\")\n", + "type": "string" + }, + "method": { + "description": "The method used by the source to install the add-on (included when the source can use more than one, e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"url\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"onboarding\", \"synthetic-install\", \"url\", \"product-updates\". e.g. install events with source \"about:addons\" may have \"install-from-file\" or \"drag-and-drop\" as method), one of \"amWebAPI\", \"drag-and-drop\", \"installTrigger\", \"install-from-file\", \"link\", \"management-webext-api\", \"sideload\", \"synthetic-install\", \"url\", \"product-updates\", \"manager\".\n", + "type": "string" + }, + "num_strings": { + "description": "The number of permission description strings in the extension permission doorhanger\n", + "type": "string" + }, + "source": { + "description": "The source that originally triggered the add-on installation, one of \"about:addons\", \"about:debugging\", \"about:preferences\", \"amo\", \"browser-import\", \"disco\", \"distribution\", \"extension\", \"enterprise-policy\", \"file-url\", \"geckoview-app\", \"gmp-plugin\", \"internal\", \"plugin\", \"rtamo\", \"siteperm-addon-provider\" \"sync\", \"system-addon\", \"temporary-addon\", \"unknown\". For events with method set to \"sideload\", the source value is derived from the XPIProvider location name (e.g. possible values are \"app-builtin\", \"app-global\", \"app-profile\", \"app-system-addons\", \"app-system-defaults\", \"app-system-local\", \"app-system-profile\", \"app-system-share\", \"app-system-user\", \"winreg-app-user\", \"winreg-app-gobal\")\n", + "type": "string" + }, + "step": { + "description": "The current step in the install or update flow:\n - started, postponed, cancelled, failed, permissions_prompt, completed\n - site_warning, site_blocked, install_disabled_warning\n - download_started, download_completed, download_failed\n", + "type": "string" + }, + "updated_from": { + "description": "Determine if an update has been requested by the user or the application (\"app\" / \"user\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5aabbee862dfb26fde7ed6a22e30f0ab12a61269", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics_legacy.yaml#L321", + "telemetry_mirror": "Addonsmanager_Update_Unknown", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_add_manage": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for address autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event address.add#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L735", + "telemetry_mirror": "Address_Add_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_cancel_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.cancel#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L545", + "telemetry_mirror": "Address_Cancel_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_cancel_edit_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.cancel#edit_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L573", + "telemetry_mirror": "Address_Cancel_EditDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_cancel_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.cancel#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L559", + "telemetry_mirror": "Address_Cancel_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_cleared_address_form": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is cleared. Using field_name to record the field that triggers this event\nThis event was generated to correspond to the Legacy Telemetry event address.cleared#address_form.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "field_name": { + "description": "Name of the field being affected by the method\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1033", + "telemetry_mirror": "Address_Cleared_AddressForm", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_delete_manage": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for address autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event address.delete#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L748", + "telemetry_mirror": "Address_Delete_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_detected_address_form": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is recognized as an address form. The possible values in the extra_keys are \"true\", \"false\", or 0. When the value is \"true\", the field is identified via autocomplete attribute. When the value is \"false\", the field is not detected in the form. When the value is an 0, then the field is identified by regexp-based heuristic.\nThis event was generated to correspond to the Legacy Telemetry event address.detected#address_form.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "address_level1": { + "description": "address_level1 result\n", + "type": "string" + }, + "address_level2": { + "description": "address_level2 result\n", + "type": "string" + }, + "address_line1": { + "description": "address_line1 result\n", + "type": "string" + }, + "address_line2": { + "description": "address_line2 result\n", + "type": "string" + }, + "address_line3": { + "description": "address_line3 result\n", + "type": "string" + }, + "country": { + "description": "country result\n", + "type": "string" + }, + "postal_code": { + "description": "postal_code result\n", + "type": "string" + }, + "street_address": { + "description": "street address result\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L787", + "telemetry_mirror": "Address_Detected_AddressForm", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_detected_address_form_ext": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Address has too many fields so we cannot cover them all in the above `address_form` telemetry This telemetry is used to record address fields that are not listed in `address_form` This event was generated to correspond to the Legacy Telemetry event address.detected#address_form_ext.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "additional_name": { + "description": "additional_name\n", + "type": "string" + }, + "email": { + "description": "email\n", + "type": "string" + }, + "family_name": { + "description": "family_name\n", + "type": "string" + }, + "given_name": { + "description": "give_name\n", + "type": "string" + }, + "name": { + "description": "name\n", + "type": "string" + }, + "organization": { + "description": "organization\n", + "type": "string" + }, + "tel": { + "description": "telephone\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1057", + "telemetry_mirror": "Address_Detected_AddressFormExt", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_disable_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.disable#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L587", + "telemetry_mirror": "Address_Disable_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_disable_edit_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.disable#edit_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L615", + "telemetry_mirror": "Address_Disable_EditDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_disable_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.disable#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L601", + "telemetry_mirror": "Address_Disable_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_edit_manage": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for address autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event address.edit#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L774", + "telemetry_mirror": "Address_Edit_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_filled_address_form": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is autofiled. Possible values are `filled`, `not_filled`, `user_filled` or `unavailable`.\nThis event was generated to correspond to the Legacy Telemetry event address.filled#address_form.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "address_level1": { + "description": "address_level1 result\n", + "type": "string" + }, + "address_level2": { + "description": "address_level2 result\n", + "type": "string" + }, + "address_line1": { + "description": "address_line1 result\n", + "type": "string" + }, + "address_line2": { + "description": "address_line2 result\n", + "type": "string" + }, + "address_line3": { + "description": "address_line3 result\n", + "type": "string" + }, + "country": { + "description": "country result\n", + "type": "string" + }, + "postal_code": { + "description": "postal_code result\n", + "type": "string" + }, + "street_address": { + "description": "street address result\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L871", + "telemetry_mirror": "Address_Filled_AddressForm", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_filled_address_form_ext": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Address has too many fields so we cannot cover them all in the above `address_form` telemetry This telemetry is used to record address fields that are not listed in `address_form` This event was generated to correspond to the Legacy Telemetry event address.filled#address_form_ext.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "additional_name": { + "description": "additional_name\n", + "type": "string" + }, + "email": { + "description": "email\n", + "type": "string" + }, + "family_name": { + "description": "family_name\n", + "type": "string" + }, + "given_name": { + "description": "give_name\n", + "type": "string" + }, + "name": { + "description": "name\n", + "type": "string" + }, + "organization": { + "description": "organization\n", + "type": "string" + }, + "tel": { + "description": "telephone\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1110", + "telemetry_mirror": "Address_Filled_AddressFormExt", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_filled_modified_address_form": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a field is autofilled and then modified by the user. Using field_name to record the field that triggers this event.\nThis event was generated to correspond to the Legacy Telemetry event address.filled_modified#address_form.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "address_level1": { + "description": "address_level1 result\n", + "type": "string" + }, + "address_level2": { + "description": "address_level2 result\n", + "type": "string" + }, + "address_line1": { + "description": "address_line1 result\n", + "type": "string" + }, + "address_line2": { + "description": "address_line2 result\n", + "type": "string" + }, + "address_line3": { + "description": "address_line3 result\n", + "type": "string" + }, + "country": { + "description": "country result\n", + "type": "string" + }, + "field_name": { + "description": "Name of the field being affected by the method\n", + "type": "string" + }, + "postal_code": { + "description": "postal_code result\n", + "type": "string" + }, + "street_address": { + "description": "street address result\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L923", + "telemetry_mirror": "Address_FilledModified_AddressForm", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_learn_more_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.learn_more#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L671", + "telemetry_mirror": "Address_LearnMore_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_learn_more_edit_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.learn_more#edit_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L699", + "telemetry_mirror": "Address_LearnMore_EditDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_learn_more_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.learn_more#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L685", + "telemetry_mirror": "Address_LearnMore_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_popup_shown_address_form": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when autofill popup is shown. Using field_name to record the field that triggers this event.\nThis event was generated to correspond to the Legacy Telemetry event address.popup_shown#address_form.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "field_name": { + "description": "Name of the field being affected by the method, filled when method is `popup_shown` or `filled_modified`.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L847", + "telemetry_mirror": "Address_PopupShown_AddressForm", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_pref_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.pref#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L629", + "telemetry_mirror": "Address_Pref_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_pref_edit_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.pref#edit_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L657", + "telemetry_mirror": "Address_Pref_EditDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_pref_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.pref#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L643", + "telemetry_mirror": "Address_Pref_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_save_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.save#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L461", + "telemetry_mirror": "Address_Save_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_save_edit_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.save#edit_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L489", + "telemetry_mirror": "Address_Save_EditDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_save_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.save#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L475", + "telemetry_mirror": "Address_Save_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_show_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.show#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L409", + "telemetry_mirror": "Address_Show_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_show_edit_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.show#edit_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L447", + "telemetry_mirror": "Address_Show_EditDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_show_entry_manage": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for address autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event address.show_entry#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L761", + "telemetry_mirror": "Address_ShowEntry_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_show_manage": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for address autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event address.show#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L713", + "telemetry_mirror": "Address_Show_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_show_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.show#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L433", + "telemetry_mirror": "Address_Show_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_submitted_address_form": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is submitted. Possible values are `autofilled`, `not_filled`, `user_filled` or `unavailable`.\nThis event was generated to correspond to the Legacy Telemetry event address.submitted#address_form.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "address_level1": { + "description": "address_level1 result\n", + "type": "string" + }, + "address_level2": { + "description": "address_level2 result\n", + "type": "string" + }, + "address_line1": { + "description": "address_line1 result\n", + "type": "string" + }, + "address_line2": { + "description": "address_line2 result\n", + "type": "string" + }, + "address_line3": { + "description": "address_line3 result\n", + "type": "string" + }, + "country": { + "description": "country result\n", + "type": "string" + }, + "postal_code": { + "description": "postal_code result\n", + "type": "string" + }, + "street_address": { + "description": "street address result\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L980", + "telemetry_mirror": "Address_Submitted_AddressForm", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_submitted_address_form_ext": { + "bugs": [ + "https://bugzil.la/1804901" + ], + "data_reviews": [ + "https://bugzil.la/1804901" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Address has too many fields so we cannot cover them all in the above `address_form` telemetry This telemetry is used to record address fields that are not listed in `address_form` This event was generated to correspond to the Legacy Telemetry event address.submitted#address_form_ext.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "additional_name": { + "description": "additional_name\n", + "type": "string" + }, + "email": { + "description": "email\n", + "type": "string" + }, + "family_name": { + "description": "family_name\n", + "type": "string" + }, + "given_name": { + "description": "give_name\n", + "type": "string" + }, + "name": { + "description": "name\n", + "type": "string" + }, + "organization": { + "description": "organization\n", + "type": "string" + }, + "tel": { + "description": "telephone\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1125", + "telemetry_mirror": "Address_Submitted_AddressFormExt", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_update_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.update#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L503", + "telemetry_mirror": "Address_Update_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_update_edit_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.update#edit_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L531", + "telemetry_mirror": "Address_Update_EditDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "address_update_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser address autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event address.update#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L517", + "telemetry_mirror": "Address_Update_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_binary_archive": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1480639", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1480639", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a binary file examined by download protection is one of the common archive formats.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram APPLICATION_REPUTATION_BINARY_ARCHIVE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "OtherBinaryFile", + "DmgFile", + "RarFile", + "ZipFile" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L38", + "telemetry_mirror": "h#APPLICATION_REPUTATION_BINARY_ARCHIVE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_binary_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=156404" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=156404" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether or not the file examined by download protection is a binary type (or it's not possible to tell because the filename is missing).\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram APPLICATION_REPUTATION_BINARY_TYPE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "BinaryFile", + "NonBinaryFile", + "MozNonBinaryFile", + "UnknownFile", + "MissingFilename" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L14", + "telemetry_mirror": "h#APPLICATION_REPUTATION_BINARY_TYPE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_local": { + "bucket_count": 4, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Application reputation local results (0=ALLOW, 1=BLOCK, 2=NONE)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram APPLICATION_REPUTATION_LOCAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 3, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L84", + "telemetry_mirror": "APPLICATION_REPUTATION_LOCAL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1500360" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1500360" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "The reason application reputation service blocks or allows the download.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram APPLICATION_REPUTATION_REASON.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "NotSet", + "LocalWhitelist", + "LocalBlocklist", + "NonBinaryFile", + "VerdictSafe", + "VerdictUnknown", + "VerdictDangerous", + "VerdictDangerousHost", + "VerdictUnwanted", + "VerdictUncommon", + "VerdictUnrecognized", + "DangerousPrefOff", + "DangerousHostPrefOff", + "UnwantedPrefOff", + "UncommonPrefOff", + "NetworkError", + "RemoteLookupDisabled", + "InternalError", + "DPDisabled" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L243", + "telemetry_mirror": "h#APPLICATION_REPUTATION_REASON", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_remote_lookup_response_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1479898" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1479898" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Server response time to remote lookup request (ms).\nThis metric was generated to correspond to the Legacy Telemetry linear histogram APPLICATION_REPUTATION_REMOTE_LOOKUP_RESPONSE_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L202", + "telemetry_mirror": "APPLICATION_REPUTATION_REMOTE_LOOKUP_RESPONSE_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_remote_lookup_timeout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1172689", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1172689", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when application reputation remote lookup is performed, `true` is recorded if the lookup times out.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram APPLICATION_REPUTATION_REMOTE_LOOKUP_TIMEOUT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L220", + "telemetry_mirror": "h#APPLICATION_REPUTATION_REMOTE_LOOKUP_TIMEOUT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_server": { + "bucket_count": 4, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Status of the application reputation remote lookup (0=OK, 1=failed, 2=invalid protobuf response)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram APPLICATION_REPUTATION_SERVER.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 3, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L105", + "telemetry_mirror": "APPLICATION_REPUTATION_SERVER", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_server_2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1479901" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1479901" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Network status of the application reputation remote lookup\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram APPLICATION_REPUTATION_SERVER_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ErrOthers", + "ResponseValid", + "FailGetChannel", + "FailGetResponse", + "HTTP1xx", + "HTTP2xx", + "HTTP204", + "HTTP3xx", + "HTTP400", + "HTTP4xx", + "HTTP403", + "HTTP404", + "HTTP408", + "HTTP413", + "HTTP5xx", + "HTTP502_504_511", + "HTTP503", + "HTTP505", + "HTTPOthers", + "ErrAlreadyConnected", + "ErrNotConnected", + "ErrConnectionRefused", + "ErrNetTimeout", + "ErrOffline", + "ErrPortAccess", + "ErrNetReset", + "ErrNetInterrupt", + "ErrProxyConnection", + "ErrNetPartial", + "ErrNetInadequate", + "ErrUnknownHost", + "ErrDNSLookupQueue", + "ErrUnknownProxyHost" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L127", + "telemetry_mirror": "h#APPLICATION_REPUTATION_SERVER_2", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_server_verdict": { + "bucket_count": 9, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1272788", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1272788", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Application reputation remote verdict (0=SAFE, 1=DANGEROUS, 2=UNCOMMON, 3=POTENTIALLY_UNWANTED, 4=DANGEROUS_HOST, 5=UNKNOWN)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram APPLICATION_REPUTATION_SERVER_VERDICT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 8, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L178", + "telemetry_mirror": "APPLICATION_REPUTATION_SERVER_VERDICT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "application_reputation_should_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-27 00:42:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Overall (local or remote) application reputation verdict (shouldBlock=false is OK).\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram APPLICATION_REPUTATION_SHOULD_BLOCK.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ca0048eb3ba971dfba187999114f85afaf51f795", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reputationservice/metrics.yaml#L63", + "telemetry_mirror": "h#APPLICATION_REPUTATION_SHOULD_BLOCK", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "apz_scrollwheel_overshoot": { + "bugs": [ + "https://bugzil.la/1836870" + ], + "data_reviews": [ + "https://bugzil.la/1836870" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2024-10-17 00:04:19" + }, + "description": "Count of overshoot events, where the user reverses scrollwheel direction soon after the last scrollwheel input. This metric was generated to correspond to the Legacy Telemetry scalar apz.scrollwheel_overshoot.\n", + "disabled": false, + "expires": 134, + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "bc0f7c10528a29091887358beb7d31fa13572d73" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "botond@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/bc0f7c10528a29091887358beb7d31fa13572d73/gfx/metrics.yaml#L1064", + "telemetry_mirror": "APZ_SCROLLWHEEL_OVERSHOOT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "avif_dav1d_get_picture_return_value": { + "bugs": [ + "https://bugzil.la/1690406" + ], + "data_reviews": [ + "https://bugzil.la/1690406" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "Return value from dav1d_get_picture This event was generated to correspond to the Legacy Telemetry event avif.dav1d_get_picture#return_value.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The `Dav1dResult` returned from `dav1d_get_picture(...)`.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L442", + "telemetry_mirror": "Avif_Dav1dGetPicture_ReturnValue", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bfcache_combo": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531917" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531917" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The common combinations of BFCacheStatus when we determine whether the page can be BFCached or not; If it's BFCached, we record BFCache_Success; Success_Not_Toplevel represents the number of not the only top level document in BrowsingContextGroup's documents that are BFCached, and BFCache_Success includes Success_Not_Toplevel; If it's not and it falls under common failure reasons combinations, we record the corresponding combination; Otherwise, we record Other to indicate this is not a common failure\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram BFCACHE_COMBO.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "BFCache_Success", + "Success_Not_Toplevel", + "Unload", + "Unload_Req", + "Req", + "Unload_Req_Peer", + "Unload_Req_Peer_MSE", + "Unload_Req_MSE", + "SPD_Unload_Req_Peer", + "Remote_Subframes", + "Beforeunload", + "Other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Navigation" + ] + }, + "no_lint": [], + "notification_emails": [ + "sefeng@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/docshell/base/metrics.yaml#L32", + "telemetry_mirror": "h#BFCACHE_COMBO", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bfcache_page_restored": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531917", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1551935" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531917", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1551935" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether bfcache is used when loading a page from session history\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram BFCACHE_PAGE_RESTORED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Navigation" + ] + }, + "no_lint": [], + "notification_emails": [ + "sefeng@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/docshell/base/metrics.yaml#L68", + "telemetry_mirror": "h#BFCACHE_PAGE_RESTORED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bloburl_resolve_stopped": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1843158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1843158" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-08-30 01:42:23", + "last": "2024-03-22 05:33:36" + }, + "description": "Counts how many times we do not resolve a blob URL because of different partition keys\n", + "disabled": false, + "expires": 127, + "gecko_datapoint": "", + "git-commits": { + "first": "c3b462663f7d45d2d1fc91374a68856b484a9a29", + "last": "2537e5eaafaab9a7ef6be5cfc8e9b1e2c747fdfd" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "amadan@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/2537e5eaafaab9a7ef6be5cfc8e9b1e2c747fdfd/dom/metrics.yaml#L120", + "telemetry_mirror": "BLOBURL_RESOLVE_STOPPED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_addon_block_change": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662857", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1730037", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763529", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820155", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917859" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662857#c11", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917859#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "An add-on is blocked, or an installed add-on is unblocked. When an add-on install/update is blocked, its installation is aborted and the add-on is no longer listed in the activeAddons field of TelemetryEnvironment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addon_version": { + "description": "Version of the add-on. Used together with an add-on's ID (value) to identify add-ons to block.\n", + "type": "string" + }, + "blocklist_state": { + "description": "The blocklistState of the add-on. 0 is unblocked, 1 is soft blocked and 2 is hard blocked.\n", + "type": "string" + }, + "hours_since": { + "description": "The number of hours that have passed since this version of This field is missing (0) for \"addon_update_check\".\n", + "type": "string" + }, + "mlbf_generation": { + "description": "The generation time to identify the bloomfilter that was used for this blocklist decision. The bloomfilter is updated less frequently than the so-called stashes in the RemoteSettings collection that holds the blocklist data. The stashes take precedence over the bloomfilter in blocklist decisions. Time generated by AMO when the blocklist entry was created. May be 0 when the blocklist is disabled.\n", + "type": "string" + }, + "mlbf_last_time": { + "description": "The generation time of the most recent entry in the blocklist. Time generated by AMO when the blocklist entry was created. May be 0 when the blocklist is disabled.\n", + "type": "string" + }, + "mlbf_softblocks_generation": { + "description": "Same as mlbf_generation but for the separate softblocks bloomfilter attachment.\n", + "type": "string" + }, + "mlbf_softblocks_source": { + "description": "Same as mlbf_source but for the separate softblocks bloomfilter attachment.\n", + "type": "string" + }, + "mlbf_source": { + "description": "The source of the RemoteSettings attachment that holds the bloom filter. This field is documented in more detail in the definition of the blocklist.mlbf_source. Possible values are \"dump_match\", \"cache_match\", \"remote_match\", \"dump_fallback\", \"cache_fallback\", \"unknown\".\n", + "type": "string" + }, + "object": { + "description": "The object represents the reason for triggering the blocklistState check: \"addon_install\" is when an add-on is installed. \"addon_update\" is when an add-on is updated after an update check. \"addon_update_check\" is when an add-on is blocked during the update check. \"addon_db_modified\" is when an add-on's blocklistState was altered between application restarts. \"blocklist_update\" is when an add-on's blocklistState changed due to a blocklist update. This may be due to the blocklist being disabled by preferences or enterprise policies, but it is more commonly the result of updating entries in the blocklist. objects: [\"addon_install\", \"addon_update\", \"addon_update_check\", \"addon_db_modified\", \"blocklist_update\"]\n", + "type": "string" + }, + "signed_date": { + "description": "Timestamp of the add-on (when it was signed via AMO). the add-on was installed or updated. At least zero when the blocklist is updated, -1 otherwise.\n", + "type": "string" + }, + "value": { + "description": "The value is the ID of the add-on.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager", + "Toolkit :: Blocklist Implementation" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L437", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_last_modified_rs_addons_mblf": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1572711", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607744", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649960", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689274", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1730037", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763529", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820155", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1607744#c11", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Keep track of the last time the \"addons-bloomfilters\" remotesetting blocklist has been successfully updated.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager", + "Toolkit :: Blocklist Implementation" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L253", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_mlbf_generation_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1633466", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649960", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689274", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1730037", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763529", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820155", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1633466#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Keep track of the generation time of the addon blocklist's bloom filter. This marks the point in time until which signed add-ons are recognized by the selected bloom filter from the addons-bloomfilters collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager", + "Toolkit :: Blocklist Implementation" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L339", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_mlbf_softblocks_generation_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917859" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917859#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "Keep track of the generation time of the addon blocklist's bloom filter. This marks the point in time until which signed add-ons are recognized by the selected bloom filter from the addons-bloomfilters collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager", + "Toolkit :: Blocklist Implementation" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L373", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_mlbf_softblocks_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917859" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917859#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-15 00:16:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The source of the RemoteSettings attachment that holds the bloom filter. Possible values are \"dump_match\", \"cache_match\", \"remote_match\",\"dump_fallback\", \"cache_fallback\", \"unknown\". \"dump_match\", \"cache_match\" and \"remote_match\" are expected known-good values, and means that the loaded bloomfilter matches the blocklist record in the RemoteSettings collection. The prefix denotes the immediate source of the loaded data: \"dump\" means packaged with the application, \"remote\" means a freshly downloaded bloomfilter, \"cache\" means a previously downloaded bloomfilter. \"dump_fallback\" and \"cache_fallback\" means that the last known bloomfilter was used, despite it not matching the latest record in the RemoteSettings collection. In this case the outdated bloomfilter is used as a fallback (e.g. because the latest version cannot be downloaded). \"unknown\" means that the bloomfilter cannot be loaded at all. This can happen if the blocklist is disabled via preferences or enterprise policies.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cb57b23f490c93544f3386a478e0d3385ec8c800", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager", + "Toolkit :: Blocklist Implementation" + ] + }, + "no_lint": [ + "GIFFT_NON_PING_LIFETIME" + ], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L332", + "telemetry_mirror": "BLOCKLIST_MLBF_SOFTBLOCKS_SOURCE", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_mlbf_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662857", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1730037", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763529", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820155", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662857#c11", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "The source of the RemoteSettings attachment that holds the bloom filter. Possible values are \"dump_match\", \"cache_match\", \"remote_match\",\"dump_fallback\", \"cache_fallback\", \"unknown\". \"dump_match\", \"cache_match\" and \"remote_match\" are expected known-good values, and means that the loaded bloomfilter matches the blocklist record in the RemoteSettings collection. The prefix denotes the immediate source of the loaded data: \"dump\" means packaged with the application, \"remote\" means a freshly downloaded bloomfilter, \"cache\" means a previously downloaded bloomfilter. \"dump_fallback\" and \"cache_fallback\" means that the last known bloomfilter was used, despite it not matching the latest record in the RemoteSettings collection. In this case the outdated bloomfilter is used as a fallback (e.g. because the latest version cannot be downloaded). \"unknown\" means that the bloomfilter cannot be loaded at all. This can happen if the blocklist is disabled via preferences or enterprise policies.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager", + "Toolkit :: Blocklist Implementation" + ] + }, + "no_lint": [ + "GIFFT_NON_PING_LIFETIME" + ], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L283", + "telemetry_mirror": "BLOCKLIST_MLBF_SOURCE", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_mlbf_stash_time_newest": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1633466", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649960", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689274", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1730037", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763529", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820155", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1633466#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Keep track of the timestamp of the most recent stash of the addons blocklist.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager", + "Toolkit :: Blocklist Implementation" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L407", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "gecko" + ] + }, + "blocklist_mlbf_stash_time_oldest": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1633466", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649960", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689274", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1730037", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763529", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820155", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1633466#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861296#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912167#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Keep track of the timestamp of the oldest stash of the addons blocklist.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Add-ons Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "rwu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/extensions/metrics.yaml#L380", + "time_unit": "millisecond", + "type": "datetime", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_action_purge": { + "bugs": [ + "https://bugzilla.mozilla.org/1889444" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889444#c3" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-04-19 00:11:56", + "last": "2024-04-24 03:53:04" + }, + "description": "Dispatched whenever a bounce tracker site is purged. Only collected in early Beta and Nightly.\n", + "disabled": false, + "expires": 130, + "extra_keys": { + "bounce_time": { + "description": "Timestamp (seconds since epoch) of the last detected bounce.", + "type": "quantity" + }, + "site_host": { + "description": "The site host of which the data has been purged.", + "type": "string" + }, + "success": { + "description": "Whether the purge data call was successful. false indicates an error in ClearDataService.", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "f34487603218a00d5c63416700836c56fa0ceca2", + "last": "f6e3b81aac49e602f06c204f9278da30993cdc8a" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "bvandersloot@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f6e3b81aac49e602f06c204f9278da30993cdc8a/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L14", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_enabled_at_startup": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1893964", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922601" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1893964#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-09 15:24:12", + "last": "2024-11-04 00:21:27" + }, + "description": "Keeps track of whether the feature is enabled at startup.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "9b6cc6c6c27da477ff07c16003650a795d2572c5", + "last": "5c236db0889da02a530759cd89b1564d5c980941" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/5c236db0889da02a530759cd89b1564d5c980941/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L110", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_enabled_dry_run_mode_at_startup": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1893964", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922601" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1893964#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-09 15:24:12", + "last": "2024-11-04 00:21:27" + }, + "description": "Keeps track of whether the feature is enabled and running in dry-run mode at startup.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "9b6cc6c6c27da477ff07c16003650a795d2572c5", + "last": "5c236db0889da02a530759cd89b1564d5c980941" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/5c236db0889da02a530759cd89b1564d5c980941/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L126", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928062" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Records the pref value of privacy.bounceTrackingProtection.mode. Values are any of nsIBounceTrackingProtection#Modes.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L110", + "type": "quantity", + "unit": "intPref", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_num_hosts_per_purge_run": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899809", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922601" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899809" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of bounce trackers purged successfully per scheduled purge.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "range_max": 99, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L35", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_purge_action": { + "bugs": [ + "https://bugzilla.mozilla.org/1889444", + "https://bugzilla.mozilla.org/1922602" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889444#c16" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Dispatched whenever a bounce tracker site is purged.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "bounce_time": { + "description": "Timestamp (seconds since epoch) of the last detected bounce.", + "type": "quantity" + }, + "is_dry_run": { + "description": "Whether we just pretended to purge since the client is in dry-run mode.", + "type": "boolean" + }, + "site_host": { + "description": "The site host of which the data has been purged.", + "type": "string" + }, + "success": { + "description": "Whether the purge data call was successful. false indicates an error in ClearDataService.", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "bounce-tracking-protection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L79", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_purge_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890578", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922601" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890578" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often we purge trackers. Giving a high level overview about the effectivness of bounce tracking protection. Allows determining error rate with failure/success label. When in dry mode, we count the purges that would have happened under the dry label.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "success", + "failure", + "dry" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L56", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_purge_count_classified_tracker": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890580", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922601" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890580" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts sites purged from BTP that are classified as trackers as part of the following lists: [emailtracking-protection, fingerprinting-protection, socialtracking-protection, tracking-protection]\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L128", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "bounce_tracking_protection_purge_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890582", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922601" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890582#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "For every purge that is scheduled, we call the ClearDataService to purge persistent storage for each detected bounce tracker. This may do some blocking work on main thread and dispatch some cleanups to other threads. Collect telemetry on how long it takes to clear in the wild to determine whether we need to improve performance here.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "bvandersloot@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/bouncetrackingprotection/metrics.yaml#L14", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "broken_site_report_breakage_category": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "An optional select-box choice (options may eventually change)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L14", + "type": "string", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_app_default_locales": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Locale strings, ie `[\"en-US\", \"en\"]`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L259", + "type": "string_list", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_app_default_useragent_string": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "The default user-agent string of the browser\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L276", + "type": "text", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_app_fission_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether Fission is enabled\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L293", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_graphics_device_pixel_ratio": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "A decimal number\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L311", + "type": "string", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_graphics_devices_json": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "JSON array of objects with `vendorID` and `deviceID`. For instance, `[{\"vendorID\":\"0x000\", \"deviceID\":\"0x001\"}]`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L345", + "type": "text", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_graphics_drivers_json": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "JSON array of objects with `renderer` and `version`. For instance, `[{\"renderer\":\"demo\", \"version\":\"0.2\"}]`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L363", + "type": "text", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_graphics_features_json": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "JSON object. For instance, `{\"WEBRENDER\":\"available\",\"WEBRENDER_PARTIAL\":\"disabled (User disabled via pref)\"}`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L381", + "type": "text", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_graphics_has_touch_screen": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether a touch screen was detected\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L328", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_graphics_monitors_json": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "JSON array of objects with `screenWidth`, 'screenHeight`, and `scale`. For instance, `[{\"screenWidth\":3584,\"screenHeight\":2240,\"scale\":2}]`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L399", + "type": "text", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_prefs_cookie_behavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `network.cookie.cookieBehavior`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L523", + "type": "quantity", + "unit": "integer", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_prefs_forced_accelerated_layers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `layers.acceleration_force.enabled`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L506", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "broken_site_report_browser_info_prefs_global_privacy_control_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `privacy.globalprivacycontrol.enabled`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L541", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_prefs_installtrigger_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `extensions.InstallTrigger.enabled`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L472", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_prefs_opaque_response_blocking": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `browser.opaqueResponseBlocking`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L455", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_prefs_resist_fingerprinting_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `privacy.resistFingerprinting`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L558", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_prefs_software_webrender": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `gfx.webrender.software`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L489", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_browser_info_prefs_third_party_cookie_blocking_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917791" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-09-11 00:19:07", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `network.cookie.cookieBehavior.optInPartitioning`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b5004fff04d74cb2ad848cf37601d927ea62b46", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L575", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "broken_site_report_browser_info_prefs_third_party_cookie_blocking_enabled_in_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917791" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-09-11 00:19:07", + "last": "2025-01-07 16:50:36" + }, + "description": "Value of `network.cookie.cookieBehavior.optInPartitioning.pbmode`\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b5004fff04d74cb2ad848cf37601d927ea62b46", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L592", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "broken_site_report_browser_info_security_antispyware": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Which antispyware software was reported on this system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L627", + "type": "string_list", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "broken_site_report_browser_info_security_antivirus": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Which antivirus software was reported on this system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L610", + "type": "string_list", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "broken_site_report_browser_info_security_firewall": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Which firewall software was reported on this system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L644", + "type": "string_list", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "broken_site_report_browser_info_system_is_tablet": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the device is a tablet\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L418", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "broken_site_report_browser_info_system_memory": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "How many mb of RAM is reported for the system\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L435", + "type": "quantity", + "unit": "mb", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_description": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "An optional description of the site issue the user is experiencing. May contain PII.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L31", + "type": "text", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_antitracking_block_list": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Currently either `basic` or `strict`, may change in the future.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L102", + "type": "string", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_antitracking_btp_has_purged_site": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932148" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932148" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-11-28 11:17:24", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the site in the current tab has recently been purged by Bounce Tracking Protection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3b7046cc69f7c0f0e9bfcfa5c1bcfbc18cbfaae6", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L187", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_antitracking_has_mixed_active_content_blocked": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the reported tab has any blocked mixed active content\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L119", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_antitracking_has_mixed_display_content_blocked": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the reported tab has any blocked mixed display content\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L136", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_antitracking_has_tracking_content_blocked": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the reported tab has any blocked tracking content\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L153", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_antitracking_is_private_browsing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the tab the user was on when reporting is in private browsing mode\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L170", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_frameworks_fastclick": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the FastClick web library was detected on the original tab.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L206", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_frameworks_marfeel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the Marfeel web framework was detected on the original tab.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L223", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_frameworks_mobify": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "Whether the Mobify web framework was detected on the original tab.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L240", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_languages": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "The languages the site actually sees (may be overridden)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L67", + "type": "string_list", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_tab_info_useragent_string": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "The userAgent the site actually sees (may be overridden)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L84", + "type": "text", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "broken_site_report_url": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-01-07 16:50:36" + }, + "description": "The URL of the site being reported. May contain PII.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "7d1b5c88343879056168aa710a9ee743392604c0" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Web Compatibility :: Tooling & Investigations" + ] + }, + "no_lint": [], + "notification_emails": [ + "twisniewski@mozilla.com", + "webcompat-reporting-tool-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "broken-site-report" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7d1b5c88343879056168aa710a9ee743392604c0/toolkit/components/reportbrokensite/metrics.yaml#L48", + "type": "url", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly" + ] + }, + "browser_engagement_bookmarks_toolbar_bookmark_added": { + "bugs": [ + "https://bugzil.la/1665391" + ], + "data_reviews": [ + "https://bugzil.la/1665391" + ], + "dates": { + "first": "2024-11-05 13:22:58", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of bookmarks added to the bookmarks toolbar. This counts bookmarks created on the bookmarks toolbar and bookmarks moved to the bookmarks toolbar. This metric was generated to correspond to the Legacy Telemetry scalar browser.engagement.bookmarks_toolbar_bookmark_added.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d2ee537d1190814100bf6ab1efd9cdb9971e6a1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L415", + "telemetry_mirror": "BROWSER_ENGAGEMENT_BOOKMARKS_TOOLBAR_BOOKMARK_ADDED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "browser_engagement_bookmarks_toolbar_bookmark_opened": { + "bugs": [ + "https://bugzil.la/1665391" + ], + "data_reviews": [ + "https://bugzil.la/1665391" + ], + "dates": { + "first": "2024-11-05 13:22:58", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of bookmarks opened from the Bookmarks Toolbar. This counts bookmarks opened on the toolbar and bookmarks opened from the 'symlinked' Other Bookmarks folder on the Bookmarks Toolbar. It does not count Bookmarks Toolbar bookmarks opened via the Library, Bookmarks Menu, or other UI since the goal is to measure interactions that pass through the toolbar. This metric was generated to correspond to the Legacy Telemetry scalar browser.engagement.bookmarks_toolbar_bookmark_opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d2ee537d1190814100bf6ab1efd9cdb9971e6a1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L432", + "telemetry_mirror": "BROWSER_ENGAGEMENT_BOOKMARKS_TOOLBAR_BOOKMARK_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "browser_ui_interaction_keyboard": { + "bugs": [ + "https://bugzil.la/1620358" + ], + "data_reviews": [ + "https://bugzil.la/1620358" + ], + "dates": { + "first": "2024-10-26 00:18:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Records a count of interactions with keyboard shortcuts. See https://firefox-source- docs.mozilla.org/browser/BrowserUsageTelemetry.html This metric was generated to correspond to the Legacy Telemetry scalar browser.ui.interaction.keyboard.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d285a5e0802502b3eb9b68168ddf85430c2772ab", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "shong@mozilla.com", + "dtownsend@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/widgets/metrics.yaml#L14", + "telemetry_mirror": "BROWSER_UI_INTERACTION_KEYBOARD", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "browser_ui_proton_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1715129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1715129#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-06-08 16:09:22", + "last": "2021-06-08 16:09:22" + }, + "description": "True if the Proton default theme is enabled.\n", + "disabled": false, + "expires": "92", + "gecko_datapoint": "", + "git-commits": { + "first": "529c78906ff42eb8f3b3e296c6937706c9940cd5", + "last": "529c78906ff42eb8f3b3e296c6937706c9940cd5" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "mconley@mozilla.com", + "bwinton@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 4 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/529c78906ff42eb8f3b3e296c6937706c9940cd5/browser/base/content/metrics.yaml#L9", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "canvas_used_2d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "2D canvas used\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CANVAS_2D_USED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: Canvas2D" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/canvas/metrics.yaml#L14", + "telemetry_mirror": "h#CANVAS_2D_USED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "canvas_webgl2_success": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1247327" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1247327" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGL2 creation success\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CANVAS_WEBGL2_SUCCESS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: Canvas2D" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "rhunt@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/canvas/metrics.yaml#L113", + "telemetry_mirror": "h#CANVAS_WEBGL2_SUCCESS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "canvas_webgl_accl_failure_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1272808" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1272808" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Track the failure IDs that lead us to reject attempting to create an accelerated context. CANVAS_WEBGL_FAILURE_ID reports the overall WebGL status with the attempt to fallback.\nThis metric was generated to correspond to the Legacy Telemetry count histogram CANVAS_WEBGL_ACCL_FAILURE_ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: Canvas2D" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "rhunt@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/canvas/metrics.yaml#L33", + "telemetry_mirror": "h#CANVAS_WEBGL_ACCL_FAILURE_ID", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "canvas_webgl_failure_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1272808" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1272808" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGL runtime and dynamic failure IDs. This will record a count for each context creation success or failure. Each failure id is a unique identifier that can be traced back to a particular failure branch or blocklist rule.\nThis metric was generated to correspond to the Legacy Telemetry count histogram CANVAS_WEBGL_FAILURE_ID.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: Canvas2D" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "rhunt@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/canvas/metrics.yaml#L52", + "telemetry_mirror": "h#CANVAS_WEBGL_FAILURE_ID", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "canvas_webgl_success": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1247327", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1529352" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1247327", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1529352" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGL1 creation success\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CANVAS_WEBGL_SUCCESS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: Canvas2D" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "rhunt@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/canvas/metrics.yaml#L72", + "telemetry_mirror": "h#CANVAS_WEBGL_SUCCESS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "canvas_webgl_used": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGL canvas used\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CANVAS_WEBGL_USED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: Canvas2D" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/canvas/metrics.yaml#L94", + "telemetry_mirror": "h#CANVAS_WEBGL_USED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "captcha_detection_arkoselabs_pc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the ArkoseLabs challenge was successfully completed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L286", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_arkoselabs_pc_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the ArkoseLabs challenge was successfully completed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L599", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_arkoselabs_pf": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the ArkoseLabs challenge was failed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L302", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_arkoselabs_pf_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the ArkoseLabs challenge was failed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L615", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_arkoselabs_ps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the ArkoseLabs challenge was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L270", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_arkoselabs_ps_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the ArkoseLabs challenge was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L583", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_arkoselabs_solutions_required": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of solutions required to complete the ArkoseLabs challenge.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "range_max": 25, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L318", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_arkoselabs_solutions_required_pbm": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of solutions required to complete the ArkoseLabs challenge.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "range_max": 25, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L631", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_pc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the AWS WAF challenge was successfully completed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L218", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_pc_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the AWS WAF challenge was successfully completed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L531", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_pf": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the AWS WAF challenge was failed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L234", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_pf_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the AWS WAF challenge was failed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L547", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_ps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the AWS WAF challenge was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L202", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_ps_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the AWS WAF challenge was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L515", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_solutions_required": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of solutions required to complete the AWS WAF challenge.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "range_max": 25, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L250", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_awswaf_solutions_required_pbm": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of solutions required to complete the AWS WAF challenge.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "range_max": 25, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L563", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_cloudflare_turnstile_cc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the Cloudflare Turnstile challenge was successfully completed since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L72", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_cloudflare_turnstile_cc_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the Cloudflare Turnstile challenge was successfully completed since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L387", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_cloudflare_turnstile_cf": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the Cloudflare Turnstile challenge was failed since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L88", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_cloudflare_turnstile_cf_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the Cloudflare Turnstile challenge was failed since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L403", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_datadome_bl": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the Datadome blocked a user.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L122", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_datadome_bl_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the Datadome blocked a user.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L435", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_datadome_pc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the user passed a Datadome puzzle.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L138", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_datadome_pc_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the user completed a Datadome puzzle.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L451", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_datadome_ps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times the Datadome puzzle was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L106", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_datadome_ps_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times the Datadome puzzle was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L419", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_google_recaptcha_v2_ac": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed a Google reCAPTCHA v2 challenge automatically since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L56", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_google_recaptcha_v2_ac_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed a Google reCAPTCHA v2 challenge automatically since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L371", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_google_recaptcha_v2_pc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed a Google reCAPTCHA v2 puzzle since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L40", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_google_recaptcha_v2_pc_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed a Google reCAPTCHA v2 puzzle since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L355", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_google_recaptcha_v2_ps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user has seen a Google reCAPTCHA v2 puzzle since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L24", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_google_recaptcha_v2_ps_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user has seen a Google reCAPTCHA v2 puzzle since last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L339", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_hcaptcha_ac": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed an hCaptcha challenge automatically.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L186", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_hcaptcha_ac_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed an hCaptcha challenge automatically.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L499", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_hcaptcha_pc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed an hCaptcha puzzle.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L170", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_hcaptcha_pc_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the user completed an hCaptcha puzzle.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L483", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_hcaptcha_ps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the hCaptcha puzzle was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L154", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_hcaptcha_ps_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the hCaptcha puzzle was shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L467", + "type": "counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_network_cookie_cookiebehavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The user's cookie behavior setting at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L652", + "type": "string", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_network_cookie_cookiebehavior_optinpartitioning": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled cookie partitioning at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L732", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_network_cookie_cookiebehavior_optinpartitioning_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled cookie partioning in PBM at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L797", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_pages_visited": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D234196#8162534" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-30 01:23:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of pages visited since the last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd6114e25fa64aa61a28b3fd24a909941c8aaf92", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L829", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "captcha_detection_pages_visited_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1941596" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D234196#8162534" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-30 01:23:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of pages visited since the last ping submission.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd6114e25fa64aa61a28b3fd24a909941c8aaf92", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L845", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "captcha_detection_privacy_fingerprintingprotection": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled suspected fingerprinters protection at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L716", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_privacy_fingerprintingprotection_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled suspected fingerprinters protection in PBM at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L781", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_privacy_resistfingerprinting": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled resist fingerprinting at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L748", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_privacy_resistfingerprinting_pbmode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled resist fingerprinting in PBM at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L813", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_privacy_trackingprotection_cryptomining_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled cryptomining protection at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L684", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_privacy_trackingprotection_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled tracking protection at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L668", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_privacy_trackingprotection_fingerprinting_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled known fingerprinters protection at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L700", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "captcha_detection_privacy_trackingprotection_pbm_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913421" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D226021#7994299" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user has enabled tracking protection in PBM at the time of data collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tritter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "captcha-detection" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/captchadetection/metrics.yaml#L765", + "type": "boolean", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "cert_chain_key_size_status": { + "bucket_count": 5, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Does enforcing a larger minimum RSA key size cause verification failures? 1 = no, 2 = yes, 3 = another error prevented finding a verified chain\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CERT_CHAIN_KEY_SIZE_STATUS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 4, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L435", + "telemetry_mirror": "CERT_CHAIN_KEY_SIZE_STATUS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_ev_status": { + "bucket_count": 11, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1254653", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1254653", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "EV status of a certificate, recorded on each TLS connection. 0=invalid, 1=DV, 2=EV\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CERT_EV_STATUS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 10, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L384", + "telemetry_mirror": "CERT_EV_STATUS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_validation_http_request_result": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP result of OCSP, etc.. (0=canceled, 1=OK, 2=FAILED, 3=internal-error)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CERT_VALIDATION_HTTP_REQUEST_RESULT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L456", + "telemetry_mirror": "CERT_VALIDATION_HTTP_REQUEST_RESULT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_validation_success_by_ca": { + "bucket_count": 257, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1364159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1369747", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1441550", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909978" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1364159", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1369747", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1441550", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909978" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Successful SSL server cert validations by CA (see RootHashes.inc for names of CAs)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CERT_VALIDATION_SUCCESS_BY_CA_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dkeeler@mozilla.com" + ], + "range_max": 256, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L407", + "telemetry_mirror": "CERT_VALIDATION_SUCCESS_BY_CA_2", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_compression_brotli_saved_bytes": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/1885138" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1885138" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-27 00:27:07", + "last": "2024-12-18 15:51:25" + }, + "description": "The difference between the length of encoded certificate vs the actual certificate.", + "disabled": false, + "expires": 136, + "gecko_datapoint": "", + "git-commits": { + "first": "833bccd519cdefaadfc81e0c9a15f5fa1d6151d3", + "last": "6f4bc07bd9eb07ed34774841ecf3b1f3678791e8" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "anna.weine@mozilla.com" + ], + "range_max": 65536, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6f4bc07bd9eb07ed34774841ecf3b1f3678791e8/security/manager/ssl/metrics.yaml#L170", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_compression_failures": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881027", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1933864" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1881027" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-12-19 00:37:58", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times each certificate compression algorithm returned an error.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b7ce4a8f7ebd7811723d26d2805a091dc8a30df6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "zlib", + "brotli", + "zstd" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "anna.weine@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L139", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_compression_used": { + "bugs": [ + "https://bugzilla.mozilla.org/1881027" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1881027" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-27 00:27:07", + "last": "2024-12-18 15:51:25" + }, + "description": "The number of times each certificate compression algorithm was used.", + "disabled": false, + "expires": 136, + "gecko_datapoint": "", + "git-commits": { + "first": "833bccd519cdefaadfc81e0c9a15f5fa1d6151d3", + "last": "6f4bc07bd9eb07ed34774841ecf3b1f3678791e8" + }, + "labels": [ + "zlib", + "brotli", + "zstd" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "anna.weine@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6f4bc07bd9eb07ed34774841ecf3b1f3678791e8/security/manager/ssl/metrics.yaml#L117", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_compression_zlib_saved_bytes": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/1881027" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1881027" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-06 10:41:01", + "last": "2024-12-18 15:51:25" + }, + "description": "The difference between the length of encoded certificate vs the actual certificate.", + "disabled": false, + "expires": 136, + "gecko_datapoint": "", + "git-commits": { + "first": "e2ba1f770888eda24937dc595c8cdb52487d6892", + "last": "6f4bc07bd9eb07ed34774841ecf3b1f3678791e8" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "anna.weine@mozilla.com" + ], + "range_max": 65536, + "range_min": 1, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6f4bc07bd9eb07ed34774841ecf3b1f3678791e8/security/manager/ssl/metrics.yaml#L153", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_compression_zstd_saved_bytes": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/1904125" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1904125" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-27 00:27:07", + "last": "2024-12-18 15:51:25" + }, + "description": "The difference between the length of encoded certificate vs the actual certificate.", + "disabled": false, + "expires": 136, + "gecko_datapoint": "", + "git-commits": { + "first": "833bccd519cdefaadfc81e0c9a15f5fa1d6151d3", + "last": "6f4bc07bd9eb07ed34774841ecf3b1f3678791e8" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "anna.weine@mozilla.com" + ], + "range_max": 65536, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6f4bc07bd9eb07ed34774841ecf3b1f3678791e8/security/manager/ssl/metrics.yaml#L187", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_pinning_failures_by_ca": { + "bucket_count": 257, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909978" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909978" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Pinning failures by CA (see RootHashes.inc for names of CAs)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CERT_PINNING_FAILURES_BY_CA_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "pinning@mozilla.org", + "dkeeler@mozilla.com" + ], + "range_max": 256, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L477", + "telemetry_mirror": "CERT_PINNING_FAILURES_BY_CA_2", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_pinning_moz_results_by_host": { + "bucket_count": 513, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1007844", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1521940" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1007844", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1521940" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Certificate pinning results by host for Mozilla operational sites\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CERT_PINNING_MOZ_RESULTS_BY_HOST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com", + "pinning@mozilla.org" + ], + "range_max": 512, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L538", + "telemetry_mirror": "CERT_PINNING_MOZ_RESULTS_BY_HOST", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_pinning_moz_test_results_by_host": { + "bucket_count": 513, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1007844", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1521940" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1007844", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1521940" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Certificate pinning test results by host for Mozilla operational sites\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CERT_PINNING_MOZ_TEST_RESULTS_BY_HOST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com", + "pinning@mozilla.org" + ], + "range_max": 512, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L561", + "telemetry_mirror": "CERT_PINNING_MOZ_TEST_RESULTS_BY_HOST", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_pinning_results": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Certificate pinning results (0 = failure, 1 = success)\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CERT_PINNING_RESULTS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "pinning@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L500", + "telemetry_mirror": "h#CERT_PINNING_RESULTS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_pinning_test_results": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Certificate pinning test results (0 = failure, 1 = success)\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CERT_PINNING_TEST_RESULTS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "pinning@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L519", + "telemetry_mirror": "h#CERT_PINNING_TEST_RESULTS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_signature_cache_hits": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "dates": { + "first": "2024-09-24 00:14:53", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "cert_signature_cache.total", + "description": "How often a certificate signature to be verified is in the cache already.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "67f8699bc5606ee9d22b81b8fc91075e7560dc25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L103", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_signature_cache_total": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "dates": { + "first": "2024-09-24 00:14:53", + "last": "2025-02-04 14:27:22" + }, + "description": "How many certificate signature verifications are performed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "67f8699bc5606ee9d22b81b8fc91075e7560dc25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L115", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_storage_memory": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1910500" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1910500" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-30 00:06:09", + "last": "2025-02-04 14:27:22" + }, + "description": "Heap memory used by cert_storage.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "a925fecd8ce25c2facf7a0ade2bafc625cdcc6ae", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jschanck@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L13", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_trust_cache_hits": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922074" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922074" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "cert_trust_cache.total", + "description": "How often a certificate's trust is in the cache already.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L128", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_trust_cache_total": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922074" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922074" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "How many certificate trust lookups are performed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L140", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_verification_time_failure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-20 00:16:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The time it takes to fail to verify a certificate in a TLS handshake.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b73eea3619ae1536a91a3f72568e77e7db7368b8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L255", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_verification_time_success": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-20 00:16:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The time it takes to successfully verify a certificate in a TLS handshake.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b73eea3619ae1536a91a3f72568e77e7db7368b8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L237", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_verifier_cert_revocation_mechanisms": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1794450", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908549" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1794450", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1817101", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846897", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876442", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908549" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-20 00:25:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Which revocation checking mechanisms were used in a TLS handshake?\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "247aa06755809a6e9227c2f0882f5d2d06cc303b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "CRLite", + "StapledOCSP", + "CachedOCSP", + "OCSP", + "OneCRL", + "ShortValidity" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jschanck@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L60", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_verifier_cert_trust_evaluation_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1888420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1888420" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-03 00:40:21", + "last": "2024-08-22 03:35:52" + }, + "description": "Measures how long we take to evaluate the trust status of a certificate.\n", + "disabled": false, + "expires": 132, + "gecko_datapoint": "", + "git-commits": { + "first": "3ebcca1292df89ae7076ce5077aac39c638dcafa", + "last": "f6fa2fdaed58ece12d4c6bc95dc5901ec22a4d05" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jschanck@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f6fa2fdaed58ece12d4c6bc95dc5901ec22a4d05/security/certverifier/metrics.yaml#L86", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_verifier_crlite_status": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886042" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886042" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-03 00:40:21", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times different CRLite statuses were returned.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3ebcca1292df89ae7076ce5077aac39c638dcafa", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "no_filter", + "not_covered", + "not_enrolled", + "not_revoked", + "revoked_in_filter", + "revoked_in_stash" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jschanck@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L13", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_verifier_crlite_vs_ocsp_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675655", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908549" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675655", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1758827", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1817102", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846898", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876443", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908549" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-20 00:25:08", + "last": "2025-02-04 14:27:22" + }, + "description": "The OCSP result when CRLite claims a certificate is revoked.\n", + "disabled": false, + "expires": 143, + "gecko_datapoint": "", + "git-commits": { + "first": "247aa06755809a6e9227c2f0882f5d2d06cc303b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "CRLiteRevOCSPFail", + "CRLiteRevOCSPOk", + "CRLiteRevOCSPRev", + "CRLiteRevOCSPUnk", + "CRLiteRevOCSPSoft" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jschanck@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L34", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cert_verifier_trust_obj_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890795", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912179" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1890795" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-08-22 15:51:49", + "last": "2025-02-04 14:27:22" + }, + "description": "The total number of trust objects in cert9.db\n", + "disabled": false, + "expires": 144, + "gecko_datapoint": "", + "git-commits": { + "first": "11a136ebafa4134f97ca25c3f262147e98ed6194", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jschanck@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/certverifier/metrics.yaml#L86", + "type": "quantity", + "unit": "trust objects", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_any_pointer_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901799" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901799#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Union of pointers available. We apply union to determine if the user have both coarse and fine pointer.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "be9fd8efd37fa43fcd7a70a732e646409f8e9532", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3700", + "type": "quantity", + "unit": "enum mozilla::PointerCapabilities values", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_audio_channels": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "Audio sampling rate\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f13c2a1e4aa3baaff26e3fe292f6b226a3fe87ad", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3383", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_audio_devices": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490#c3" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-06 00:02:41", + "last": "2024-08-07 00:31:45" + }, + "description": "A JSON object containing sample rate and max channel count of every audio device, and output latency of default device\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "64e574d607258f085df194574b651aa44624b076", + "last": "7670d637681caa77fb4db35f5039fdf350b21d92" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 1 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/7670d637681caa77fb4db35f5039fdf350b21d92/toolkit/components/resistfingerprinting/metrics.yaml#L2031", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_audio_fingerprint": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900801" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900801#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Audio fingerprint of the user. A float number multiplied by 10e7.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3531", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_audio_frames": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "Audio frames\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f13c2a1e4aa3baaff26e3fe292f6b226a3fe87ad", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3345", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_audio_rate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896490#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "Audio sampling rate\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f13c2a1e4aa3baaff26e3fe292f6b226a3fe87ad", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3364", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_avail_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Available height property\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3065", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_avail_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Available width property\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3212", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_build_date": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:28", + "last": "2025-02-04 14:27:22" + }, + "description": "Firefox build's build date in unix time\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b3dc7f2734cfb9f0e02e2a03a43f45349eb49037", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4038", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_camera_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of cameras available on the device.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f10499982132b5770bb9391f8786b1d6d5317425", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3250", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvas_dpr": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1945296" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1945296#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The device pixel ratio of the canvas rendering context\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1518", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvas_feature_status": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935712" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935712#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-12 00:17:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Status of and failure id (if failed) of ACCELERATED_CANVAS2D feature\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2f85e6e40b7d92a3790f8e7dd17d21a5fca257cb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4381", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata1": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a simple organge box and used as a control image\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1050", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata10": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a font shipped with Firefox rendered with italics, rotation, and shadow-blur.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1212", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata10software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a font shipped with Firefox rendered with italics, rotation, and shadow-blur.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1446", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata11_webgl": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a WebGL canvas (instead of Canvas2D). IT is a RGB gradient cube.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1230", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata11_webglsoftware": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a WebGL canvas (instead of Canvas2D). IT is a RGB gradient cube.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1464", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata12_fingerprintjs1": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas, it is a copy of fingerprintjs' text canvas\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1248", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata12_fingerprintjs1software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas, it is a copy of fingerprintjs' text canvas\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1482", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata13_fingerprintjs2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas, it is a copy of fingerprintjs' geometry canvas\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1266", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata13_fingerprintjs2software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas, it is a copy of fingerprintjs' geometry canvas\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1500", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata1software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a simple organge box and used as a control image\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1284", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a bordered triage, and used to test point interpolation\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1068", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata2software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a bordered triage, and used to test point interpolation\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1302", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1086", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3avif": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1284", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3avifsoftware": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1590", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3cspsafe": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1338", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3cspsafesoftware": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1644", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3png": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1320", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3pngsoftware": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1626", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1320", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3webp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1302", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata3webpsoftware": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935231#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-05 13:54:29", + "last": "2024-12-11 19:17:56" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a stretched photographic image, used to test image operations.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dad0b1dc8ba302f125d6df03b9413d02f782fd1a", + "last": "39e6d5b609b74a19c0824d98ae654b60d6310152" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/39e6d5b609b74a19c0824d98ae654b60d6310152/toolkit/components/resistfingerprinting/metrics.yaml#L1608", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata4": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is two rotated, semi-transparenct overlapping squares, used to test transparency and point interpolation.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1104", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata4software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is two rotated, semi-transparenct overlapping squares, used to test transparency and point interpolation.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1338", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata5": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a local font rendered normally.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1122", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata5software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a local font rendered normally.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1356", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata6": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a local font rendered with italics, rotation, and shadow-blur.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1140", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata6software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a local font rendered with italics, rotation, and shadow-blur.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1374", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata7": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a system-ui font rendered normally.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1158", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata7software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a system-ui font rendered normally.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1392", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata8": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a system-ui font rendered with italics, rotation, and shadow-blur.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1176", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata8software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a system-ui font rendered with italics, rotation, and shadow-blur.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1410", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata9": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1894958#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a font shipped with Firefox rendered normally.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ec10fb1a9a2052a8247f7e19b3553606634f26c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1194", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_canvasdata9software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900828#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-03 08:29:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The sha1 hash of an image rendered on a canvas. The image is a font shipped with Firefox rendered normally.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b61e136a20d5fd6e01e998540ce6ac33093ed19e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1428", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_changed_media_prefs": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899181" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899181#c3" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-07 01:34:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Changed media prefs and their values.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "680843ba36865626f67abe58659029792cafa6d1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3421", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_channel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:28", + "last": "2025-02-04 14:27:22" + }, + "description": "Firefox build channel\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b3dc7f2734cfb9f0e02e2a03a43f45349eb49037", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4021", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_client_identifier": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879154#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-04 01:18:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A unique identifier for a user, not the same as the normal Telemetry client_id, but needed so we can deduplicate reports and only take the most recent one per user.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "52ae12cb4488e84f7af0732d333bb6dea8e0f90c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "deletion-request", + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L31", + "type": "uuid", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_accentcolor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Accentcolor.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L243", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_accentcolortext": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Accentcolortext.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L261", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_canvas": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Canvas.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L279", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_canvastext": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Canvastext.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L297", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_depth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "The Color Depth reported by CSS\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L224", + "type": "quantity", + "unit": "bits", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_gamut": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "The Color Gamut reported by CSS\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L205", + "type": "quantity", + "unit": "enum dom::ScreenColorGamut value", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_highlight": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L315", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_highlighttext": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Highlighttext.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L333", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_scheme": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "The Color Scheme used for Content, from ContentPrefs() Preference Sheet.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L186", + "type": "quantity", + "unit": "enum mozilla::ColorScheme value", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_selecteditem": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Selecteditem.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L351", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_color_selecteditemtext": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The CSS system-color Selecteditemtext.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L369", + "type": "quantity", + "unit": "RGB", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_cpu_arch": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1944933" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1944933#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Arch of the user's device\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4107", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_cpu_model": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901291" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901291#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:28", + "last": "2025-02-04 14:27:22" + }, + "description": "CPU model of the user's device\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "23055a3d92cb6f210fb863205b6d8bf9a5665e71", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4090", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_errors": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897271" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897271#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Errors occured on C++ side of data collection\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3644", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_default_default_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.default. pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L773", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_default_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of other modified font.default prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L790", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_default_western": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.default.x-western pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L756", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_minimum_size_default_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.minimum-size. pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1570", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_minimum_size_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of other modified font.minimum-size prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1587", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_minimum_size_western": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.minimum-size.x-western pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1553", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_list_cursive_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of modified font.name-list.cursive. prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1677", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_list_emoji_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the pref font.name-list.emoji was modified.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1713", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_list_monospace_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of modified font.name-list.monospace. prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1641", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_list_sans_serif_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of modified font.name-list.sans-serif. prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1623", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_list_serif_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of modified font.name-list.serif. prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1605", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_monospace_default_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.name.monospace. pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L929", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_monospace_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of other modified font.name.monospace prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L946", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_monospace_western": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.name.monospace.x-western pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L912", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_sans_serif_default_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.name.sans-serif. pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L877", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_sans_serif_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of other modified font.name.sans-serif prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L894", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_sans_serif_western": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.name.sans-serif.x-western pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L860", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_serif_default_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.name.serif. pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L825", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_serif_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of other modified font.name.serif prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L842", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_name_serif_western": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.name.serif.x-western pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L808", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_size_monospace_default_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.size.monospace. pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1033", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_size_monospace_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of other modified font.size.monospace prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1535", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_size_monospace_western": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.size.monospace.x-western pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1016", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_size_variable_default_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.size.variable. pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L981", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_size_variable_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of other modified font.size.variable prefs.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L998", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_font_size_variable_western": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of the font.size.variable.x-western pref\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L964", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gamepads": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1885936" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1885936#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The information of the gamepads inserted on the user device. Each string represents one gamepad. We use a JSON array to describe a gamepad, every value represents one property of the gamepad. Following are the details:\n index 0: The ID of the game pad\n index 1: Which hand for the gamepad.\n index 2: Number of buttons\n index 3: Number of axes\n index 4: Number of haptics\n index 5: Number of lights\n index 6: Number of touches\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L556", + "type": "string_list", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_context_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The type of the GL context (EGL, GLX, WGL, etc).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2538", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_context_type_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The type of the GL context (EGL, GLX, WGL, etc).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2825", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_extensions": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2286", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_extensions_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2305", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_extensions_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2592", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_extensions_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2573", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_fragment_shader": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2409", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_fragment_shader_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2696", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_minimal_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Transformed source of the minimal shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2443", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_minimal_source_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Transformed source of the minimal shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2730", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_params": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of GL2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2481", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_params_extensions": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of the extensions.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2462", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_params_extensions_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of the extensions.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2749", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_params_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of GL2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2768", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_precision_fragment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2500", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_precision_fragment_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2787", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_precision_vertex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2519", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_precision_vertex_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2806", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_renderer": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2324", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_renderer_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2341", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_renderer_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2628", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_renderer_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2611", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_vendor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2358", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_vendor_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2375", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_vendor_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2662", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_vendor_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2645", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_version_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL version string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2392", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_version_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL version string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2679", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_version_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The version of OpenGL supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2555", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_vertex_shader": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2426", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl2_vertex_shader_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2713", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_context_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c17" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The type of the GL context (EGL, GLX, WGL, etc).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e7a66f1336399d538e937fea4bd5a39ca7e8f7fb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1982", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_context_type_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c17" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The type of the GL context (EGL, GLX, WGL, etc).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e7a66f1336399d538e937fea4bd5a39ca7e8f7fb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2269", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_extensions": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1730", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_extensions_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1749", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_extensions_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2036", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_extensions_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of OpenGL extensions supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2017", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_fragment_shader": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1853", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_fragment_shader_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2140", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_minimal_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Transformed source of the minimal shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1887", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_minimal_source_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "Transformed source of the minimal shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2174", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of GL1.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1925", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params_extensions": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of the extensions.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1906", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params_extensions_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of the extensions.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2193", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943627#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-31 00:18:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The list of GL parameters of GL1.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6b458b3c146e85345e45248f3ea9a7506ce5d7e6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2212", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params_v1": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-01-30 21:30:56" + }, + "description": "The list of GL parameters of GL1.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "ae658df8b2e28234092cec19d3f07e32e119924e" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ae658df8b2e28234092cec19d3f07e32e119924e/toolkit/components/resistfingerprinting/metrics.yaml#L1926", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params_v1_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-01-30 21:30:56" + }, + "description": "The list of GL parameters of GL1.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "ae658df8b2e28234092cec19d3f07e32e119924e" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ae658df8b2e28234092cec19d3f07e32e119924e/toolkit/components/resistfingerprinting/metrics.yaml#L2232", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params_v2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-01-30 21:30:56" + }, + "description": "The list of GL parameters of GL2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "ae658df8b2e28234092cec19d3f07e32e119924e" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ae658df8b2e28234092cec19d3f07e32e119924e/toolkit/components/resistfingerprinting/metrics.yaml#L1945", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_params_v2_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-01-30 21:30:56" + }, + "description": "The list of GL parameters of GL2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "ae658df8b2e28234092cec19d3f07e32e119924e" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ae658df8b2e28234092cec19d3f07e32e119924e/toolkit/components/resistfingerprinting/metrics.yaml#L2251", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_precision_fragment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1944", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_precision_fragment_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the fragment shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2231", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_precision_vertex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1963", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_precision_vertex_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "Precisions of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2250", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_renderer": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1768", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_renderer_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1785", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_renderer_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2072", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_renderer_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL renderer string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2055", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_vendor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1802", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_vendor_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1819", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_vendor_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2106", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_vendor_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The OpenGL vendor string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2089", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-01-30 21:30:56" + }, + "description": "The version of OpenGL supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "ae658df8b2e28234092cec19d3f07e32e119924e" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ae658df8b2e28234092cec19d3f07e32e119924e/toolkit/components/resistfingerprinting/metrics.yaml#L1713", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_version_raw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL version string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1836", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_version_raw_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The raw OpenGL version string.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2123", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_version_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The version of OpenGL supported by the user's system.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1999", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_vertex_shader": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7502f6903c32cccb5f75d6105b585f1da7bf0bed", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L1870", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_gl_vertex_shader_software": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922506#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 13:07:25", + "last": "2025-02-04 14:27:22" + }, + "description": "Hash of the transformed source of the vertex shader.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9fed0e23eba6a5ddc73090b88ccdfd604a8af37", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2157", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_group_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of device groups reported by the device.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f10499982132b5770bb9391f8786b1d6d5317425", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3307", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_group_count_wo_speakers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of device groups without speakers reported by the device.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f10499982132b5770bb9391f8786b1d6d5317425", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3326", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_ice_foundations": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902003" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902003#c2" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-01-15 16:29:23" + }, + "description": "Unique ICE foundations occurance count and the standard deviation of latencies\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "b19c379ba7b6d4f25af090a66cec3facf8153ee3" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b19c379ba7b6d4f25af090a66cec3facf8153ee3/toolkit/components/resistfingerprinting/metrics.yaml#L3262", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_ice_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:28", + "last": "2025-02-04 14:27:22" + }, + "description": "Unique ICE foundations occurrence count\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43cb627c6811c6794cf39761fe191344efd168e3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3719", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_ice_sd": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:28", + "last": "2025-02-04 14:27:22" + }, + "description": "ICE foundation discovery latency standard deviation sum multiplied by 1000\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43cb627c6811c6794cf39761fe191344efd168e3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3737", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_inner_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Inner height of user's browser.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3102", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_inner_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Inner width of user's browser.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3138", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_intl_locale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900082" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900082#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Locale information provided by Intl\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3570", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_inverted_colors": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "What LookAndFeel(InvertedColors) reports.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L168", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_js_errors": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897271" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897271#c5" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Errors occured on JavaScript side of data collection\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3663", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_keyboard_layout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886178" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886178" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "Name of the current keyboard layout.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3626", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_languages": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899311" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899311#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-07 01:34:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Languages the user set. Returns intl.accept_languages pref, if it is empty, returns the first matched OS's language or the default language.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "680843ba36865626f67abe58659029792cafa6d1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3402", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_math_ops": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900691" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900691#c6" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Result of fingerprintable math operations\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3587", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_math_ops_fdlibm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1945182" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1945182#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-02-01 01:40:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Windows only fdlibm math operation results\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "979de049e247cae40555a98b3ad228af9bde90e0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3607", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml1": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4124", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml10": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4279", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4141", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml3": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4159", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml4": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4177", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml5": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4194", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml6": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4211", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml7": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4228", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml8": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4245", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_mathml9": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907654#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-02-01 01:40:23", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the drawn MathML element\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7eb4d4d9b36e15d7f6e0a4089fa5a45fe4a48542", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4262", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_max_touch_points": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879156" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879156#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of touch points we will report to the web. On Android, this is based on Android's FEATURE_TOUCHSCREEN* constants - Mozilla caps this at 5 as Android stops distinguishing between numbers greater than 5. On Windows this comes from the SM_MAXIMUMTOUCHES System Metric.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L72", + "type": "quantity", + "unit": "Fingers", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_media_capabilities": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899181" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899181#c3" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-07 01:34:57", + "last": "2025-01-15 16:29:23" + }, + "description": "Which, if any, media types are not supported, and whether they can be run smoothly and power-efficiently.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "680843ba36865626f67abe58659029792cafa6d1", + "last": "b19c379ba7b6d4f25af090a66cec3facf8153ee3" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b19c379ba7b6d4f25af090a66cec3facf8153ee3/toolkit/components/resistfingerprinting/metrics.yaml#L2981", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_media_capabilities_h264": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Levels of support for H264 codec.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "29130625c7036afc23baeae04c03d40649e265d4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 5, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3495", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_media_capabilities_not_efficient": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Which, if any, media types are not power efficient.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "29130625c7036afc23baeae04c03d40649e265d4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 5, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3476", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_media_capabilities_not_smooth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Which, if any, media types are not smooth.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "29130625c7036afc23baeae04c03d40649e265d4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 5, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3457", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_media_capabilities_unsupported": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Which, if any, media types are not supported.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "29130625c7036afc23baeae04c03d40649e265d4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 5, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3438", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_media_devices": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896736" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896736#c4" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-06 00:02:41", + "last": "2025-01-15 16:29:23" + }, + "description": "A JSON object containing the number of audio input/output, video input and the number of unique group ids.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "64e574d607258f085df194574b651aa44624b076", + "last": "b19c379ba7b6d4f25af090a66cec3facf8153ee3" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b19c379ba7b6d4f25af090a66cec3facf8153ee3/toolkit/components/resistfingerprinting/metrics.yaml#L2772", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_microphone_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of microphones available on the device.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f10499982132b5770bb9391f8786b1d6d5317425", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3269", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_missing_fonts": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1880561" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1880561#c6" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-03-08 00:08:29", + "last": "2025-02-04 14:27:22" + }, + "description": "If a Font List is available for the user's platform, this string_list contains the fonts that are missing from the user's computer.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "81e68bade9ccb728cae789a3bd03d29f29b493ec", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L404", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_monochrome": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907164" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907164#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-17 00:04:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user's device is monochrome\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9af0db686cc820be5fdbdfdf953a835eb832e317", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4296", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_motion_decimals": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902671" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:19", + "last": "2025-02-04 14:27:22" + }, + "description": "devicemotion event's decimal places count\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1637edb63acad1bd65a2fd38d9c812fc14cf0bba", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3896", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_motion_freq": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902671" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:19", + "last": "2025-02-04 14:27:22" + }, + "description": "devicemotion event's frequency\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1637edb63acad1bd65a2fd38d9c812fc14cf0bba", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3950", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_orientation_angle": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Orientation angle of the screen\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3231", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_orientation_decimals": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902671" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:19", + "last": "2025-02-04 14:27:22" + }, + "description": "deviceorientation event's decimal places count\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1637edb63acad1bd65a2fd38d9c812fc14cf0bba", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3914", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_orientation_freq": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902671" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:19", + "last": "2025-02-04 14:27:22" + }, + "description": "deviceorientation event's frequency\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1637edb63acad1bd65a2fd38d9c812fc14cf0bba", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3968", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_orientationabs_decimals": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902671" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:19", + "last": "2025-02-04 14:27:22" + }, + "description": "deviceorientationabsolute event's decimal places count\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1637edb63acad1bd65a2fd38d9c812fc14cf0bba", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3932", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_orientationabs_freq": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902671" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:19", + "last": "2025-02-04 14:27:22" + }, + "description": "deviceorientationabsolute event's frequency\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1637edb63acad1bd65a2fd38d9c812fc14cf0bba", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3986", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_os_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:28", + "last": "2025-02-04 14:27:22" + }, + "description": "User's OS name\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b3dc7f2734cfb9f0e02e2a03a43f45349eb49037", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4056", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_os_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:28", + "last": "2025-02-04 14:27:22" + }, + "description": "User's OS version\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b3dc7f2734cfb9f0e02e2a03a43f45349eb49037", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4073", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_oscpu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907170" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907170#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-17 00:04:50", + "last": "2025-02-04 14:27:22" + }, + "description": "User's OS CPU reported by the navigator\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9af0db686cc820be5fdbdfdf953a835eb832e317", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4313", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_outer_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Outer height of user's browser.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3084", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_outer_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Outer width of user's browser.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3120", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pdf_viewer": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907170" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907170#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-17 00:04:50", + "last": "2025-02-04 14:27:22" + }, + "description": "PDF viewer support reported by the navigator\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9af0db686cc820be5fdbdfdf953a835eb832e317", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4330", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pixel_depth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898291#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Screen pixel depth property\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3046", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pixel_ratio": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900844" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900844#c6" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "The value of window.devicePixelRatio multiplied by 100 to include some of the decimal places\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ff98e342cf17ec4d69e4db802cf17d71ef53f489", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3550", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_platform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907170" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907170#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-17 00:04:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Platform reported by the navigator\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9af0db686cc820be5fdbdfdf953a835eb832e317", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4347", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Height of user's pointer\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a506719ed34cf2d5b4fbd01bf65495b92b64c940", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3755", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_pressure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Pressure of user's pointer\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a506719ed34cf2d5b4fbd01bf65495b92b64c940", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3791", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_tangentinal_pressure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Tangential Pressure of user's pointer\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a506719ed34cf2d5b4fbd01bf65495b92b64c940", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3808", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_tiltx": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "TiltX of user's pointer\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a506719ed34cf2d5b4fbd01bf65495b92b64c940", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3825", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_tilty": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "TiltY of user's pointer\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a506719ed34cf2d5b4fbd01bf65495b92b64c940", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3843", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_twist": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Twist of user's pointer\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a506719ed34cf2d5b4fbd01bf65495b92b64c940", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3861", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901799" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901799#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Pointer type of the user's primary pointer device.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "be9fd8efd37fa43fcd7a70a732e646409f8e9532", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3682", + "type": "quantity", + "unit": "enum mozilla::PointerCapabilities values", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_pointer_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902086#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of user's pointer\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a506719ed34cf2d5b4fbd01bf65495b92b64c940", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3773", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_posx": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2025-02-04 14:27:22" + }, + "description": "window.screen.left value. Provides us the position of the browser and the width of any possible task/menu bar\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3156", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_posy": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2025-02-04 14:27:22" + }, + "description": "window.screen.top value. Provides us the position of the browser and the height of any possible task/menu bar\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3175", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefers_contrast": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "What Gecko_MediaFeatures_PrefersContrast reports for a ContentDocument\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L149", + "type": "quantity", + "unit": "enum StylePrefersContrast value", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefers_reduced_motion": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "What LookAndFeel(PrefersReducedMotion) reports.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L131", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefers_reduced_transparency": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "What LookAndFeel(PrefersReducedTransparency) reports.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L113", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_block_popups": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-27 00:11:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Block pop-up windows (The dom.disable_open_during_load pref)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2f6b6389881644fdb4ca5f765e51216b6efe0841", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L722", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_browser_display_use_document_fonts": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1887658#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 07:32:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Allow pages to choose their own fonts.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e171b68ce793f7b099813448397f47f7f1fd1e5d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L739", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_general_autoscroll": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-27 00:11:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Use autoscrolling\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2f6b6389881644fdb4ca5f765e51216b6efe0841", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L671", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_general_smoothscroll": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-27 00:11:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Use smooth scrolling\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2f6b6389881644fdb4ca5f765e51216b6efe0841", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L688", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_intl_accept_languages": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882482" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882482#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Value of the intl.accept_languages pref.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L583", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_media_eme_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882482" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882482#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Value of the media.eme.enabled pref.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L601", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_network_cookie_cookiebehavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892474" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852340#c16" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-03 10:21:37", + "last": "2025-02-04 14:27:22" + }, + "description": "Value of the network.cookie.cookieBehavior pref.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "029daef871b1e7d3cf5a733563c1090c7f84cad2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2842", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_overlay_scrollbars": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-27 00:11:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Use overlay scrollbars (or otherwise \"Always show scrollbars\")\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2f6b6389881644fdb4ca5f765e51216b6efe0841", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L705", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_privacy_donottrackheader_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-27 00:11:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Sending \"do not track\" HTTP header\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2f6b6389881644fdb4ca5f765e51216b6efe0841", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L637", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_privacy_globalprivacycontrol_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1884693#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-27 00:11:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Sending \"global privacy control\" HTTP header\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2f6b6389881644fdb4ca5f765e51216b6efe0841", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L654", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_prefs_zoom_text_only": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882482" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882482#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Text-only zoom enabled (vs. full-zoom)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L619", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_processor_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881759" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881759#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of processors.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L483", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_scalings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898744" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898744#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-31 15:07:53", + "last": "2025-02-04 14:27:22" + }, + "description": "Screen(s) scaling/zoom level\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7a3f7f54d75461019ca94fa35281be6311bb8953", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3029", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_screen_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881749" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881749#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Height of the primary screen in pixels.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L464", + "type": "quantity", + "unit": "pixels", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_screen_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881749" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881749#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Orientation of the primary screen.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L445", + "type": "quantity", + "unit": "enum hal::ScreenOrientation value", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_screen_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881749" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881749#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Width of the primary screen in pixels.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L426", + "type": "quantity", + "unit": "pixels", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_size_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886177#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether window is maximized, minimized, normal or fullscreen\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3194", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_speaker_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of speakers available on the device.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f10499982132b5770bb9391f8786b1d6d5317425", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3288", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_submission_schema": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879154#c8" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "An incrementing constant that represents the current schema/source of the data present in a ping. By referring to this value in a ping, one can know for certain the provenance of other data present in the ping, and what data may or may not be present.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L52", + "type": "quantity", + "unit": "versions", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_system_locale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881744" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881744#c7" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-19 21:55:33", + "last": "2025-02-04 14:27:22" + }, + "description": "The locale used by the host OS for localization.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b73676a106c1655030bb876fd5e0a6825aee6044", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L520", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_target_frame_rate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882054" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882054#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "The target frame rate in frames-per-second.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L537", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_text_anti_aliasing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898586" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898586#c5" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-07 01:34:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Font anti aliasing level\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "680843ba36865626f67abe58659029792cafa6d1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3514", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_timezone": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881773" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881773#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "The the current timezone of the system\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L502", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_touch_rotation_angle": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902364#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-21 09:11:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Rotation angle of user's touch\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fa018fa64150241f1f91a982fa8446c663fbcb73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3879", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_use_document_colors": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1889931" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "This is the derived PreferenceSheet::Prefs::mUseDocumentColors value.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L387", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_user_agent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1944552" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1944552#c1" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User agent string\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4975", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_using_accelerated_canvas": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1931573" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1931573#c0" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-19 00:22:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user's device is using accelerated canvas\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d9d33a0da65855e0aea777645057cb5fcfde02fa", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4364", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901260#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-28 09:22:28", + "last": "2025-02-04 14:27:22" + }, + "description": "Firefox build version\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b3dc7f2734cfb9f0e02e2a03a43f45349eb49037", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4004", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_video_dynamic_range": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879624#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-07 11:36:06", + "last": "2025-02-04 14:27:22" + }, + "description": "What LookAndFeel(VideoDynamicRange) reports. Note that CSSVideoDynamicRange has an additional dependency on Color Depth.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "43e6b85dbe30902de30b27e5280198b60094b57d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L94", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886387" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1886387#c4" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-06-06 00:02:41", + "last": "2025-01-15 16:29:23" + }, + "description": "Available speechSynthesis voices.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "64e574d607258f085df194574b651aa44624b076", + "last": "b19c379ba7b6d4f25af090a66cec3facf8153ee3" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b19c379ba7b6d4f25af090a66cec3facf8153ee3/toolkit/components/resistfingerprinting/metrics.yaml#L2362", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_all_ssdeep": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "ssdeep hash of all speechSynthesis voices.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2956", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of speechSynthesis voices available to the user.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2860", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_default": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "The default speechSynthesis voice.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2898", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_local_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of local speechSynthesis voices available to the user.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2879", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_local_ssdeep": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "ssdeep hash of local speechSynthesis voices.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2974", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_nonlocal_ssdeep": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "ssdeep hash of non-local speechSynthesis voices.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2992", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_sample": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Names of 5 sample speechSynthesis voices.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2916", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_voices_sha1": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1919090#c3" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-09-18 01:00:27", + "last": "2025-02-04 14:27:22" + }, + "description": "SHA1 hash of all the voices.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "60c3354a9bf9b62afc9fa1bf53ff54c4c43db278", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L2936", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_webglinfo": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896101" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=xxx" + ], + "data_sensitivity": [ + "highly_sensitive" + ], + "dates": { + "first": "2024-08-07 00:23:42", + "last": "2025-01-15 16:29:23" + }, + "description": "A JSON blob that contains information about the graphics hardware exposed by WebGL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "eb3c2e643bcb078da36e2691ee5c6cc75352859c", + "last": "b19c379ba7b6d4f25af090a66cec3facf8153ee3" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b19c379ba7b6d4f25af090a66cec3facf8153ee3/toolkit/components/resistfingerprinting/metrics.yaml#L1713", + "type": "text", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxbindgroups": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxBindGroups\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4487", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxbindgroupsplusvertexbuffers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxBindGroupsPlusVertexBuffers\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4505", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxbindingsperbindgroup": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxBindingsPerBindGroup\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4523", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxbuffersize": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxBufferSize\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4757", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcolorattachmentbytespersample": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxColorAttachmentBytesPerSample\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4847", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcolorattachments": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxColorAttachments\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4829", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcomputeinvocationsperworkgroup": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxComputeInvocationsPerWorkgroup\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4883", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcomputeworkgroupsizex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxComputeWorkgroupSizeX\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4901", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcomputeworkgroupsizey": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxComputeWorkgroupSizeY\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4919", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcomputeworkgroupsizez": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxComputeWorkgroupSizeZ\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4937", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcomputeworkgroupsperdimension": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxComputeWorkgroupsPerDimension\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4955", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxcomputeworkgroupstoragesize": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxComputeWorkgroupStorageSize\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4865", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxdynamicstoragebuffersperpipelinelayout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxDynamicStorageBuffersPerPipelineLayout\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4559", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxdynamicuniformbuffersperpipelinelayout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxDynamicUniformBuffersPerPipelineLayout\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4541", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxinterstageshadervariables": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxInterStageShaderVariables\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4811", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxsampledtexturespershaderstage": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxSampledTexturesPerShaderStage\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4577", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxsamplerspershaderstage": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxSamplersPerShaderStage\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4595", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxstoragebufferbindingsize": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxStorageBufferBindingSize\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4685", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxstoragebufferspershaderstage": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxStorageBuffersPerShaderStage\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4613", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxstoragetexturespershaderstage": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxStorageTexturesPerShaderStage\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4631", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxtexturearraylayers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxTextureArrayLayers\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4469", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxtexturedimension1d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxTextureDimension1D\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4415", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxtexturedimension2d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxTextureDimension2D\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4433", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxtexturedimension3d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxTextureDimension3D\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4451", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxuniformbufferbindingsize": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxUniformBufferBindingSize\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4667", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxuniformbufferspershaderstage": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxUniformBuffersPerShaderStage\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4649", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxvertexattributes": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxVertexAttributes\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4775", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxvertexbufferarraystride": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxVertexBufferArrayStride\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4793", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_maxvertexbuffers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit maxVertexBuffers\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4739", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_minstoragebufferoffsetalignment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit minStorageBufferOffsetAlignment\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4721", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_minuniformbufferoffsetalignment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "WebGPU limit minUniformBufferOffsetAlignment\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4703", + "type": "quantity", + "unit": "uint", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_wgpu_missing_features": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1939903#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Missing features of WebGPU as a bitset\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L4398", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "characteristics_zoom_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879151", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898348" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898348#c3" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-31 16:03:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of domains the users has a non-default zoom level.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d318bb0468e17dde011eca093d48ed5ca83060d2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "user-characteristics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L3010", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "codec_stats_audio_preferred_codec": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-21 00:17:13", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the preferred audio codec being signaled to us to identify preferred audio codec.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "a6e42705a3969369aa7eb605b7cff8463ccec05e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L368", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "codec_stats_other_fec_signaled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-21 00:17:13", + "last": "2025-02-04 14:27:22" + }, + "description": "Count how many other fec options are being offered.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "a6e42705a3969369aa7eb605b7cff8463ccec05e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L332", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "codec_stats_ulpfec_negotiated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-21 00:17:13", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times that ulpfec is negotiated or not negotiated on the first negotiation for each video transceiver.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "a6e42705a3969369aa7eb605b7cff8463ccec05e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "negotiated", + "not_negotiated" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L310", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "codec_stats_video_preferred_codec": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858213", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881396", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912181" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-21 00:17:13", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the preferred video codec being signaled to us to identify preferred video codec.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "a6e42705a3969369aa7eb605b7cff8463ccec05e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L350", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_canvas_fingerprinting_per_tab": { + "bucket_count": 9, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847990", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912169" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847990", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912169" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Type of canvas fingerprinter detected (keyed by known_fingerprinting_text or unknown), 0 = none\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram CANVAS_FINGERPRINTING_PER_TAB.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": [ + "unknown", + "known_text" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 8, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L83", + "telemetry_mirror": "CANVAS_FINGERPRINTING_PER_TAB", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_category": { + "bugs": [ + "https://bugzil.la/1529425" + ], + "data_reviews": [ + "https://bugzil.la/1529425" + ], + "dates": { + "first": "2024-10-29 15:48:33", + "last": "2025-02-04 14:27:22" + }, + "description": "This scalar reports the value of the content blocking category pref (0 = \"standard\", 1 = \"strict\", 2 = \"custom\", 3 = some other value, this is not supported). This metric was generated to correspond to the Legacy Telemetry scalar contentblocking.category.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5fdbe0d78d61581aa4b37ce82bbf31c2bd7826f1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L14", + "telemetry_mirror": "CONTENTBLOCKING_CATEGORY", + "type": "quantity", + "unit": "content blocking category", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_cookie_behavior": { + "bucket_count": 16, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1484251", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1561384" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1484251", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1561384" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Records the cookie behavior pref at startup.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram COOKIE_BEHAVIOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "range_max": 15, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L385", + "telemetry_mirror": "COOKIE_BEHAVIOR", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_cryptominers_blocked_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1522919" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1522919" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of the status of cryptominer blocking per top level page load. ('pageLoad' = There was a page load, 'blocked' = at least one cryptominer was blocked, 'allowed' = at least one cryptominer was detected and allowed.) Note, pageLoad is used as a baseline measurement.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram CRYPTOMINERS_BLOCKED_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "pageLoad", + "blocked", + "allowed" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L496", + "telemetry_mirror": "h#CRYPTOMINERS_BLOCKED_COUNT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_cryptomining_blocking_enabled": { + "bugs": [ + "https://bugzil.la/1522919" + ], + "data_reviews": [ + "https://bugzil.la/1522919" + ], + "dates": { + "first": "2024-10-29 15:48:33", + "last": "2025-02-04 14:27:22" + }, + "description": "True if cryptominer blocking is enabled globally at startup. This metric was generated to correspond to the Legacy Telemetry scalar contentblocking.cryptomining_blocking_enabled.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5fdbe0d78d61581aa4b37ce82bbf31c2bd7826f1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L32", + "telemetry_mirror": "CONTENTBLOCKING_CRYPTOMINING_BLOCKING_ENABLED", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_email_tracker_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1773701" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1773701" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of the classified email trackers. ('base_normal' = The classified email tracker is in base category and loaded under a normal site, 'content_normal' = The classified email tracker is in content category and loaded under a normal site, 'base_email_webapp' = The classified email tracker is in base category and loaded under a known email webapp, 'content_email_webapp' = The classified email tracker is in content category and loaded under a known email webapp.)\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram EMAIL_TRACKER_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "base_normal", + "content_normal", + "base_email_webapp", + "content_email_webapp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L277", + "telemetry_mirror": "h#EMAIL_TRACKER_COUNT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_email_tracker_embedded_per_tab": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1781249" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1781249" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of the embedded third-party email trackers for known email web apps. ('base_normal' = The count of loaded base email trackers under normal sites, 'content_normal' = The count of loaded content email trackers under normal sites, 'all_normal' = The count of all loaded email trackers under normal sites, 'base_emailapp' = The count of loaded base email trackers under email webapps, 'content_emailapp' = The count of loaded content email trackers under email webapps, 'all_emailapp' = The count of all loaded email trackers under email webapps.)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram EMAIL_TRACKER_EMBEDDED_PER_TAB.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "labels": [ + "base_normal", + "content_normal", + "all_normal", + "base_emailapp", + "content_emailapp", + "all_emailapp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L305", + "telemetry_mirror": "EMAIL_TRACKER_EMBEDDED_PER_TAB", + "type": "labeled_custom_distribution", + "unit": "third-party email trackers", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_fingerprinters_blocked_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1522919" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1522919" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of the status of fingerprinter blocking per top level page load. ('pageLoad' = There was a page load, 'blocked' = at least one fingerprinter was blocked, 'allowed' = at least one fingerprinter was detected and allowed.) Note, pageLoad is used as a baseline measurement.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram FINGERPRINTERS_BLOCKED_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "pageLoad", + "blocked", + "allowed" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L472", + "telemetry_mirror": "h#FINGERPRINTERS_BLOCKED_COUNT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_fingerprinting_blocking_enabled": { + "bugs": [ + "https://bugzil.la/1522919" + ], + "data_reviews": [ + "https://bugzil.la/1522919" + ], + "dates": { + "first": "2024-10-29 15:48:33", + "last": "2025-02-04 14:27:22" + }, + "description": "True if fingerprinter blocking is enabled globally at startup. This metric was generated to correspond to the Legacy Telemetry scalar contentblocking.fingerprinting_blocking_enabled.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5fdbe0d78d61581aa4b37ce82bbf31c2bd7826f1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L47", + "telemetry_mirror": "CONTENTBLOCKING_FINGERPRINTING_BLOCKING_ENABLED", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_font_fingerprinting_per_tab": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847990", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912169" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847990", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912169" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a probable font fingerprinting attempt was detected\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram FONT_FINGERPRINTING_PER_TAB.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L109", + "telemetry_mirror": "h#FONT_FINGERPRINTING_PER_TAB", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_query_stripping_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1706616" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1706616" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of the query stripping. ('Navigation' = There was a top-level loading via navigation, 'Redirect' = There was a top-level loading via redirect, 'StripForNavigation' = There was a stripping happened for a top-level navigation, 'StripForRedirect' = There was a stripping happened for a top-level redirect.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram QUERY_STRIPPING_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "Navigation", + "Redirect", + "StripForNavigation", + "StripForRedirect" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "emz@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L184", + "telemetry_mirror": "h#QUERY_STRIPPING_COUNT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_query_stripping_count_by_param": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1762374", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830058" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1762374", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830058" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often specific query parameters are stripped.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram QUERY_STRIPPING_COUNT_BY_PARAM.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "param_mc_eid", + "param_oly_anon_id", + "param_oly_enc_id", + "param___s", + "param_vero_id", + "param__hsenc", + "param_mkt_tok", + "param_fbclid", + "param_gclid", + "param_dclid", + "param_msclkid", + "param__openstat", + "param_yclid", + "param_wickedid", + "param_twclid", + "param___hssc", + "param___hstc", + "param___hsfp", + "param_hsctatracking", + "param_wbraid", + "param_gbraid", + "param_ysclid" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "emz@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L234", + "telemetry_mirror": "h#QUERY_STRIPPING_COUNT_BY_PARAM", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_query_stripping_param_count": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1762374" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1762374" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "If query params get stripped, how many per navigation/redirect.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram QUERY_STRIPPING_PARAM_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "emz@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L211", + "telemetry_mirror": "QUERY_STRIPPING_PARAM_COUNT", + "type": "custom_distribution", + "unit": "query params", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_storage_access_granted_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668199" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668199" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of the granted storage access. ('StorageGranted' = There was a storage access granted, 'StorageAccessAPI' = the storage access was granted by the storage access API, 'OpenerAfterUserInteraction' = the storage access was granted due to the heuristic 'OpenerAfterUserInteraction', 'Opener' = the storage access was granted due to the heuristic 'Opener', 'Redirect' = the storage access was granted due to the heuristic 'Redirect', 'RedirectTracker' = the storage access was granted due to the heuristic 'RedirectTracker'.) Note, StorageGranted is used as a baseline measurement, which should be the sum of all other measurements.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram STORAGE_ACCESS_GRANTED_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "StorageGranted", + "StorageAccessAPI", + "OpenerAfterUI", + "Opener", + "Redirect", + "RedirectTracker", + "Navigation" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L130", + "telemetry_mirror": "h#STORAGE_ACCESS_GRANTED_COUNT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_storage_access_remaining_days": { + "bucket_count": 61, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668199" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668199" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The time remaining until expiration per storage access permissions, in days (one record per permission, not averaged).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram STORAGE_ACCESS_REMAINING_DAYS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "range_max": 60, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L163", + "telemetry_mirror": "STORAGE_ACCESS_REMAINING_DAYS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_strip_on_share_length_decrease": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833105" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833105" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The decrease in the length of the URL when strip on share is used, only if at least one parameter is stripped\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram STRIP_ON_SHARE_LENGTH_DECREASE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L363", + "telemetry_mirror": "STRIP_ON_SHARE_LENGTH_DECREASE", + "type": "custom_distribution", + "unit": "characters", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_strip_on_share_params_removed": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833105" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833105" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of query parameters removed, if any, when strip on share is used\nThis metric was generated to correspond to the Legacy Telemetry linear histogram STRIP_ON_SHARE_PARAMS_REMOVED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L341", + "telemetry_mirror": "STRIP_ON_SHARE_PARAMS_REMOVED", + "type": "custom_distribution", + "unit": "query parameters", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_trackers_blocked_count": { + "bugs": [ + "https://bugzil.la/1577030", + "https://bugzil.la/1610894", + "https://bugzil.la/1645088", + "https://bugzil.la/1678209" + ], + "data_reviews": [ + "https://bugzil.la/1577030", + "https://bugzil.la/1610894", + "https://bugzil.la/1645088", + "https://bugzil.la/1678209" + ], + "dates": { + "first": "2024-10-29 15:48:33", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of the number of tracking events blocked. This metric was generated to correspond to the Legacy Telemetry scalar contentblocking.trackers_blocked_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5fdbe0d78d61581aa4b37ce82bbf31c2bd7826f1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L62", + "telemetry_mirror": "CONTENTBLOCKING_TRACKERS_BLOCKED_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_tracking_protection_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1058133" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1058133" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "True if tracking protection is enabled globally at startup.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram TRACKING_PROTECTION_ENABLED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L407", + "telemetry_mirror": "h#TRACKING_PROTECTION_ENABLED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_tracking_protection_pbm_disabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1200944" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1200944" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "True if tracking protection in Private Browsing mode is disabled at startup.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram TRACKING_PROTECTION_PBM_DISABLED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L426", + "telemetry_mirror": "h#TRACKING_PROTECTION_PBM_DISABLED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "contentblocking_tracking_protection_shield": { + "bucket_count": 5, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1058133", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1659762" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1058133", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1659762" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Status of the shield icon for each top-level pageload (outside of Private Browsing mode) when tracking protection is enabled (0 = there was a page load, this is used as a baseline, 1 = shield crossed out because CB was disabled on this page by the user, 2 = shield shown because some content was blocked)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRACKING_PROTECTION_SHIELD.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 4, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L446", + "telemetry_mirror": "TRACKING_PROTECTION_SHIELD", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_click_handle_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/1797078", + "https://bugzilla.mozilla.org/1804259", + "https://bugzilla.mozilla.org/1827765", + "https://bugzilla.mozilla.org/1850874", + "https://bugzilla.mozilla.org/1861317", + "https://bugzilla.mozilla.org/1892152" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797078#c6", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1827765#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850874#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861317#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892152#c6" + ], + "dates": { + "first": "2024-05-06 16:24:29", + "last": "2024-06-05 10:10:05" + }, + "description": "Counts how long it takes to handle cookie banners successfully from DOMContentLoaded until click.\n", + "disabled": false, + "expires": 134, + "gecko_datapoint": "", + "git-commits": { + "first": "a48641a49ca65c187913f1d1667a41da48cfd915", + "last": "fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc/toolkit/components/cookiebanners/metrics.yaml#L288", + "telemetry_mirror": "COOKIE_BANNERS_CLICK_HANDLE_DURATION_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_click_query_selector_run_count_per_window_frame": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1871200#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "How often a query selector is run during the lifetime of a sub-frame content window.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "range_max": 2500, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L344", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_click_query_selector_run_count_per_window_top_level": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1871200#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "How often a query selector is run during the lifetime of a top-level content window.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "range_max": 2500, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L325", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_click_query_selector_run_duration_per_window_frame": { + "bucket_count": 8, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1871200#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Total time spent (in microseconds) on running querySelector for the lifetime of a sub-frame content window.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "range_max": 30000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L382", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_click_query_selector_run_duration_per_window_top_level": { + "bucket_count": 8, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855495#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1871200#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Total time spent (in microseconds) on running querySelector for the lifetime of a top-level content window.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "range_max": 30000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L363", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_click_result": { + "bugs": [ + "https://bugzilla.mozilla.org/1797078", + "https://bugzilla.mozilla.org/1804259", + "https://bugzilla.mozilla.org/1821738", + "https://bugzilla.mozilla.org/1827765", + "https://bugzilla.mozilla.org/1850874", + "https://bugzilla.mozilla.org/1861317", + "https://bugzilla.mozilla.org/1892152" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797078#c6", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1827765#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850874#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861317#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892152#c6" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Given a matching cookie banner rule, how often do we handle or fail to handle cookie banners, labelled by reason. The 'success' and 'fail' counters count the total numbers independently of the reason counters. Counters are incremented after the content window has been destroyed. This metric additionally reports cookie injections after which we didn't see a banner as \"success_cookie_injected\".\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "labels": [ + "success", + "success_cookie_injected", + "success_dom_content_loaded", + "success_mutation_pre_load", + "success_mutation_post_load", + "fail", + "fail_banner_not_found", + "fail_banner_not_visible", + "fail_button_not_found", + "fail_no_rule_for_mode", + "fail_actor_destroyed" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L286", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_cmp_detected_cmp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128#c10", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Counts how often a specific cmp has been detected by our cookie banner handling.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L419", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_cmp_handle_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128#c10", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-06 16:24:29", + "last": "2024-06-05 10:10:05" + }, + "description": "Counts how long it takes to handle cookie banners successfully using CMP rules from DOMContentLoaded until click. This metric is a variant of the cookieBanners.click.handle_duration.\n", + "disabled": false, + "expires": 134, + "gecko_datapoint": "", + "git-commits": { + "first": "7825893c574944aa5a21bcd5c77bc647d5f626d8", + "last": "fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc/toolkit/components/cookiebanners/metrics.yaml#L494", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_cmp_ratio_handled_by_cmp_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128#c10", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "denominator_metric": null, + "description": "The proportion of cookie banners handled by CMP rules within the total number of cases handled, including those handled by site-specific rules.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L402", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_cmp_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128#c10", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Given a matching CMP rule, how often do we handle or fail to handle cookie banners, labelled by reason. The 'success' and 'fail' counters count the total numbers independently of the reason counters. Counters are incremented after the content window has been destroyed.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "labels": [ + "success", + "success_dom_content_loaded", + "success_mutation_pre_load", + "success_mutation_post_load", + "fail", + "fail_banner_not_found", + "fail_banner_not_visible", + "fail_button_not_found", + "fail_no_rule_for_mode", + "fail_actor_destroyed" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L436", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_cookie_injection_fail": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813128#c10", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892154#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Counts how often the cookie banner is still shown even if we have injected cookies.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L201", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_google_gdpr_choice_cookie": { + "bugs": [ + "https://bugzilla.mozilla.org/1874741" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1874741#c10" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Records the GDPR choice on Google Search based on the \"SOCS\" cookie of the Google Search domains. The value could be \"Accept\", \"Reject\" or \"Custom\". We use the label to record different choices on different Google domains. We only collect this if the default search engine is Google.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/cookiebanners/metrics.yaml#L65", + "type": "labeled_string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_google_gdpr_choice_cookie_event": { + "bugs": [ + "https://bugzilla.mozilla.org/1874741" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1874741#c10" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded whenever a GDPR choice is made on a Google Search page. We assess the \"SOCS\" cookie to know the GDPR choice.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "choice": { + "description": "The GDPR choice. The value could be \"Accept\", \"Reject\" or \"Custom\".\n", + "type": "string" + }, + "region": { + "description": "The region where the GDPR consent is made. This is based on the IP location.\n", + "type": "string" + }, + "search_domain": { + "description": "The Google search domain where the GDPR choice was made.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/cookiebanners/metrics.yaml#L82", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_google_gdpr_choice_cookie_event_pbm": { + "bugs": [ + "https://bugzilla.mozilla.org/1874741" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1874741#c10" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded whenever a GDPR choice is made on a Google Search page on private browsing windows. We assess the \"SOCS\" cookie to know the GDPR choice.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "choice": { + "description": "The GDPR choice. The value could be \"Accept\", \"Reject\" or \"Custom\".\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/cookiebanners/metrics.yaml#L110", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_normal_window_service_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/1797081", + "https://bugzilla.mozilla.org/1804259" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797081#c3" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "The pref value of the cookie banner service mode for normal windows.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "disabled", + "reject", + "reject_or_accept", + "invalid" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/cookiebanners/metrics.yaml#L14", + "telemetry_mirror": "COOKIE_BANNERS_NORMAL_WINDOW_SERVICE_MODE", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_private_window_service_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/1797081", + "https://bugzilla.mozilla.org/1804259" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797081#c3" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "The pref value of the cookie banner service mode for private windows.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "disabled", + "reject", + "reject_or_accept", + "invalid" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/cookiebanners/metrics.yaml#L33", + "telemetry_mirror": "COOKIE_BANNERS_PRIVATE_WINDOW_SERVICE_MODE", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_reload": { + "bugs": [ + "https://bugzilla.mozilla.org/1797079", + "https://bugzilla.mozilla.org/1827765", + "https://bugzilla.mozilla.org/1850874", + "https://bugzilla.mozilla.org/1861317", + "https://bugzilla.mozilla.org/1892152" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797079#c6", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1827765#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850874#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861317#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892152#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Recorded when the top-level page is reloaded. We use this event metric to know whether or not the reloading domain has cookie banner rule.\n", + "disabled": false, + "expires": 135, + "extra_keys": { + "has_click_rule": { + "description": "There is a matching click rule for the reloading domain.", + "type": "boolean" + }, + "has_cookie_rule": { + "description": "There is a matching cookie rule for the reloading domain.", + "type": "boolean" + }, + "no_rule": { + "description": "There is no cookie banner rule for the reloading domain.", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "pbz@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L168", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_rule_lookup_by_domain": { + "bugs": [ + "https://bugzilla.mozilla.org/1797073", + "https://bugzilla.mozilla.org/1804259", + "https://bugzilla.mozilla.org/1827765", + "https://bugzilla.mozilla.org/1850874", + "https://bugzilla.mozilla.org/1861317", + "https://bugzilla.mozilla.org/1892152" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797073#c6", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1827765#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850874#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861317#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892152#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Counts the number of hit/miss of cookie banner rule lookups for domain. We collect three types of counters, including counters for overall rule lookup, counters for cookie rule lookup and counters for click rule lookup. We also divide the counter by top-level loads and iframe loads. For each domain, we will only collect once.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "labels": [ + "top_hit", + "top_hit_opt_in", + "top_hit_opt_out", + "top_miss", + "iframe_hit", + "iframe_hit_opt_in", + "iframe_hit_opt_out", + "iframe_miss", + "top_cookie_hit", + "top_cookie_hit_opt_in", + "top_cookie_hit_opt_out", + "top_cookie_miss", + "iframe_cookie_hit", + "iframe_cookie_hit_opt_in", + "iframe_cookie_hit_opt_out", + "iframe_cookie_miss", + "top_click_hit", + "top_click_hit_opt_in", + "top_click_hit_opt_out", + "top_click_miss", + "iframe_click_hit", + "iframe_click_hit_opt_in", + "iframe_click_hit_opt_out", + "iframe_click_miss" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "pbz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L116", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_rule_lookup_by_load": { + "bugs": [ + "https://bugzilla.mozilla.org/1797073", + "https://bugzilla.mozilla.org/1804259", + "https://bugzilla.mozilla.org/1827765", + "https://bugzilla.mozilla.org/1850874", + "https://bugzilla.mozilla.org/1861317", + "https://bugzilla.mozilla.org/1892152" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797073#c6", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1827765#c9", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850874#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861317#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892152#c6" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2024-11-14 00:24:35" + }, + "description": "Counts the number of hit/miss of cookie banner rule lookups for every load. We collect three types of counters, including counters for overall rule lookup, counters for cookie rule lookup and counters for click rule lookup. We also divide the counter by top-level loads and iframe loads.\n", + "disabled": false, + "expires": 135, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "d8bc33ab6c44d67cae10f815ef8597642fcb7aa1" + }, + "labels": [ + "top_hit", + "top_hit_opt_in", + "top_hit_opt_out", + "top_miss", + "iframe_hit", + "iframe_hit_opt_in", + "iframe_hit_opt_out", + "iframe_miss", + "top_cookie_hit", + "top_cookie_hit_opt_in", + "top_cookie_hit_opt_out", + "top_cookie_miss", + "iframe_cookie_hit", + "iframe_cookie_hit_opt_in", + "iframe_cookie_hit_opt_out", + "iframe_cookie_miss", + "top_click_hit", + "top_click_hit_opt_in", + "top_click_hit_opt_out", + "top_click_miss", + "iframe_click_hit", + "iframe_click_hit_opt_in", + "iframe_click_hit_opt_out", + "iframe_click_miss" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "pbz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d8bc33ab6c44d67cae10f815ef8597642fcb7aa1/toolkit/components/cookiebanners/metrics.yaml#L65", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_banners_service_detect_only": { + "bugs": [ + "https://bugzilla.mozilla.org/1809700" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1809700#c3" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Tracks the value of the cookiebanners.service.detectOnly pref.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/cookiebanners/metrics.yaml#L52", + "telemetry_mirror": "COOKIE_BANNERS_SERVICE_DETECT_ONLY", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_purging_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent per daily cookie purging activity, in milliseconds. This measures the time for all batch iterations of that day.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram COOKIE_PURGING_DURATION_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L594", + "telemetry_mirror": "COOKIE_PURGING_DURATION_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_purging_interval_hours": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How much time (in hours) passed between the current cookie purging activity and the one before that (cookie purging is run on 'daily idle')\nThis metric was generated to correspond to the Legacy Telemetry linear histogram COOKIE_PURGING_INTERVAL_HOURS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L616", + "telemetry_mirror": "COOKIE_PURGING_INTERVAL_HOURS", + "time_unit": "hour", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_purging_origins_purged": { + "bucket_count": 30, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of origins that were purged during one run of cookie purging.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram COOKIE_PURGING_ORIGINS_PURGED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "range_max": 500, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L521", + "telemetry_mirror": "COOKIE_PURGING_ORIGINS_PURGED", + "type": "custom_distribution", + "unit": "origins", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_purging_trackers_user_interaction_remaining_days": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The time remaining until expiration per user interaction permissions of trackers at the time of purging, in days (one record per tracker, not averaged).\nThis metric was generated to correspond to the Legacy Telemetry linear histogram COOKIE_PURGING_TRACKERS_USER_INTERACTION_REMAINING_DAYS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L571", + "telemetry_mirror": "COOKIE_PURGING_TRACKERS_USER_INTERACTION_REMAINING_DAYS", + "time_unit": "day", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cookie_purging_trackers_with_user_interaction": { + "bucket_count": 30, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1630053", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1656134", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1689271" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of trackers that had user interaction at the time of purging.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram COOKIE_PURGING_TRACKERS_WITH_USER_INTERACTION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "privacy-team@mozilla.org" + ], + "range_max": 500, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/metrics.yaml#L546", + "telemetry_mirror": "COOKIE_PURGING_TRACKERS_WITH_USER_INTERACTION", + "type": "custom_distribution", + "unit": "trackers", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_add_manage": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for credit card autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event creditcard.add#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1326", + "telemetry_mirror": "Creditcard_Add_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_cancel_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.cancel#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1241", + "telemetry_mirror": "Creditcard_Cancel_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_cancel_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.cancel#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1255", + "telemetry_mirror": "Creditcard_Cancel_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_cleared_cc_form_v2": { + "bugs": [ + "https://bugzil.la/1757731" + ], + "data_reviews": [ + "https://bugzil.la/1757731" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is cleared. Using field_name to record the field that triggers this event.\nThis event was generated to correspond to the Legacy Telemetry event creditcard.cleared#cc_form_v2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "credit card expiration date\n", + "type": "string" + }, + "cc_exp_month": { + "description": "credit card expiration month\n", + "type": "string" + }, + "cc_exp_year": { + "description": "credit card expiration year\n", + "type": "string" + }, + "cc_name": { + "description": "cardholder name field result. Used by `detected`, `filled`, and `filled_modified` methods.\n", + "type": "string" + }, + "cc_number": { + "description": "credit card number field result\n", + "type": "string" + }, + "cc_type": { + "description": "credit card type result\n", + "type": "string" + }, + "field_name": { + "description": "Name of the field being affected by the method. Used by `popup_shown` and `filled_modified` methods.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1496", + "telemetry_mirror": "Creditcard_Cleared_CcFormV2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_delete_manage": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for credit card autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event creditcard.delete#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1340", + "telemetry_mirror": "Creditcard_Delete_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_detected_cc_form_v2": { + "bugs": [ + "https://bugzil.la/1757731" + ], + "data_reviews": [ + "https://bugzil.la/1757731" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is recognized as a credit card form. The possible value of cc_* in extra_keys are \"true\", \"false\", or an integer between 0-100. When the value is \"true\", the field is identified via autocomplete attribute. When the value is \"false\", the field is not detected in the form. When the value is an integer greater than 0, the value indicates the confidence value from fathom (normalized to 0-100). When the value is an 0, then the field is identified by regexp-based heuristic.\nThis event was generated to correspond to the Legacy Telemetry event creditcard.detected#cc_form_v2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "credit card expiration date\n", + "type": "string" + }, + "cc_exp_month": { + "description": "credit card expiration month\n", + "type": "string" + }, + "cc_exp_year": { + "description": "credit card expiration year\n", + "type": "string" + }, + "cc_name": { + "description": "cardholder name field result. Used by `detected`, `filled`, and `filled_modified` methods.\n", + "type": "string" + }, + "cc_number": { + "description": "credit card number field result\n", + "type": "string" + }, + "cc_type": { + "description": "credit card type result\n", + "type": "string" + }, + "field_name": { + "description": "Name of the field being affected by the method. Used by `popup_shown` and `filled_modified` methods.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1382", + "telemetry_mirror": "Creditcard_Detected_CcFormV2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_disable_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.disable#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1269", + "telemetry_mirror": "Creditcard_Disable_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_disable_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.disable#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1283", + "telemetry_mirror": "Creditcard_Disable_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_edit_manage": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for credit card autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event creditcard.edit#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1368", + "telemetry_mirror": "Creditcard_Edit_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_filled_cc_form_v2": { + "bugs": [ + "https://bugzil.la/1757731" + ], + "data_reviews": [ + "https://bugzil.la/1757731" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is autofiled. Possible values are `filled`, `not_filled`, `user_filled` or `unavailable`.\nThis event was generated to correspond to the Legacy Telemetry event creditcard.filled#cc_form_v2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "credit card expiration date\n", + "type": "string" + }, + "cc_exp_month": { + "description": "credit card expiration month\n", + "type": "string" + }, + "cc_exp_year": { + "description": "credit card expiration year\n", + "type": "string" + }, + "cc_name": { + "description": "cardholder name field result. Used by `detected`, `filled`, and `filled_modified` methods.\n", + "type": "string" + }, + "cc_number": { + "description": "credit card number field result\n", + "type": "string" + }, + "cc_type": { + "description": "credit card type result\n", + "type": "string" + }, + "field_name": { + "description": "Name of the field being affected by the method. Used by `popup_shown` and `filled_modified` methods.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1453", + "telemetry_mirror": "Creditcard_Filled_CcFormV2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_filled_modified_cc_form_v2": { + "bugs": [ + "https://bugzil.la/1757731" + ], + "data_reviews": [ + "https://bugzil.la/1757731" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a field is autofilled and then modified by the user. Using field_name to record the field that triggers this event.\nThis event was generated to correspond to the Legacy Telemetry event creditcard.filled_modified#cc_form_v2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "credit card expiration date\n", + "type": "string" + }, + "cc_exp_month": { + "description": "credit card expiration month\n", + "type": "string" + }, + "cc_exp_year": { + "description": "credit card expiration year\n", + "type": "string" + }, + "cc_name": { + "description": "cardholder name field result. Used by `detected`, `filled`, and `filled_modified` methods.\n", + "type": "string" + }, + "cc_number": { + "description": "credit card number field result\n", + "type": "string" + }, + "cc_type": { + "description": "credit card type result\n", + "type": "string" + }, + "field_name": { + "description": "Name of the field being affected by the method. Used by `popup_shown` and `filled_modified` methods.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1467", + "telemetry_mirror": "Creditcard_FilledModified_CcFormV2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_os_keystore_decrypt": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831049" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831049" + ], + "dates": { + "first": "2025-01-28 09:02:31", + "last": "2025-02-04 14:27:22" + }, + "description": "Captures the result of the OS Keystore decryption, which user interaction triggered the OS Keystore, and any error messages upon failure.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "error_message": { + "description": "Records the error message. Likely errors include \"Cr.NS_ERROR_FAILURE\" and \"Cr.NS_ERROR_ABORT\". If no error then \"NO_ERROR\".\n", + "type": "string" + }, + "isDecryptSuccess": { + "description": "Records if the decryption was a success or failure.\n", + "type": "boolean" + }, + "trigger": { + "description": "What triggered the OS Keystore Popup. \"edit\" - when editing credit cards \"autofill\" - when autofilling credit cards\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "1bffb0079b15b9c90b9b894340bd76bf56f5e9b0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1510", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_popup_shown_cc_form_v2": { + "bugs": [ + "https://bugzil.la/1757731" + ], + "data_reviews": [ + "https://bugzil.la/1757731" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when autofill popup is shown. Using field_name to record the field that triggers this event.\nThis event was generated to correspond to the Legacy Telemetry event creditcard.popup_shown#cc_form_v2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "credit card expiration date\n", + "type": "string" + }, + "cc_exp_month": { + "description": "credit card expiration month\n", + "type": "string" + }, + "cc_exp_year": { + "description": "credit card expiration year\n", + "type": "string" + }, + "cc_name": { + "description": "cardholder name field result. Used by `detected`, `filled`, and `filled_modified` methods.\n", + "type": "string" + }, + "cc_number": { + "description": "credit card number field result\n", + "type": "string" + }, + "cc_type": { + "description": "credit card type result\n", + "type": "string" + }, + "field_name": { + "description": "Name of the field being affected by the method. Used by `popup_shown` and `filled_modified` methods.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1439", + "telemetry_mirror": "Creditcard_PopupShown_CcFormV2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_save_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.save#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1185", + "telemetry_mirror": "Creditcard_Save_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_save_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.save#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1199", + "telemetry_mirror": "Creditcard_Save_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_show_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.show#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1141", + "telemetry_mirror": "Creditcard_Show_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_show_entry_manage": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for credit card autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event creditcard.show_entry#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1354", + "telemetry_mirror": "Creditcard_ShowEntry_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_show_manage": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1654167", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for credit card autofill preferences management UI. This event was generated to correspond to the Legacy Telemetry event creditcard.show#manage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1297", + "telemetry_mirror": "Creditcard_Show_Manage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_show_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.show#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1171", + "telemetry_mirror": "Creditcard_Show_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_submitted_cc_form_v2": { + "bugs": [ + "https://bugzil.la/1757731" + ], + "data_reviews": [ + "https://bugzil.la/1757731" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is submitted. Possible values are `autofilled`, `user_filled` or `unavailable`.\nThis event was generated to correspond to the Legacy Telemetry event creditcard.submitted#cc_form_v2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "credit card expiration date\n", + "type": "string" + }, + "cc_exp_month": { + "description": "credit card expiration month\n", + "type": "string" + }, + "cc_exp_year": { + "description": "credit card expiration year\n", + "type": "string" + }, + "cc_name": { + "description": "cardholder name field result. Used by `detected`, `filled`, and `filled_modified` methods.\n", + "type": "string" + }, + "cc_number": { + "description": "credit card number field result\n", + "type": "string" + }, + "cc_type": { + "description": "credit card type result\n", + "type": "string" + }, + "field_name": { + "description": "Name of the field being affected by the method. Used by `popup_shown` and `filled_modified` methods.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1482", + "telemetry_mirror": "Creditcard_Submitted_CcFormV2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_update_capture_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.update#capture_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1213", + "telemetry_mirror": "Creditcard_Update_CaptureDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "creditcard_update_update_doorhanger": { + "bugs": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "data_reviews": [ + "https://bugzil.la/1653073", + "https://bugzil.la/1653083", + "https://bugzil.la/1720608", + "https://bugzil.la/1767907" + ], + "dates": { + "first": "2024-10-03 13:01:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User interactions for the browser credit card autofill doorhanger. This event was generated to correspond to the Legacy Telemetry event creditcard.update#update_doorhanger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The flowId.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "ce217c96b85a44c30229b435fa0bbed7aaba63bd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1227", + "telemetry_mirror": "Creditcard_Update_UpdateDoorhanger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_async_snow_white_freeing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent on one asynchronous SnowWhite freeing (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_ASYNC_SNOW_WHITE_FREEING.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4dcab9a2078310a507093f85fccbc0205086b9c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L439", + "telemetry_mirror": "CYCLE_COLLECTOR_ASYNC_SNOW_WHITE_FREEING", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_collected": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of objects collected by the cycle collector\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_COLLECTED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "range_max": 100000, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L248", + "telemetry_mirror": "CYCLE_COLLECTOR_COLLECTED", + "type": "custom_distribution", + "unit": "JS objects", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_deferred_finalize_async": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Pause time for asynchronous deferred finalization (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DEFERRED_FINALIZE_ASYNC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4dcab9a2078310a507093f85fccbc0205086b9c2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L456", + "telemetry_mirror": "DEFERRED_FINALIZE_ASYNC", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_finish_igc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Cycle collection finished an incremental GC\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CYCLE_COLLECTOR_FINISH_IGC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "32cedfe8718829dc0e4ef29019ec82358257a34f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L363", + "telemetry_mirror": "h#CYCLE_COLLECTOR_FINISH_IGC", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_full": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Full pause time for one cycle collection, including preparation (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "32cedfe8718829dc0e4ef29019ec82358257a34f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L328", + "telemetry_mirror": "CYCLE_COLLECTOR_FULL", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_max_pause": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1364503" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1364503" + ], + "dates": { + "first": "2025-01-24 14:36:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Longest pause for an individual slice of one cycle collection, including preparation (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_MAX_PAUSE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "32cedfe8718829dc0e4ef29019ec82358257a34f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L345", + "telemetry_mirror": "CYCLE_COLLECTOR_MAX_PAUSE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_need_gc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Needed garbage collection before cycle collection.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CYCLE_COLLECTOR_NEED_GC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L290", + "telemetry_mirror": "h#CYCLE_COLLECTOR_NEED_GC", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_slice_during_idle": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1372042" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1372042" + ], + "dates": { + "first": "2025-01-24 14:36:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Percent of cycle collector slice done during idle time\nThis metric was generated to correspond to the Legacy Telemetry linear histogram CYCLE_COLLECTOR_SLICE_DURING_IDLE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "32cedfe8718829dc0e4ef29019ec82358257a34f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L418", + "telemetry_mirror": "CYCLE_COLLECTOR_SLICE_DURING_IDLE", + "type": "custom_distribution", + "unit": "percent", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_sync_skippable": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Cycle collection synchronously ran forget skippable\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CYCLE_COLLECTOR_SYNC_SKIPPABLE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "32cedfe8718829dc0e4ef29019ec82358257a34f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L382", + "telemetry_mirror": "h#CYCLE_COLLECTOR_SYNC_SKIPPABLE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent on one cycle collection (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L130", + "telemetry_mirror": "CYCLE_COLLECTOR", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_time_between": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent in between cycle collections (seconds)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_TIME_BETWEEN.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "32cedfe8718829dc0e4ef29019ec82358257a34f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L401", + "telemetry_mirror": "CYCLE_COLLECTOR_TIME_BETWEEN", + "time_unit": "second", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_visited_gced": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of JS objects visited by the cycle collector\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_VISITED_GCED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "range_max": 300000, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L206", + "telemetry_mirror": "CYCLE_COLLECTOR_VISITED_GCED", + "type": "custom_distribution", + "unit": "JS objects", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_visited_ref_counted": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of ref counted objects visited by the cycle collector\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_VISITED_REF_COUNTED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "range_max": 300000, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L164", + "telemetry_mirror": "CYCLE_COLLECTOR_VISITED_REF_COUNTED", + "type": "custom_distribution", + "unit": "ref counted objects", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_worker_collected": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of objects collected by the cycle collector in a worker\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_WORKER_COLLECTED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "range_max": 100000, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L269", + "telemetry_mirror": "CYCLE_COLLECTOR_WORKER_COLLECTED", + "type": "custom_distribution", + "unit": "JS objects", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_worker_need_gc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Needed garbage collection before cycle collection in a worker.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CYCLE_COLLECTOR_WORKER_NEED_GC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L309", + "telemetry_mirror": "h#CYCLE_COLLECTOR_WORKER_NEED_GC", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_worker_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent on one cycle collection in a worker (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_WORKER.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L147", + "telemetry_mirror": "CYCLE_COLLECTOR_WORKER", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_worker_visited_gced": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of JS objects visited by the cycle collector in a worker\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_WORKER_VISITED_GCED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "range_max": 300000, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L227", + "telemetry_mirror": "CYCLE_COLLECTOR_WORKER_VISITED_GCED", + "type": "custom_distribution", + "unit": "JS objects", + "version": 0, + "repos": [ + "gecko" + ] + }, + "cycle_collector_worker_visited_ref_counted": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of ref counted objects visited by the cycle collector in a worker\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CYCLE_COLLECTOR_WORKER_VISITED_REF_COUNTED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ab768954af51056bb6d56519d0ed9d3e4ef8cf8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org" + ], + "range_max": 300000, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L185", + "telemetry_mirror": "CYCLE_COLLECTOR_WORKER_VISITED_REF_COUNTED", + "type": "custom_distribution", + "unit": "ref counted objects", + "version": 0, + "repos": [ + "gecko" + ] + }, + "data_storage_alternate_services": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873080" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873080" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-01-06 00:17:16", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of entries stored in the AlternateServices nsIDataStorage", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "66adb93517c20a1e191569ac9d0b27aaadfd2bda", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L29", + "type": "quantity", + "unit": "entries", + "version": 0, + "repos": [ + "gecko" + ] + }, + "data_storage_client_auth_remember_list": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873080" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873080" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-01-06 00:17:16", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of entries stored in the ClientAuthRememberList nsIDataStorage", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "66adb93517c20a1e191569ac9d0b27aaadfd2bda", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L43", + "type": "quantity", + "unit": "entries", + "version": 0, + "repos": [ + "gecko" + ] + }, + "data_storage_entries": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1840135" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1840135" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-09-06 00:18:00", + "last": "2024-01-05 16:52:01" + }, + "description": "Counts the number of entries stored in each nsIDataStorage.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e6b5e724b5226a884272153f8c2d852670da099e", + "last": "0d4fc026314376d3a4232776132b988d766ee588" + }, + "labels": [ + "AlternateServices", + "ClientAuthRememberList", + "SiteSecurityServiceState" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/0d4fc026314376d3a4232776132b988d766ee588/security/manager/ssl/metrics.yaml#L14", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "data_storage_migration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1840135" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1840135" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-09-06 00:18:00", + "last": "2024-01-05 16:52:01" + }, + "description": "Indicates whether or not migration was successful for each nsIDataStorage.", + "disabled": false, + "expires": 124, + "gecko_datapoint": "", + "git-commits": { + "first": "e6b5e724b5226a884272153f8c2d852670da099e", + "last": "0d4fc026314376d3a4232776132b988d766ee588" + }, + "labels": [ + "AlternateServices", + "ClientAuthRememberList", + "SiteSecurityServiceState" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/0d4fc026314376d3a4232776132b988d766ee588/security/manager/ssl/metrics.yaml#L31", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "data_storage_site_security_service_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873080" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873080" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-01-06 00:17:16", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of entries stored in the SiteSecurityServiceState nsIDataStorage", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "66adb93517c20a1e191569ac9d0b27aaadfd2bda", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L57", + "type": "quantity", + "unit": "entries", + "version": 0, + "repos": [ + "gecko" + ] + }, + "deletion_request_sync_device_id": { + "bugs": [ + "https://bugzil.la/1604844" + ], + "data_reviews": [ + "https://bugzil.la/1604844" + ], + "dates": { + "first": "2024-11-15 14:38:31", + "last": "2025-02-04 14:27:22" + }, + "description": "An identifier used by sync ping, to identify the current Firefox profile for a specific Account. This metric was generated to correspond to the Legacy Telemetry scalar deletion.request.sync_device_id.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd2709bd2527af7d21a96fe08d3973430b8fd1a1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [], + "notification_emails": [ + "rfkelly@mozilla.com", + "sync-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "deletion-request" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L625", + "telemetry_mirror": "DELETION_REQUEST_SYNC_DEVICE_ID", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_accessible_context_menu_item_activated": { + "bugs": [ + "https://bugzil.la/1507870", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1507870", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times a context menu item for an accessible object was activated (with mouse or keyboard) from the context menu opened in the accessibility tree. Keyed by the id of the context menu item. This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.accessible_context_menu_item_activated.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Accessibility Tools" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/accessibility/metrics.yaml#L77", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_ACCESSIBLE_CONTEXT_MENU_ITEM_ACTIVATED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_accessible_context_menu_opened": { + "bugs": [ + "https://bugzil.la/1507870", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1507870", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times a context menu was opened for an accessible object in the accessibility tree. This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.accessible_context_menu_opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Accessibility Tools" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/accessibility/metrics.yaml#L58", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_ACCESSIBLE_CONTEXT_MENU_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_audit_activated": { + "bugs": [ + "https://bugzil.la/1548241", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1548241", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times accessibility audit was activated (with mouse or keyboard) from the accessibility panel's toolbar. Keyed by the audit filter type (e.g. \"CONTRAST\"). This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.audit_activated.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Accessibility Tools" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/accessibility/metrics.yaml#L98", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_AUDIT_ACTIVATED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_node_inspected_count": { + "bugs": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times a DOM node was inspected from within the Accessibility tool. This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.node_inspected_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Accessibility Tools" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/accessibility/metrics.yaml#L14", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_NODE_INSPECTED_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_opened_count": { + "bugs": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-08 00:13:37", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools Accessibility tool has been opened. This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.opened_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f92eb1396b8b5d3cb971fa9b43c722a07de8a66c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L2041", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_OPENED_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_picker_used_count": { + "bugs": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-08 00:13:37", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the picker tool has been used in DevTools Accessibility panel. This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.picker_used_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f92eb1396b8b5d3cb971fa9b43c722a07de8a66c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L2061", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_PICKER_USED_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_select_accessible_for_node": { + "bugs": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times an accessible object was inspected from outside the Accessibility tool (navigation to Accessibility panel). Keyed by the source of user action (inspector context menu, browser context menu, etc). This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.select_accessible_for_node.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Accessibility Tools" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/accessibility/metrics.yaml#L35", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_SELECT_ACCESSIBLE_FOR_NODE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_accessibility_simulation_activated": { + "bugs": [ + "https://bugzil.la/1567200", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1567200", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times accessibility simulation was activated (with mouse or keyboard) from the accessibility panel's toolbar. Keyed by the simulation type (e.g. \"DEUTERANOPIA\"). This metric was generated to correspond to the Legacy Telemetry scalar devtools.accessibility.simulation_activated.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Accessibility Tools" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/accessibility/metrics.yaml#L118", + "telemetry_mirror": "DEVTOOLS_ACCESSIBILITY_SIMULATION_ACTIVATED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_changesview_opened_count": { + "bugs": [ + "https://bugzil.la/1509890" + ], + "data_reviews": [ + "https://bugzil.la/1509890" + ], + "dates": { + "first": "2024-11-08 00:13:37", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the Changes panel has been opened. This metric was generated to correspond to the Legacy Telemetry scalar devtools.changesview.opened_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f92eb1396b8b5d3cb971fa9b43c722a07de8a66c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "mbalfanz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L2083", + "telemetry_mirror": "DEVTOOLS_CHANGESVIEW_OPENED_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_current_theme": { + "bugs": [ + "https://bugzil.la/1396811" + ], + "data_reviews": [ + "https://bugzil.la/1396811" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times DevTools was opened, keyed by theme. This metric was generated to correspond to the Legacy Telemetry scalar devtools.current_theme.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Framework" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/framework/metrics.yaml#L14", + "telemetry_mirror": "DEVTOOLS_CURRENT_THEME", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_grid_gridinspector_opened": { + "bugs": [ + "https://bugzil.la/1373483" + ], + "data_reviews": [ + "https://bugzil.la/1373483" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools grid inspector was opened from the grid view. This metric was generated to correspond to the Legacy Telemetry scalar devtools.grid.gridinspector.opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L138", + "telemetry_mirror": "DEVTOOLS_GRID_GRIDINSPECTOR_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_inspector_node_selection_count": { + "bugs": [ + "https://bugzil.la/1550794" + ], + "data_reviews": [ + "https://bugzil.la/1550794" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times a different node is marked as selected in the Inspector regardless of the cause: context menu, manual selection in markup view, etc. This metric was generated to correspond to the Legacy Telemetry scalar devtools.inspector.node_selection_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "mbalfanz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L34", + "telemetry_mirror": "DEVTOOLS_INSPECTOR_NODE_SELECTION_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_inspector_three_pane_enabled": { + "bugs": [ + "https://bugzil.la/1437881", + "https://bugzil.la/1566395" + ], + "data_reviews": [ + "https://bugzil.la/1437881", + "https://bugzil.la/1566395" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools inspector was opened with the 3 pane inspector enabled, keyed by true/false. This metric was generated to correspond to the Legacy Telemetry scalar devtools.inspector.three_pane_enabled.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "gl@mozilla.com", + "mbalfanz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L14", + "telemetry_mirror": "DEVTOOLS_INSPECTOR_THREE_PANE_ENABLED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_layout_flexboxhighlighter_opened": { + "bugs": [ + "https://bugzil.la/1509907" + ], + "data_reviews": [ + "https://bugzil.la/1509907" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools flexbox highlighter was activated from the layout view. This metric was generated to correspond to the Legacy Telemetry scalar devtools.layout.flexboxhighlighter.opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L53", + "telemetry_mirror": "DEVTOOLS_LAYOUT_FLEXBOXHIGHLIGHTER_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_activate_responsive_design": { + "bugs": [ + "https://bugzil.la/1455273" + ], + "data_reviews": [ + "https://bugzil.la/1455273" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User activates the responsive_design or split_console in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.activate#responsive_design.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, left, right, window, page or other.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L14", + "telemetry_mirror": "DevtoolsMain_Activate_ResponsiveDesign", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_activate_split_console": { + "bugs": [ + "https://bugzil.la/1455273" + ], + "data_reviews": [ + "https://bugzil.la/1455273" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User activates the responsive_design or split_console in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.activate#split_console.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, left, right, window, page or other.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L48", + "telemetry_mirror": "DevtoolsMain_Activate_SplitConsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_add_breakpoint_debugger": { + "bugs": [ + "https://bugzil.la/1463123" + ], + "data_reviews": [ + "https://bugzil.la/1463123" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has added a breakpoint to a script. This event was generated to correspond to the Legacy Telemetry event devtools.main.add_breakpoint#debugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L62", + "telemetry_mirror": "DevtoolsMain_AddBreakpoint_Debugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_blackbox_debugger": { + "bugs": [ + "https://bugzil.la/1463126" + ], + "data_reviews": [ + "https://bugzil.la/1463126" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User clicked the blackbox button to blackbox a script. This event was generated to correspond to the Legacy Telemetry event devtools.main.blackbox#debugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L87", + "telemetry_mirror": "DevtoolsMain_Blackbox_Debugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_close_adbg_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1504173" + ], + "data_reviews": [ + "https://bugzil.la/1504173" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes about:debugging. This event was generated to correspond to the Legacy Telemetry event devtools.main.close_adbg#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L145", + "telemetry_mirror": "DevtoolsMain_CloseAdbg_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_close_tools": { + "bugs": [ + "https://bugzil.la/1453312" + ], + "data_reviews": [ + "https://bugzil.la/1453312" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.close#tools.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L112", + "telemetry_mirror": "DevtoolsMain_Close_Tools", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_connection_attempt_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1549970" + ], + "data_reviews": [ + "https://bugzil.la/1549970" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User is trying to connect to a remote runtime. This event was generated to correspond to the Legacy Telemetry event devtools.main.connection_attempt#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "connection_id": { + "description": "Randomly generated id to keep to group various events related to the same connection attempt.\n", + "type": "string" + }, + "connection_type": { + "description": "Connection type\n", + "type": "string" + }, + "runtime_id": { + "description": "Random id generated to track events related to a single runtime\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "status": { + "description": "One of (cancelled, failed, not responding, start, success).\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L174", + "telemetry_mirror": "DevtoolsMain_ConnectionAttempt_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_continue_debugger": { + "bugs": [ + "https://bugzil.la/1463122" + ], + "data_reviews": [ + "https://bugzil.la/1463122" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has pressed the continue button on a paused script. This event was generated to correspond to the Legacy Telemetry event devtools.main.continue#debugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L215", + "telemetry_mirror": "DevtoolsMain_Continue_Debugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_deactivate_responsive_design": { + "bugs": [ + "https://bugzil.la/1455275" + ], + "data_reviews": [ + "https://bugzil.la/1455275" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User deactivates the responsive_design or split_console in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.deactivate#responsive_design.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L240", + "telemetry_mirror": "DevtoolsMain_Deactivate_ResponsiveDesign", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_deactivate_split_console": { + "bugs": [ + "https://bugzil.la/1455275" + ], + "data_reviews": [ + "https://bugzil.la/1455275" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User deactivates the responsive_design or split_console in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.deactivate#split_console.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L274", + "telemetry_mirror": "DevtoolsMain_Deactivate_SplitConsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_device_added_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521507" + ], + "data_reviews": [ + "https://bugzil.la/1521507" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "A new device was detected in about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.device_added#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "connection_type": { + "description": "Connection type\n", + "type": "string" + }, + "device_name": { + "description": "Device name\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L288", + "telemetry_mirror": "DevtoolsMain_DeviceAdded_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_device_removed_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521507" + ], + "data_reviews": [ + "https://bugzil.la/1521507" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "A previously listed device was removed in about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.device_removed#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "connection_type": { + "description": "Connection type\n", + "type": "string" + }, + "device_name": { + "description": "Device name\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L321", + "telemetry_mirror": "DevtoolsMain_DeviceRemoved_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_edit_html_inspector": { + "bugs": [ + "https://bugzil.la/1463080" + ], + "data_reviews": [ + "https://bugzil.la/1463080" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User is editing HTML via the context menu item in the markup view. This event was generated to correspond to the Legacy Telemetry event devtools.main.edit_html#inspector.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "made_changes": { + "description": "Indicates whether changes were made.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "The amount of time in ms that the HTML editor was open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L354", + "telemetry_mirror": "DevtoolsMain_EditHtml_Inspector", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_edit_resend_netmonitor": { + "bugs": [ + "https://bugzil.la/1463171" + ], + "data_reviews": [ + "https://bugzil.la/1463171" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has executed edit / resend in the netmonitor. This event was generated to correspond to the Legacy Telemetry event devtools.main.edit_resend#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The toolbox session start time e.g. 13963.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L387", + "telemetry_mirror": "DevtoolsMain_EditResend_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_edit_rule_ruleview": { + "bugs": [ + "https://bugzil.la/1463081" + ], + "data_reviews": [ + "https://bugzil.la/1463081" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User is editing a CSS rule by clicking on or next to a CSS property, enabling / disabling a rule or creating a new property. This event was generated to correspond to the Legacy Telemetry event devtools.main.edit_rule#ruleview.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L412", + "telemetry_mirror": "DevtoolsMain_EditRule_Ruleview", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_accessibility": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#accessibility.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L438", + "telemetry_mirror": "DevtoolsMain_Enter_Accessibility", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_application": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#application.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L487", + "telemetry_mirror": "DevtoolsMain_Enter_Application", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_dom": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#dom.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L500", + "telemetry_mirror": "DevtoolsMain_Enter_Dom", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_fake_tool4242": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#fakeTool4242.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L656", + "telemetry_mirror": "DevtoolsMain_Enter_Faketool4242", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_inspector": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#inspector.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L513", + "telemetry_mirror": "DevtoolsMain_Enter_Inspector", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_jsdebugger": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#jsdebugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L526", + "telemetry_mirror": "DevtoolsMain_Enter_Jsdebugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_memory": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#memory.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L539", + "telemetry_mirror": "DevtoolsMain_Enter_Memory", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_netmonitor": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L552", + "telemetry_mirror": "DevtoolsMain_Enter_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_options": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#options.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L565", + "telemetry_mirror": "DevtoolsMain_Enter_Options", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_other": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#other.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L643", + "telemetry_mirror": "DevtoolsMain_Enter_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_performance": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#performance.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L578", + "telemetry_mirror": "DevtoolsMain_Enter_Performance", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_storage": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#storage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L591", + "telemetry_mirror": "DevtoolsMain_Enter_Storage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_styleeditor": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#styleeditor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L604", + "telemetry_mirror": "DevtoolsMain_Enter_Styleeditor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_test_blank_panel": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#testBlankPanel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L669", + "telemetry_mirror": "DevtoolsMain_Enter_Testblankpanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_test_tool": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#testTool.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L682", + "telemetry_mirror": "DevtoolsMain_Enter_Testtool", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_test_tool1072208": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#testTool1072208.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L708", + "telemetry_mirror": "DevtoolsMain_Enter_Testtool1072208", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_testtool1": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#testtool1.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L695", + "telemetry_mirror": "DevtoolsMain_Enter_Testtool1", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_testtool2": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#testtool2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L721", + "telemetry_mirror": "DevtoolsMain_Enter_Testtool2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_webconsole": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L617", + "telemetry_mirror": "DevtoolsMain_Enter_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_enter_whatsnew": { + "bugs": [ + "https://bugzil.la/1441070" + ], + "data_reviews": [ + "https://bugzil.la/1441070" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.enter#whatsnew.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cold": { + "description": "Is this the first time the current panel has been opened in this toolbox?\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "message_count": { + "description": "The number of cached console messages.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "start_state": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, unknown etc.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L630", + "telemetry_mirror": "DevtoolsMain_Enter_Whatsnew", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_execute_js_webconsole": { + "bugs": [ + "https://bugzil.la/1463083" + ], + "data_reviews": [ + "https://bugzil.la/1463083" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has executed some JS in the Web Console. This event was generated to correspond to the Legacy Telemetry event devtools.main.execute_js#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "input": { + "description": "Indicates from which input the command was evaluated (\"inline\" for regular input, \"multiline\" for editor mode).\n", + "type": "string" + }, + "lines": { + "description": "The number of lines contained in the command.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L734", + "telemetry_mirror": "DevtoolsMain_ExecuteJs_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_accessibility": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#accessibility.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L797", + "telemetry_mirror": "DevtoolsMain_Exit_Accessibility", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_application": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#application.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L842", + "telemetry_mirror": "DevtoolsMain_Exit_Application", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_dom": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#dom.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L855", + "telemetry_mirror": "DevtoolsMain_Exit_Dom", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_fake_tool4242": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#fakeTool4242.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1011", + "telemetry_mirror": "DevtoolsMain_Exit_Faketool4242", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_inspector": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#inspector.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L868", + "telemetry_mirror": "DevtoolsMain_Exit_Inspector", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_jsdebugger": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#jsdebugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L881", + "telemetry_mirror": "DevtoolsMain_Exit_Jsdebugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_memory": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#memory.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L894", + "telemetry_mirror": "DevtoolsMain_Exit_Memory", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_netmonitor": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L907", + "telemetry_mirror": "DevtoolsMain_Exit_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_options": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#options.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L920", + "telemetry_mirror": "DevtoolsMain_Exit_Options", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_other": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#other.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L998", + "telemetry_mirror": "DevtoolsMain_Exit_Other", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_performance": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#performance.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L933", + "telemetry_mirror": "DevtoolsMain_Exit_Performance", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_storage": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#storage.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L946", + "telemetry_mirror": "DevtoolsMain_Exit_Storage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_styleeditor": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#styleeditor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L959", + "telemetry_mirror": "DevtoolsMain_Exit_Styleeditor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_test_blank_panel": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#testBlankPanel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1024", + "telemetry_mirror": "DevtoolsMain_Exit_Testblankpanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_test_tool": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#testTool.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1037", + "telemetry_mirror": "DevtoolsMain_Exit_Testtool", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_test_tool1072208": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#testTool1072208.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1063", + "telemetry_mirror": "DevtoolsMain_Exit_Testtool1072208", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_testtool1": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#testtool1.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1050", + "telemetry_mirror": "DevtoolsMain_Exit_Testtool1", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_testtool2": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#testtool2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1076", + "telemetry_mirror": "DevtoolsMain_Exit_Testtool2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_webconsole": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L972", + "telemetry_mirror": "DevtoolsMain_Exit_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_exit_whatsnew": { + "bugs": [ + "https://bugzil.la/1455270" + ], + "data_reviews": [ + "https://bugzil.la/1455270" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User closes a tool in the devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.exit#whatsnew.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "next_panel": { + "description": "The name of the panel closed or other.\n", + "type": "string" + }, + "panel_name": { + "description": "The name of the panel opened or other\n", + "type": "string" + }, + "reason": { + "description": "debuggerStatement, breakpoint, exception, tab_switch, toolbox_show, initial_panel, toggle_settings_off, toggle_settings_on, key_shortcut, select_next_key, select_prev_key, tool_unloaded, inspect_dom, toolbox_closed, unknown etc.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L985", + "telemetry_mirror": "DevtoolsMain_Exit_Whatsnew", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_filters_changed_netmonitor": { + "bugs": [ + "https://bugzil.la/1463144", + "https://bugzil.la/1463095" + ], + "data_reviews": [ + "https://bugzil.la/1463144", + "https://bugzil.la/1463095" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has changed filters in the web console. This event was generated to correspond to the Legacy Telemetry event devtools.main.filters_changed#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "active": { + "description": "Comma separated list of active filters.\n", + "type": "string" + }, + "inactive": { + "description": "Comma separated list of inactive filters.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "trigger": { + "description": "The cause of the filter change: error, warn, log, info, debug, css, netxhr, net, text or reset and all, html, css, js, xhr, fonts, images, media, ws or other for netmonitor\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1089", + "telemetry_mirror": "DevtoolsMain_FiltersChanged_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_filters_changed_webconsole": { + "bugs": [ + "https://bugzil.la/1463144", + "https://bugzil.la/1463095" + ], + "data_reviews": [ + "https://bugzil.la/1463144", + "https://bugzil.la/1463095" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has changed filters in the web console. This event was generated to correspond to the Legacy Telemetry event devtools.main.filters_changed#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "active": { + "description": "Comma separated list of active filters.\n", + "type": "string" + }, + "inactive": { + "description": "Comma separated list of inactive filters.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "trigger": { + "description": "The cause of the filter change: error, warn, log, info, debug, css, netxhr, net, text or reset and all, html, css, js, xhr, fonts, images, media, ws or other for netmonitor\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1128", + "telemetry_mirror": "DevtoolsMain_FiltersChanged_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_inspect_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1504173" + ], + "data_reviews": [ + "https://bugzil.la/1504173" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has clicked on the inspect button of one of the debug targets of aboutdebugging. This event was generated to correspond to the Legacy Telemetry event devtools.main.inspect#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "runtime_type": { + "description": "The runtime type\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "target_type": { + "description": "The target type\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1141", + "telemetry_mirror": "DevtoolsMain_Inspect_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_jump_to_definition_webconsole": { + "bugs": [ + "https://bugzil.la/1463101" + ], + "data_reviews": [ + "https://bugzil.la/1463101" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has clicked \"Jump to definition\" icon (next to logged functions) in the web console. This event was generated to correspond to the Legacy Telemetry event devtools.main.jump_to_definition#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1175", + "telemetry_mirror": "DevtoolsMain_JumpToDefinition_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_jump_to_source_webconsole": { + "bugs": [ + "https://bugzil.la/1463092" + ], + "data_reviews": [ + "https://bugzil.la/1463092" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has clicked a link to a source file in the web console. This event was generated to correspond to the Legacy Telemetry event devtools.main.jump_to_source#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1201", + "telemetry_mirror": "DevtoolsMain_JumpToSource_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_object_expanded_webconsole": { + "bugs": [ + "https://bugzil.la/1463104" + ], + "data_reviews": [ + "https://bugzil.la/1463104" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has expanded an object in the web console. This event was generated to correspond to the Legacy Telemetry event devtools.main.object_expanded#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1226", + "telemetry_mirror": "DevtoolsMain_ObjectExpanded_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_open_adbg_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1504173" + ], + "data_reviews": [ + "https://bugzil.la/1504173" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens about:debugging. This event was generated to correspond to the Legacy Telemetry event devtools.main.open_adbg#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1302", + "telemetry_mirror": "DevtoolsMain_OpenAdbg_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_open_tools": { + "bugs": [ + "https://bugzil.la/1416024", + "https://bugzil.la/1456984" + ], + "data_reviews": [ + "https://bugzil.la/1416024", + "https://bugzil.la/1456984" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User opens devtools toolbox. This event was generated to correspond to the Legacy Telemetry event devtools.main.open#tools.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "entrypoint": { + "description": "How was the toolbox opened? CommandLine, ContextMenu, HamburgerMenu, KeyShortcut, SessionRestore, SystemMenu or SlowScript\n", + "type": "string" + }, + "first_panel": { + "description": "The name of the first panel opened.\n", + "type": "string" + }, + "host": { + "description": "Toolbox host (positioning): bottom, side, window or other.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "shortcut": { + "description": "The key combination pressed. Used only in the case that entrypoint === KeyShortcut.\n", + "type": "string" + }, + "splitconsole": { + "description": "Indicates whether the split console was open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + }, + "width": { + "description": "Toolbox width rounded up to the nearest 50px.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1251", + "telemetry_mirror": "DevtoolsMain_Open_Tools", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_pause_debugger": { + "bugs": [ + "https://bugzil.la/1463118" + ], + "data_reviews": [ + "https://bugzil.la/1463118" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Debugger has paused in a script due to a breakpoint or exception. This event was generated to correspond to the Legacy Telemetry event devtools.main.pause#debugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "lib_stacks": { + "description": "Number of collapsed callstacks in the call tree. These are call stacks that are part of external libraries e.g. react, which are collapsed by default.\n", + "type": "string" + }, + "reason": { + "description": "caught-exception, uncaught-exception, pausing, debugger-statement or breakpoint.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1364", + "telemetry_mirror": "DevtoolsMain_Pause_Debugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_pause_on_exceptions_debugger": { + "bugs": [ + "https://bugzil.la/1463117" + ], + "data_reviews": [ + "https://bugzil.la/1463117" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has changed pausing behaviour in the debugger. This event was generated to correspond to the Legacy Telemetry event devtools.main.pause_on_exceptions#debugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "caught_exceptio": { + "description": "Pause on caught exceptions is checked.\n", + "type": "string" + }, + "exceptions": { + "description": "Pause on exceptions is checked.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1331", + "telemetry_mirror": "DevtoolsMain_PauseOnExceptions_Debugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_persist_changed_netmonitor": { + "bugs": [ + "https://bugzil.la/1531395", + "https://bugzil.la/1542312" + ], + "data_reviews": [ + "https://bugzil.la/1531395", + "https://bugzil.la/1542312" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has changed log persist status. This event was generated to correspond to the Legacy Telemetry event devtools.main.persist_changed#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1397", + "telemetry_mirror": "DevtoolsMain_PersistChanged_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_persist_changed_webconsole": { + "bugs": [ + "https://bugzil.la/1531395", + "https://bugzil.la/1542312" + ], + "data_reviews": [ + "https://bugzil.la/1531395", + "https://bugzil.la/1542312" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has changed log persist status. This event was generated to correspond to the Legacy Telemetry event devtools.main.persist_changed#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1424", + "telemetry_mirror": "DevtoolsMain_PersistChanged_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_pretty_print_debugger": { + "bugs": [ + "https://bugzil.la/1463125" + ], + "data_reviews": [ + "https://bugzil.la/1463125" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User clicked the pretty print button to pretty print a script. This event was generated to correspond to the Legacy Telemetry event devtools.main.pretty_print#debugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1437", + "telemetry_mirror": "DevtoolsMain_PrettyPrint_Debugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_remove_breakpoint_debugger": { + "bugs": [ + "https://bugzil.la/1463124" + ], + "data_reviews": [ + "https://bugzil.la/1463124" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has removed a breakpoint from a script. This event was generated to correspond to the Legacy Telemetry event devtools.main.remove_breakpoint#debugger.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1462", + "telemetry_mirror": "DevtoolsMain_RemoveBreakpoint_Debugger", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_reverse_search_webconsole": { + "bugs": [ + "https://bugzil.la/1489489" + ], + "data_reviews": [ + "https://bugzil.la/1489489" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has toggled, navigated or evaluated expressions from reverse search . This event was generated to correspond to the Legacy Telemetry event devtools.main.reverse_search#webconsole.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "functionality": { + "description": "Indicates functionality of reverse search being accessed.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L767", + "telemetry_mirror": "DevtoolsMain_ReverseSearch_Webconsole", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_runtime_added_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521507" + ], + "data_reviews": [ + "https://bugzil.la/1521507" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "A new remote runtime has been detected in about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.runtime_added#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "connection_type": { + "description": "Connection type\n", + "type": "string" + }, + "device_name": { + "description": "Name of the device on which the runtime is running (optional)\n", + "type": "string" + }, + "runtime_id": { + "description": "Random id generated to track events related to a single runtime\n", + "type": "string" + }, + "runtime_name": { + "description": "Name of the runtime\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1487", + "telemetry_mirror": "DevtoolsMain_RuntimeAdded_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_runtime_connected_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521507", + "https://bugzil.la/1530997" + ], + "data_reviews": [ + "https://bugzil.la/1521507", + "https://bugzil.la/1530997" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Connection was established with a remote runtime in about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.runtime_connected#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "connection_type": { + "description": "Connection type\n", + "type": "string" + }, + "device_name": { + "description": "Name of the device on which the runtime is running (optional)\n", + "type": "string" + }, + "runtime_id": { + "description": "Random id generated to track events related to a single runtime\n", + "type": "string" + }, + "runtime_name": { + "description": "Name of the runtime\n", + "type": "string" + }, + "runtime_os": { + "description": "Operating system on which the runtime is running (eg Android or Linux)\n", + "type": "string" + }, + "runtime_version": { + "description": "Version of the runtime (eg 67.0a1)\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1528", + "telemetry_mirror": "DevtoolsMain_RuntimeConnected_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_runtime_disconnected_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521507" + ], + "data_reviews": [ + "https://bugzil.la/1521507" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Connection was lost with a remote runtime in about debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.runtime_disconnected#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "connection_type": { + "description": "Connection type\n", + "type": "string" + }, + "device_name": { + "description": "Name of the device on which the runtime is running (optional)\n", + "type": "string" + }, + "runtime_id": { + "description": "Random id generated to track events related to a single runtime\n", + "type": "string" + }, + "runtime_name": { + "description": "Name of the runtime\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1579", + "telemetry_mirror": "DevtoolsMain_RuntimeDisconnected_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_runtime_removed_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521507" + ], + "data_reviews": [ + "https://bugzil.la/1521507" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "A previously listed runtime was removed in about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.runtime_removed#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "connection_type": { + "description": "Connection type\n", + "type": "string" + }, + "device_name": { + "description": "Name of the device on which the runtime is running (optional)\n", + "type": "string" + }, + "runtime_id": { + "description": "Random id generated to track events related to a single runtime\n", + "type": "string" + }, + "runtime_name": { + "description": "Name of the runtime\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1620", + "telemetry_mirror": "DevtoolsMain_RuntimeRemoved_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_select_page_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1504173", + "https://bugzil.la/1643253" + ], + "data_reviews": [ + "https://bugzil.la/1504173", + "https://bugzil.la/1643253" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User navigates to a new page of an application such as about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.select_page#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "page_type": { + "description": "Type of page the user navigates to (this-firefox, connect, runtime)\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1661", + "telemetry_mirror": "DevtoolsMain_SelectPage_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_select_page_application": { + "bugs": [ + "https://bugzil.la/1504173", + "https://bugzil.la/1643253" + ], + "data_reviews": [ + "https://bugzil.la/1504173", + "https://bugzil.la/1643253" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User navigates to a new page of an application such as about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.select_page#application.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "page_type": { + "description": "Type of page the user navigates to (this-firefox, connect, runtime)\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1693", + "telemetry_mirror": "DevtoolsMain_SelectPage_Application", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_select_ws_frame_netmonitor": { + "bugs": [ + "https://bugzil.la/1555638" + ], + "data_reviews": [ + "https://bugzil.la/1555638" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has selected a WebSocket frame. This event was generated to correspond to the Legacy Telemetry event devtools.main.select_ws_frame#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1737", + "telemetry_mirror": "DevtoolsMain_SelectWsFrame_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_show_profiler_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521511" + ], + "data_reviews": [ + "https://bugzil.la/1521511" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has clicked on the \"Open Profiler\" button in a runtime page of about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.show_profiler#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "runtime_id": { + "description": "Random id generated to track events related to a single runtime\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1707", + "telemetry_mirror": "DevtoolsMain_ShowProfiler_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_sidepanel_changed_inspector": { + "bugs": [ + "https://bugzil.la/1463083", + "https://bugzil.la/1463169" + ], + "data_reviews": [ + "https://bugzil.la/1463083", + "https://bugzil.la/1463169" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has switched sidepanel tabs. This event was generated to correspond to the Legacy Telemetry event devtools.main.sidepanel_changed#inspector.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "newpanel": { + "description": "The panel the user is switching to\n", + "type": "string" + }, + "oldpanel": { + "description": "The panel the user is switching from\n", + "type": "string" + }, + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1762", + "telemetry_mirror": "DevtoolsMain_SidepanelChanged_Inspector", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_sidepanel_changed_netmonitor": { + "bugs": [ + "https://bugzil.la/1463083", + "https://bugzil.la/1463169" + ], + "data_reviews": [ + "https://bugzil.la/1463083", + "https://bugzil.la/1463169" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has switched sidepanel tabs. This event was generated to correspond to the Legacy Telemetry event devtools.main.sidepanel_changed#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "newpanel": { + "description": "The panel the user is switching to\n", + "type": "string" + }, + "oldpanel": { + "description": "The panel the user is switching from\n", + "type": "string" + }, + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1801", + "telemetry_mirror": "DevtoolsMain_SidepanelChanged_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_start_worker_application": { + "bugs": [ + "https://bugzil.la/1643253" + ], + "data_reviews": [ + "https://bugzil.la/1643253" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User manually starts a service worker This event was generated to correspond to the Legacy Telemetry event devtools.main.start_worker#application.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1814", + "telemetry_mirror": "DevtoolsMain_StartWorker_Application", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_throttle_changed_netmonitor": { + "bugs": [ + "https://bugzil.la/1463147" + ], + "data_reviews": [ + "https://bugzil.la/1463147" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has changed the throttle setting in the netmonitor. This event was generated to correspond to the Legacy Telemetry event devtools.main.throttle_changed#netmonitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "No throttling, GPRS, Regular 2G, Good 2G, Regular 3G, Good 3G, Regular 4G / LTE, DSL, WI-FI, or Offline.\n", + "type": "string" + }, + "session_id": { + "description": "The toolbox session start time e.g. 13963.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1839", + "telemetry_mirror": "DevtoolsMain_ThrottleChanged_Netmonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_tool_timer_animationinspector": { + "bugs": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "data_reviews": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time a tool was opened for. This event was generated to correspond to the Legacy Telemetry event devtools.main.tool_timer#animationinspector.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "Time open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1868", + "telemetry_mirror": "DevtoolsMain_ToolTimer_Animationinspector", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_tool_timer_changesview": { + "bugs": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "data_reviews": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time a tool was opened for. This event was generated to correspond to the Legacy Telemetry event devtools.main.tool_timer#changesview.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "Time open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1929", + "telemetry_mirror": "DevtoolsMain_ToolTimer_Changesview", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_tool_timer_compatibilityview": { + "bugs": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "data_reviews": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time a tool was opened for. This event was generated to correspond to the Legacy Telemetry event devtools.main.tool_timer#compatibilityview.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "Time open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1903", + "telemetry_mirror": "DevtoolsMain_ToolTimer_Compatibilityview", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_tool_timer_computedview": { + "bugs": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "data_reviews": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time a tool was opened for. This event was generated to correspond to the Legacy Telemetry event devtools.main.tool_timer#computedview.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "Time open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1916", + "telemetry_mirror": "DevtoolsMain_ToolTimer_Computedview", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_tool_timer_fontinspector": { + "bugs": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "data_reviews": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time a tool was opened for. This event was generated to correspond to the Legacy Telemetry event devtools.main.tool_timer#fontinspector.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "Time open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1942", + "telemetry_mirror": "DevtoolsMain_ToolTimer_Fontinspector", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_tool_timer_layoutview": { + "bugs": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "data_reviews": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time a tool was opened for. This event was generated to correspond to the Legacy Telemetry event devtools.main.tool_timer#layoutview.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "Time open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1955", + "telemetry_mirror": "DevtoolsMain_ToolTimer_Layoutview", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_tool_timer_ruleview": { + "bugs": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "data_reviews": [ + "https://bugzil.la/1483817", + "https://bugzil.la/1639454" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of time a tool was opened for. This event was generated to correspond to the Legacy Telemetry event devtools.main.tool_timer#ruleview.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "os": { + "description": "The OS name and version e.g. \"Linux 4.4.0-1014-aws\", \"Darwin 14.5.0\", \"Windows_NT 6.1.7601\" or \"Windows_NT 10.0.15063.\" This can be used to make sense of data when a feature is only available from a particular operating system build number.\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "time_open": { + "description": "Time open.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1968", + "telemetry_mirror": "DevtoolsMain_ToolTimer_Ruleview", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_unregister_worker_application": { + "bugs": [ + "https://bugzil.la/1643253" + ], + "data_reviews": [ + "https://bugzil.la/1643253" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User manually unregisters a service worker registration This event was generated to correspond to the Legacy Telemetry event devtools.main.unregister_worker#application.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L1981", + "telemetry_mirror": "DevtoolsMain_UnregisterWorker_Application", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_main_update_conn_prompt_aboutdebugging": { + "bugs": [ + "https://bugzil.la/1521511" + ], + "data_reviews": [ + "https://bugzil.la/1521511" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "User has clicked on the \"Enable/Disable connection prompt\" button in a runtime page of about:debugging This event was generated to correspond to the Legacy Telemetry event devtools.main.update_conn_prompt#aboutdebugging.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "prompt_enabled": { + "description": "True if the user enables the prompt, false otherwise.\n", + "type": "string" + }, + "runtime_id": { + "description": "Random id generated to track events related to a single runtime\n", + "type": "string" + }, + "session_id": { + "description": "The start time of the session in milliseconds since epoch (Unix Timestamp) e.g. 1396381378123.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/shared/metrics.yaml#L2006", + "telemetry_mirror": "DevtoolsMain_UpdateConnPrompt_Aboutdebugging", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_markup_flexboxhighlighter_opened": { + "bugs": [ + "https://bugzil.la/1509907" + ], + "data_reviews": [ + "https://bugzil.la/1509907" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools flexbox highlighter was activated from the markup view. This metric was generated to correspond to the Legacy Telemetry scalar devtools.markup.flexboxhighlighter.opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L70", + "telemetry_mirror": "DEVTOOLS_MARKUP_FLEXBOXHIGHLIGHTER_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_markup_gridinspector_opened": { + "bugs": [ + "https://bugzil.la/1509907" + ], + "data_reviews": [ + "https://bugzil.la/1509907" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools grid inspector was opened from the markup view. This metric was generated to correspond to the Legacy Telemetry scalar devtools.markup.gridinspector.opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L104", + "telemetry_mirror": "DEVTOOLS_MARKUP_GRIDINSPECTOR_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_markup_scrollable_badge_clicked": { + "bugs": [ + "https://bugzil.la/1660818" + ], + "data_reviews": [ + "https://bugzil.la/1660818" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the scrollable inspector badge has been clicked. This metric was generated to correspond to the Legacy Telemetry scalar devtools.markup.scrollable.badge.clicked.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L230", + "telemetry_mirror": "DEVTOOLS_MARKUP_SCROLLABLE_BADGE_CLICKED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_responsive_open_trigger": { + "bugs": [ + "https://bugzil.la/1444497" + ], + "data_reviews": [ + "https://bugzil.la/1444497" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of Responsive Design Mode opens keyed by the UI entry point used. This metric was generated to correspond to the Legacy Telemetry scalar devtools.responsive.open_trigger.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Responsive Design Mode" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "jryans@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/responsive/metrics.yaml#L14", + "telemetry_mirror": "DEVTOOLS_RESPONSIVE_OPEN_TRIGGER", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_responsive_toolbox_opened_first": { + "bugs": [ + "https://bugzil.la/1444497" + ], + "data_reviews": [ + "https://bugzil.la/1444497" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of Responsive Design Mode opens with a toolbox already open. This metric was generated to correspond to the Legacy Telemetry scalar devtools.responsive.toolbox_opened_first.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Responsive Design Mode" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "jryans@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/responsive/metrics.yaml#L31", + "telemetry_mirror": "DEVTOOLS_RESPONSIVE_TOOLBOX_OPENED_FIRST", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_rules_flexboxhighlighter_opened": { + "bugs": [ + "https://bugzil.la/1509907" + ], + "data_reviews": [ + "https://bugzil.la/1509907" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools flexbox highlighter was activated from the rules view. This metric was generated to correspond to the Legacy Telemetry scalar devtools.rules.flexboxhighlighter.opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L87", + "telemetry_mirror": "DEVTOOLS_RULES_FLEXBOXHIGHLIGHTER_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_rules_gridinspector_opened": { + "bugs": [ + "https://bugzil.la/1373483" + ], + "data_reviews": [ + "https://bugzil.la/1373483" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools grid inspector was opened from the rules view. This metric was generated to correspond to the Legacy Telemetry scalar devtools.rules.gridinspector.opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L121", + "telemetry_mirror": "DEVTOOLS_RULES_GRIDINSPECTOR_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_shadowdom_reveal_link_clicked": { + "bugs": [ + "https://bugzil.la/1470128", + "https://bugzil.la/1566393" + ], + "data_reviews": [ + "https://bugzil.la/1470128", + "https://bugzil.la/1566393" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user clicked on any \"reveal\" link. \"reveal\" links are displayed in shadow dom trees in the markup view. This metric was generated to correspond to the Legacy Telemetry scalar devtools.shadowdom.reveal_link_clicked.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "jdescottes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L192", + "telemetry_mirror": "DEVTOOLS_SHADOWDOM_REVEAL_LINK_CLICKED", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_shadowdom_shadow_root_displayed": { + "bugs": [ + "https://bugzil.la/1470128", + "https://bugzil.la/1566393" + ], + "data_reviews": [ + "https://bugzil.la/1470128", + "https://bugzil.la/1566393" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the markup view displayed any #shadow-root element in the UI. This metric was generated to correspond to the Legacy Telemetry scalar devtools.shadowdom.shadow_root_displayed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "jdescottes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L155", + "telemetry_mirror": "DEVTOOLS_SHADOWDOM_SHADOW_ROOT_DISPLAYED", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_shadowdom_shadow_root_expanded": { + "bugs": [ + "https://bugzil.la/1470128", + "https://bugzil.la/1566393" + ], + "data_reviews": [ + "https://bugzil.la/1470128", + "https://bugzil.la/1566393" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the user expanded any #shadow-root element. This metric was generated to correspond to the Legacy Telemetry scalar devtools.shadowdom.shadow_root_expanded.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "jdescottes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L174", + "telemetry_mirror": "DEVTOOLS_SHADOWDOM_SHADOW_ROOT_EXPANDED", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_tool_registered": { + "bugs": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "data_reviews": [ + "https://bugzil.la/1447302", + "https://bugzil.la/1503568", + "https://bugzil.la/1587985" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded on enable tool checkbox check/uncheck in Developer Tools options panel. Boolean stating if the tool was enabled or disabled by the user. Keyed by tool id. Current default tools with their id's are defined in https://searchfox.org/mozilla- central/source/devtools/client/definitions.js This metric was generated to correspond to the Legacy Telemetry scalar devtools.tool.registered.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Framework" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "accessibility@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/framework/metrics.yaml#L30", + "telemetry_mirror": "DEVTOOLS_TOOL_REGISTERED", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_toolbox_tabs_reordered": { + "bugs": [ + "https://bugzil.la/1456551", + "https://bugzil.la/1566362" + ], + "data_reviews": [ + "https://bugzil.la/1456551", + "https://bugzil.la/1566362" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the DevTools tab was reordered. Keyed by tab's id. This metric was generated to correspond to the Legacy Telemetry scalar devtools.toolbox.tabs_reordered.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Framework" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org", + "daisuke@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/framework/metrics.yaml#L55", + "telemetry_mirror": "DEVTOOLS_TOOLBOX_TABS_REORDERED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "devtools_tooltip_shown": { + "bugs": [ + "https://bugzil.la/1553471" + ], + "data_reviews": [ + "https://bugzil.la/1553471" + ], + "dates": { + "first": "2024-11-12 00:21:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times a tooltip was shown, keyed by tooltip type. Currently supported types are \"image\", \"font-family\", \"inactive- css\", \"css-compatibility\", \"css-query-container\" and \"variable.\" This metric was generated to correspond to the Legacy Telemetry scalar devtools.tooltip.shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b80c76eeb1f01f7856cea40504b7f1bfcfa357ea", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "DevTools :: Inspector" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-developer-tools@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/devtools/client/inspector/metrics.yaml#L212", + "telemetry_mirror": "DEVTOOLS_TOOLTIP_SHOWN", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_blocklist_count": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of unusable addresses reported for each record\nThis metric was generated to correspond to the Legacy Telemetry linear histogram DNS_BLACKLIST_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 21, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L490", + "telemetry_mirror": "DNS_BLACKLIST_COUNT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_by_type_cleanup_age": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "DNS Cache Entry Age for by-type queries at Removal Time (minutes)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_BY_TYPE_CLEANUP_AGE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L52", + "telemetry_mirror": "DNS_BY_TYPE_CLEANUP_AGE", + "time_unit": "minute", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_by_type_failed_lookup_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a completed by-type resolution that has a negative answer (msec).\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_BY_TYPE_FAILED_LOOKUP_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L417", + "telemetry_mirror": "DNS_BY_TYPE_FAILED_LOOKUP_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_by_type_premature_eviction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "DNS Cache Entry Age for by-type queries at Removal Time of non-expired entries (minutes)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_BY_TYPE_PREMATURE_EVICTION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L86", + "telemetry_mirror": "DNS_BY_TYPE_PREMATURE_EVICTION", + "time_unit": "minute", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_by_type_succeeded_lookup_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1481251" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a completed by-type resolution that succeeded (msec).\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_BY_TYPE_SUCCEEDED_LOOKUP_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L434", + "telemetry_mirror": "DNS_BY_TYPE_SUCCEEDED_LOOKUP_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_cleanup_age": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "DNS Cache Entry Age at Removal Time (minutes)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_CLEANUP_AGE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L35", + "telemetry_mirror": "DNS_CLEANUP_AGE", + "time_unit": "minute", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_lookup_algorithm": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1434852" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1434852" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "DNS: lookup algorithm\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram DNS_LOOKUP_ALGORITHM.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "nativeOnly", + "trrRace", + "trrFirst", + "trrOnly", + "trrShadow" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L468", + "telemetry_mirror": "h#DNS_LOOKUP_ALGORITHM", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_lookup_method": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "DNS Lookup Type (hit, renewal, negative-hit, literal, overflow, network-first, network-shared)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram DNS_LOOKUP_METHOD2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L14", + "telemetry_mirror": "DNS_LOOKUP_METHOD2", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_native_lookup_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1434852" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1434852" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a completed native name resolution (msec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_NATIVE_LOOKUP_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L400", + "telemetry_mirror": "DNS_NATIVE_LOOKUP_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_native_queuing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470215" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470215" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in resolve queue waiting to getaddrinfo (msec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_NATIVE_QUEUING.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L451", + "telemetry_mirror": "DNS_NATIVE_QUEUING", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_premature_eviction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1460305" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1460305" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "DNS Cache Entry Age at Removal Time of non-expired entries (minutes)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_PREMATURE_EVICTION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L69", + "telemetry_mirror": "DNS_PREMATURE_EVICTION", + "time_unit": "minute", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_attempt_count": { + "bucket_count": 11, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times we attempted TRR for a successful lookup in TRR-first mode. Keyed by provider.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_ATTEMPT_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L379", + "telemetry_mirror": "TRR_ATTEMPT_COUNT", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_lookup_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1434852", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1640867", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1646452" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1434852", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1640867", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1646452" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a completed TRR resolution (msec); Keyed by TRR domain\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_TRR_LOOKUP_TIME3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L104", + "telemetry_mirror": "DNS_TRR_LOOKUP_TIME3", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_processing_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1608114" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1608114" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from the last received byte of the response until we have notified the consumer with a DNS record (msec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DNS_TRR_PROCESSING_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L126", + "telemetry_mirror": "DNS_TRR_PROCESSING_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_relevant_skip_reason_native_failed": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742408" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742408" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, if TRR was skipped and native failed, it lists the reason we may have skipped TRR, keyed by the provider. Does not include requests that intentionally skip TRR.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_RELEVANT_SKIP_REASON_NATIVE_FAILED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L267", + "telemetry_mirror": "TRR_RELEVANT_SKIP_REASON_NATIVE_FAILED", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_relevant_skip_reason_native_success": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742408" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742408" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, if TRR was skipped and native succeeded, it lists the reason we may have skipped TRR, keyed by the provider. Does not include requests that intentionally skip TRR.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_RELEVANT_SKIP_REASON_NATIVE_SUCCESS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L240", + "telemetry_mirror": "TRR_RELEVANT_SKIP_REASON_NATIVE_SUCCESS", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_relevant_skip_reason_trr_first": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742408" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1742408" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, it lists the reason we may have skipped TRR, keyed by the provider. Does not include requests that intentionally skip TRR.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_RELEVANT_SKIP_REASON_TRR_FIRST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L214", + "telemetry_mirror": "TRR_RELEVANT_SKIP_REASON_TRR_FIRST", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_relevant_skip_reason_trr_first_type_rec": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850367" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, it lists the reason we may have skipped TRR for HTTPS RR, keyed by the provider. Does not include requests that intentionally skip TRR.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_RELEVANT_SKIP_REASON_TRR_FIRST_TYPE_REC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L356", + "telemetry_mirror": "TRR_RELEVANT_SKIP_REASON_TRR_FIRST_TYPE_REC", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_skip_reason_native_failed": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, if TRR was skipped and native failed, it lists the reason we may have skipped TRR, keyed by the provider.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_SKIP_REASON_NATIVE_FAILED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L192", + "telemetry_mirror": "TRR_SKIP_REASON_NATIVE_FAILED", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_skip_reason_native_success": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, if TRR was skipped and native succeeded, it lists the reason we may have skipped TRR, keyed by the provider.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_SKIP_REASON_NATIVE_SUCCESS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L168", + "telemetry_mirror": "TRR_SKIP_REASON_NATIVE_SUCCESS", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_skip_reason_retry_failed": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, if TRR failed once and retried unsuccessfully, it lists the reason for the first failure, keyed by the provider.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_SKIP_REASON_RETRY_FAILED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L335", + "telemetry_mirror": "TRR_SKIP_REASON_RETRY_FAILED", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_skip_reason_retry_success": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, if TRR failed once and was successfully retried, it lists the reason for the first failure, keyed by the provider.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_SKIP_REASON_RETRY_SUCCESS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L314", + "telemetry_mirror": "TRR_SKIP_REASON_RETRY_SUCCESS", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_skip_reason_strict_mode": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1737198" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, it lists the reason we may have skipped TRR. The key is like `|` or just `` used when there was no second attempt.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_SKIP_REASON_STRICT_MODE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L292", + "telemetry_mirror": "TRR_SKIP_REASON_STRICT_MODE", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dns_trr_skip_reason_trr_first": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1649143", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699523" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When in TRR-first mode, it lists the reason we may have skipped TRR, keyed by the provider.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TRR_SKIP_REASON_TRR_FIRST2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: DNS" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/dns/metrics.yaml#L144", + "telemetry_mirror": "TRR_SKIP_REASON_TRR_FIRST2", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_build_id_mismatch": { + "bugs": [ + "https://bugzil.la/1366808" + ], + "data_reviews": [ + "https://bugzil.la/1366808" + ], + "dates": { + "first": "2024-10-24 10:52:57", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times the about:restartrequired page appeared due to a buildID mismatch between the parent and the content processes. This metric was generated to correspond to the Legacy Telemetry scalar dom.contentprocess.buildID_mismatch.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9c9981f0e34ea7672bc2d1302e55215436c75190", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "spohl@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L605", + "telemetry_mirror": "DOM_CONTENTPROCESS_BUILDID_MISMATCH", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_build_id_mismatch_false_positive": { + "bugs": [ + "https://bugzil.la/1651133", + "https://bugzil.la/1730045", + "https://bugzil.la/1754658", + "https://bugzil.la/1777404", + "https://bugzil.la/1817104", + "https://bugzil.la/1866197", + "https://bugzil.la/1928259" + ], + "data_reviews": [ + "https://bugzil.la/1651133", + "https://bugzil.la/1730045", + "https://bugzil.la/1754658", + "https://bugzil.la/1777404", + "https://bugzil.la/1817104", + "https://bugzil.la/1866197", + "https://bugzil.la/1928259" + ], + "dates": { + "first": "2024-11-02 00:16:30", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times a process crashed early but we could verify it was not because of buildID mismatch between the parent and the content processes. This metric was generated to correspond to the Legacy Telemetry scalar dom.contentprocess.buildID_mismatch_false_positive.\n", + "disabled": false, + "expires": 150, + "gecko_datapoint": "", + "git-commits": { + "first": "0303670e0e0ed920e80d09c5d0d5e66f45715aa0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "alissy@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L621", + "telemetry_mirror": "DOM_CONTENTPROCESS_BUILDID_MISMATCH_FALSE_POSITIVE", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_launch_is_sync": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "dates": { + "first": "2025-01-24 14:36:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a content process was launched synchronously (unnecessarily delaying UI response).\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram CONTENT_PROCESS_LAUNCH_IS_SYNC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6891217744188efc91d490baa11b88dc40c1b71f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "jld@mozilla.com", + "jimm@mozilla.com", + "mconley@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L762", + "telemetry_mirror": "h#CONTENT_PROCESS_LAUNCH_IS_SYNC", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_launch_mainthread": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "dates": { + "first": "2025-01-24 14:36:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent on the main thread during asynchronous content process launch.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CONTENT_PROCESS_LAUNCH_MAINTHREAD_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6891217744188efc91d490baa11b88dc40c1b71f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "jld@mozilla.com", + "jimm@mozilla.com", + "mconley@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L703", + "telemetry_mirror": "CONTENT_PROCESS_LAUNCH_MAINTHREAD_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_launch_total": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "dates": { + "first": "2025-01-24 14:36:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time elapsed during asynchronous content process launch, until the process is usable for loading content.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CONTENT_PROCESS_LAUNCH_TOTAL_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6891217744188efc91d490baa11b88dc40c1b71f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "jld@mozilla.com", + "jimm@mozilla.com", + "mconley@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L722", + "telemetry_mirror": "CONTENT_PROCESS_LAUNCH_TOTAL_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_os_priority_change_considered": { + "bugs": [ + "https://bugzil.la/1538987" + ], + "data_reviews": [ + "https://bugzil.la/1538987" + ], + "dates": { + "first": "2024-10-24 10:52:57", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times we've had the opportunity to change content process priority due to a tab switch or a tab being opened. This metric was generated to correspond to the Legacy Telemetry scalar dom.contentprocess.os_priority_change_considered.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9c9981f0e34ea7672bc2d1302e55215436c75190", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "mconley@mozilla.com", + "gsvelto@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L686", + "telemetry_mirror": "DOM_CONTENTPROCESS_OS_PRIORITY_CHANGE_CONSIDERED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_os_priority_lowered": { + "bugs": [ + "https://bugzil.la/1538987" + ], + "data_reviews": [ + "https://bugzil.la/1538987" + ], + "dates": { + "first": "2024-10-24 10:52:57", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times a content process has had its OS priority lowered due to only containing background tabs without audible media playing. This metric was generated to correspond to the Legacy Telemetry scalar dom.contentprocess.os_priority_lowered.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9c9981f0e34ea7672bc2d1302e55215436c75190", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "mconley@mozilla.com", + "gsvelto@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L650", + "telemetry_mirror": "DOM_CONTENTPROCESS_OS_PRIORITY_LOWERED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_os_priority_raised": { + "bugs": [ + "https://bugzil.la/1538987" + ], + "data_reviews": [ + "https://bugzil.la/1538987" + ], + "dates": { + "first": "2024-10-24 10:52:57", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times a content process has had its OS priority raised due to containing at least one foregrounded tab, or a tab with audible media has started playing in it. This metric was generated to correspond to the Legacy Telemetry scalar dom.contentprocess.os_priority_raised.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9c9981f0e34ea7672bc2d1302e55215436c75190", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "mconley@mozilla.com", + "gsvelto@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L668", + "telemetry_mirror": "DOM_CONTENTPROCESS_OS_PRIORITY_RAISED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_contentprocess_sync_launch": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1474991" + ], + "dates": { + "first": "2025-01-24 14:36:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Time elapsed during synchronous content process launch until the process is usable for loading content.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram CONTENT_PROCESS_SYNC_LAUNCH_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6891217744188efc91d490baa11b88dc40c1b71f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "jld@mozilla.com", + "jimm@mozilla.com", + "mconley@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L742", + "telemetry_mirror": "CONTENT_PROCESS_SYNC_LAUNCH_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_parentprocess_private_window_used": { + "bugs": [ + "https://bugzil.la/1491047" + ], + "data_reviews": [ + "https://bugzil.la/1491047" + ], + "dates": { + "first": "2024-10-24 10:52:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a private browsing window has been used in the session. This metric was generated to correspond to the Legacy Telemetry scalar dom.parentprocess.private_window_used.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9c9981f0e34ea7672bc2d1302e55215436c75190", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "ehsan+telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L785", + "telemetry_mirror": "DOM_PARENTPROCESS_PRIVATE_WINDOW_USED", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_parentprocess_process_launch_errors": { + "bugs": [ + "https://bugzil.la/1819311" + ], + "data_reviews": [ + "https://bugzil.la/1819311" + ], + "dates": { + "first": "2024-10-24 10:52:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Collect precise set of error code and calling site upon process creation failure path. This metric was generated to correspond to the Legacy Telemetry scalar dom.parentprocess.process_launch_errors.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9c9981f0e34ea7672bc2d1302e55215436c75190", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "alissy@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L801", + "telemetry_mirror": "DOM_PARENTPROCESS_PROCESS_LAUNCH_ERRORS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dom_quota_try_error_step": { + "bugs": [ + "https://bugzil.la/1665088" + ], + "data_reviews": [ + "https://bugzil.la/1665088" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "An event recorded on an error of the quota manager or its clients. Since errors are usually propagated up the call chain, all such propagation steps are recorded for an error. This is only active during specific contexts, in particular during storage initialization. No dynamic data is included in the event beyond the error code which will be added through Bug 1670555. This event was generated to correspond to the Legacy Telemetry event dom.quota.try.error#step.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "context": { + "description": "The context in which the error occurred, e.g. during a storage initialization. Telemetry events are only emitted for selected contexts.\n", + "type": "string" + }, + "frame_id": { + "description": "Optionally, the frame within stack_id.\n", + "type": "string" + }, + "process_id": { + "description": "Optionally, the process in which the error occured.\n", + "type": "string" + }, + "result": { + "description": "Optionally, the name of the error that occurred.\n", + "type": "string" + }, + "seq": { + "description": "Sequence number.\n", + "type": "quantity" + }, + "severity": { + "description": "One of WARNING or ERROR.\n", + "type": "string" + }, + "source_file": { + "description": "The name of the source code file where the error occurred.\n", + "type": "string" + }, + "source_line": { + "description": "The line within source_file where the error occurred.\n", + "type": "quantity" + }, + "stack_id": { + "description": "Optionally, the stack within process_id.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: Quota Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "jvarga@mozilla.com", + "storage-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/quota/metrics.yaml#L14", + "telemetry_mirror": "DomQuotaTry_Error_Step", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dotprint_android_dialog_requested": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1826188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1826188#c5" + ], + "dates": { + "first": "2023-05-15 13:10:08", + "last": "2024-01-05 00:43:51" + }, + "description": "Opening the Android print dialog was requested via window.print.\n", + "disabled": false, + "expires": 124, + "gecko_datapoint": "", + "git-commits": { + "first": "794635fb0d3fb02642b257ce77b7e08a7913283b", + "last": "fa78496e5ae7dc876139823ea04d5e953801bd8c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "GeckoView :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fa78496e5ae7dc876139823ea04d5e953801bd8c/mobile/android/actors/metrics.yaml#L45", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dotprint_failure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1826188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1826188#c5" + ], + "dates": { + "first": "2023-05-15 13:10:08", + "last": "2024-01-05 00:43:51" + }, + "description": "An error occured while setting up for printing. Default label is 'unknown'.\n", + "disabled": false, + "expires": 124, + "gecko_datapoint": "", + "git-commits": { + "first": "794635fb0d3fb02642b257ce77b7e08a7913283b", + "last": "fa78496e5ae7dc876139823ea04d5e953801bd8c" + }, + "labels": [ + "no_settings_service", + "no_settings", + "no_canonical_context", + "no_activity_context_delegate", + "no_activity_context", + "io_error", + "unknown" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "GeckoView :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fa78496e5ae7dc876139823ea04d5e953801bd8c/mobile/android/actors/metrics.yaml#L25", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "dotprint_requested": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1816151" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1816151#c3" + ], + "dates": { + "first": "2023-04-03 03:29:55", + "last": "2024-01-05 00:43:51" + }, + "description": "How many times window.print was requested.\n", + "disabled": false, + "expires": 124, + "gecko_datapoint": "", + "git-commits": { + "first": "98397ff4eac3d32b815fbb33bff147297fb972d7", + "last": "fa78496e5ae7dc876139823ea04d5e953801bd8c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "GeckoView :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "android-probes@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fa78496e5ae7dc876139823ea04d5e953801bd8c/mobile/android/actors/metrics.yaml#L14", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "downloads_added_file_extension": { + "bugs": [ + "https://bugzil.la/1627676", + "https://bugzil.la/1706355" + ], + "data_reviews": [ + "https://bugzil.la/1627676", + "https://bugzil.la/1706355" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when downloading a new file. This event was generated to correspond to the Legacy Telemetry event downloads.added#fileExtension.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "Possible values are in contained in DownloadList::kFileExtensions. All other downloads not in the list are marked as other.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Downloads API" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com", + "emalysz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/downloads/metrics.yaml#L14", + "telemetry_mirror": "Downloads_Added_Fileextension", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "downloads_file_opened": { + "bugs": [ + "https://bugzil.la/1627676" + ], + "data_reviews": [ + "https://bugzil.la/1627676" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times files were opened from the download panel. This metric was generated to correspond to the Legacy Telemetry scalar downloads.file_opened.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Downloads API" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com", + "emalysz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/downloads/metrics.yaml#L39", + "telemetry_mirror": "DOWNLOADS_FILE_OPENED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "downloads_user_action_on_blocked_download": { + "bucket_count": 4, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1722066" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1722066" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Users action on blocked download, keyed by verdict type (0=Number of blocked downloads, 1=Confirm block, 2=Confirm unblock)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram DOWNLOADS_USER_ACTION_ON_BLOCKED_DOWNLOAD.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Downloads API" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 3, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/downloads/metrics.yaml#L56", + "telemetry_mirror": "DOWNLOADS_USER_ACTION_ON_BLOCKED_DOWNLOAD", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_apis_dnr_evaluate_rules_count_max": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-04 15:50:39", + "last": "2025-02-04 14:27:22" + }, + "description": "Max amount of DNR rules being evaluated.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "bec14439c3da66640e7e771d5d6287598c655175", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L266", + "telemetry_mirror": "EXTENSIONS_APIS_DNR_EVALUATE_RULES_COUNT_MAX", + "type": "quantity", + "unit": "rules", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_apis_dnr_evaluate_rules_time": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes to evaluate DNR rules for one network request.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L248", + "telemetry_mirror": "WEBEXT_DNR_EVALUATE_RULES_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_apis_dnr_startup_cache_entries": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-04 15:50:39", + "last": "2025-02-04 14:27:22" + }, + "description": "Counters for startup cache data hits or misses on initializating\nDNR rules for extensions loaded on application startup.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "bec14439c3da66640e7e771d5d6287598c655175", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "hit", + "miss" + ], + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L205", + "telemetry_mirror": "EXTENSIONS_APIS_DNR_STARTUP_CACHE_ENTRIES", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_apis_dnr_startup_cache_read_size": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of data read from the DNR startup cache file.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L133", + "telemetry_mirror": "WEBEXT_DNR_STARTUPCACHE_READ_BYTES", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_apis_dnr_startup_cache_read_time": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes to read data into the DNR startup cache file.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L151", + "telemetry_mirror": "WEBEXT_DNR_STARTUPCACHE_READ_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_apis_dnr_startup_cache_write_size": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of data written to the DNR startup cache file.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L169", + "telemetry_mirror": "WEBEXT_DNR_STARTUPCACHE_WRITE_BYTES", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_apis_dnr_startup_cache_write_time": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes to write data into the DNR startup cache file.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L187", + "telemetry_mirror": "WEBEXT_DNR_STARTUPCACHE_WRITE_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_apis_dnr_validate_rules_time": { + "bugs": [ + "https://bugzilla.mozilla.org/1803363/", + "https://bugzilla.mozilla.org/1850890/", + "https://bugzilla.mozilla.org/1881399/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1803363#c11" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes to validate DNR rules of individual ruleset\nwhen dynamic or static rulesets have been loaded from disk.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L229", + "telemetry_mirror": "WEBEXT_DNR_VALIDATE_RULES_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_counters_browser_action_preload_result": { + "bugs": [ + "https://bugzilla.mozilla.org/1297167", + "https://bugzilla.mozilla.org/1513556", + "https://bugzilla.mozilla.org/1578225", + "https://bugzilla.mozilla.org/1623315", + "https://bugzilla.mozilla.org/1666980", + "https://bugzilla.mozilla.org/1706839", + "https://bugzilla.mozilla.org/1745271", + "https://bugzilla.mozilla.org/1777402", + "https://bugzilla.mozilla.org/1811155", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-11 01:25:58", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times an event page hit the idle timeout and results in one of the labels.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5b3d25d18056b61699ae1dbd141ab76c907cfbb2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "popupShown", + "clearAfterHover", + "clearAfterMousedown" + ], + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L402", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_counters_event_page_idle_result": { + "bugs": [ + "https://bugzilla.mozilla.org/1787940", + "https://bugzilla.mozilla.org/1817103", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-21 02:45:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times an event page hit the idle timeout and results in one of the labels.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e7ce414c7d546dfbeef204d75b1f683d7fe84451", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "suspend", + "reset_other", + "reset_event", + "reset_listeners", + "reset_nativeapp", + "reset_streamfilter", + "reset_parentapicall", + "permissions_request", + "launchWebAuthFlow" + ], + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L433", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_data_migrate_result": { + "bugs": [ + "https://bugzilla.mozilla.org/1470213", + "https://bugzilla.mozilla.org/1553297", + "https://bugzilla.mozilla.org/1590736", + "https://bugzilla.mozilla.org/1630596", + "https://bugzilla.mozilla.org/1672570", + "https://bugzilla.mozilla.org/1714251", + "https://bugzilla.mozilla.org/1749878", + "https://bugzilla.mozilla.org/1781974", + "https://bugzilla.mozilla.org/1817100", + "https://bugzilla.mozilla.org/1861295", + "https://bugzilla.mozilla.org/1912166" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1470213#c15" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are sent when an extension is migrating its data to the new\nIndexedDB backend.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "Id of the addon.", + "type": "string" + }, + "backend": { + "description": "The selected backend (\"JSONFile\" / \"IndexedDB\").", + "type": "string" + }, + "data_migrated": { + "description": "The old extension data has been migrated (\"y\" / \"n\").", + "type": "string" + }, + "error_name": { + "description": "A DOMException error name if any (\"OtherError\" for unknown errors).\nThe error has been fatal if the `backend` extra key is \"JSONFile\",\notherwise it is a non fatal error which didn't prevented the\nextension from switching to the IndexedDB backend.\n", + "type": "string" + }, + "has_jsonfile": { + "description": "The extension has a JSONFile (\"y\" / \"n\").", + "type": "string" + }, + "has_olddata": { + "description": "Extension had some data stored in JSONFile (\"y\" / \"n\").", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L287", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_data_storage_local_error": { + "bugs": [ + "https://bugzilla.mozilla.org/1606903", + "https://bugzilla.mozilla.org/1649948", + "https://bugzilla.mozilla.org/1689255", + "https://bugzilla.mozilla.org/1730038", + "https://bugzilla.mozilla.org/1763523", + "https://bugzilla.mozilla.org/1811148", + "https://bugzilla.mozilla.org/1861297", + "https://bugzilla.mozilla.org/1912166" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1606903#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-23 00:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "These events are collected when an extension triggers an unexpected error\nwhile running a storage.local API call (e.g. because of some underlying\nQuotaManager and/or IndexedDB error).\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "Id of the addon.", + "type": "string" + }, + "error_name": { + "description": "A DOMException error name if any (\"OtherError\" for unknown errors).\n", + "type": "string" + }, + "method": { + "description": "The storage.local API method name.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d651609412eba3c7ea4fb11d0336b885852c3ed5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L335", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_data_sync_usage_quotas": { + "bugs": [ + "https://bugzilla.mozilla.org/1915183" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D222442" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-23 13:06:24", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record the basic stat about usage, and are collected the\nfirst time an extension uses the sync storage API during a session.\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "addon_id": { + "description": "Id of the addon.", + "type": "string" + }, + "backend": { + "description": "Backend engine used, currently either \"kinto\" or \"rust\"", + "type": "string" + }, + "items_count": { + "description": "Number of items in sync storage.", + "type": "quantity" + }, + "items_over_quota": { + "description": "Count of items larger than QUOTA_BYTES_PER_ITEM.", + "type": "quantity" + }, + "total_size_bytes": { + "description": "Size of the sync data.", + "type": "quantity" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "b1146d27a1b16f2c1e464a2025d0c98fecdca36e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L369", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_process_event": { + "bugs": [ + "https://bugzilla.mozilla.org/1830157/", + "https://bugzilla.mozilla.org/1848223/", + "https://bugzilla.mozilla.org/1850350/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830157#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1848223#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850350#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-28 00:31:02", + "last": "2025-02-04 14:27:22" + }, + "description": "Counters for how many times the extension process has crashed or been created.\nThe labels with \"_fg\" / \"_bg\" suffixes are only recorded in Android builds,\nwhile the \"created\" and \"crashed\" labels are recorded on both Desktop and Android\nbuilds.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3b9574890575612bbafd272213f7fb191cbb939a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "crashed_bg", + "crashed_fg", + "created_bg", + "created_fg", + "crashed_over_threshold_bg", + "crashed_over_threshold_fg" + ], + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L102", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_quarantined_domains_listhash": { + "bugs": [ + "https://bugzilla.mozilla.org/1841683/", + "https://bugzilla.mozilla.org/1866199/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1840615#c2", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841683" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-13 00:36:25", + "last": "2024-07-02 18:27:18" + }, + "description": "SHA1 cryptographic hash of the quarantined domains string pref.\n", + "disabled": false, + "expires": 130, + "gecko_datapoint": "", + "git-commits": { + "first": "4ee725f9376d9fe248bf541a7e78985986865452", + "last": "3d173a6ad865eb778eb7a85de900e92774559ed6" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3d173a6ad865eb778eb7a85de900e92774559ed6/toolkit/components/extensions/metrics.yaml#L386", + "telemetry_mirror": "EXTENSIONS_QUARANTINEDDOMAINS_LISTHASH", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_quarantined_domains_listsize": { + "bugs": [ + "https://bugzilla.mozilla.org/1840615/", + "https://bugzilla.mozilla.org/1866199/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1840615" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-13 00:36:25", + "last": "2024-07-02 18:27:18" + }, + "description": "Number of domains listed in the quarantined domains list pref for the client during this session.\n", + "disabled": false, + "expires": 130, + "gecko_datapoint": "", + "git-commits": { + "first": "4ee725f9376d9fe248bf541a7e78985986865452", + "last": "3d173a6ad865eb778eb7a85de900e92774559ed6" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3d173a6ad865eb778eb7a85de900e92774559ed6/toolkit/components/extensions/metrics.yaml#L365", + "telemetry_mirror": "EXTENSIONS_QUARANTINEDDOMAINS_LISTSIZE", + "type": "quantity", + "unit": "domains", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_quarantined_domains_remotehash": { + "bugs": [ + "https://bugzilla.mozilla.org/1841683/", + "https://bugzilla.mozilla.org/1866199/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841683" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-13 00:36:25", + "last": "2024-07-02 18:27:18" + }, + "description": "SHA1 cryptographic hash of the quarantined domains string pref as it was set based on the value got synced from the RemoteSettings collection. AMRemoteSettings will be re-processing the entries on the next application startup and so this metric lifetime can be set to application and expect it to be always set to the value got from the RemoteSettings collection.\n", + "disabled": false, + "expires": 130, + "gecko_datapoint": "", + "git-commits": { + "first": "4ee725f9376d9fe248bf541a7e78985986865452", + "last": "3d173a6ad865eb778eb7a85de900e92774559ed6" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3d173a6ad865eb778eb7a85de900e92774559ed6/toolkit/components/extensions/metrics.yaml#L406", + "telemetry_mirror": "EXTENSIONS_QUARANTINEDDOMAINS_REMOTEHASH", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_startup_cache_load_time": { + "bugs": [ + "https://bugzilla.mozilla.org/1767336/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767336#c7" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-06-22 00:37:07", + "last": "2025-02-04 14:27:22" + }, + "description": "Time to load and deserialize the extensions startupCache data.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e86f1fa0e9d3292b65ae096cd4f53f7ef1569308", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com", + "lgreco@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L44", + "telemetry_mirror": "EXTENSIONS_STARTUPCACHE_LOAD_TIME", + "time_unit": "millisecond", + "type": "timespan", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "extensions_startup_cache_read_errors": { + "bugs": [ + "https://bugzilla.mozilla.org/1767336/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767336#c7" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-28 00:31:02", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times an unexpected error has been raised while reading\nthe extensions StartupCache file.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3b9574890575612bbafd272213f7fb191cbb939a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L64", + "telemetry_mirror": "EXTENSIONS_STARTUPCACHE_READ_ERRORS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_startup_cache_write_bytelength": { + "bugs": [ + "https://bugzilla.mozilla.org/1767336/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767336#c7" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-28 00:31:02", + "last": "2025-02-04 14:27:22" + }, + "description": "The amount of bytes written to the extensions StartupCache file.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3b9574890575612bbafd272213f7fb191cbb939a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L83", + "telemetry_mirror": "EXTENSIONS_STARTUPCACHE_WRITE_BYTELENGTH", + "type": "quantity", + "unit": "bytes", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_background_page_load": { + "bugs": [ + "https://bugzilla.mozilla.org/1353172", + "https://bugzilla.mozilla.org/1489524", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes to load a WebExtensions background page, from when the\nbuild function is called to when the page has finished processing the onload event.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L465", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_browser_action_popup_open": { + "bugs": [ + "https://bugzilla.mozilla.org/1297167", + "https://bugzilla.mozilla.org/1513556", + "https://bugzilla.mozilla.org/1578225", + "https://bugzilla.mozilla.org/1623315", + "https://bugzilla.mozilla.org/1666980", + "https://bugzilla.mozilla.org/1706839", + "https://bugzilla.mozilla.org/1745271", + "https://bugzilla.mozilla.org/1777402", + "https://bugzilla.mozilla.org/1811155", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes for a BrowserAction popup to open.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L483", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_content_script_injection": { + "bugs": [ + "https://bugzilla.mozilla.org/1356323", + "https://bugzilla.mozilla.org/1489524", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes for content scripts from a WebExtension to be injected into a window.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L508", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_event_page_running_time": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/1787940", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time (keyed by addon id) that an event page has been running before being suspended,\nor the entire addon shutdown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "range_max": 60000, + "range_min": 1, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L525", + "type": "custom_distribution", + "unit": "ms", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_extension_startup": { + "bugs": [ + "https://bugzilla.mozilla.org/1353171", + "https://bugzilla.mozilla.org/1489524", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes for a WebExtension to start up, from when the\nstartup function is called to when the startup promise resolves.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L546", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_page_action_popup_open": { + "bugs": [ + "https://bugzilla.mozilla.org/1297167", + "https://bugzilla.mozilla.org/1513556", + "https://bugzilla.mozilla.org/1578225", + "https://bugzilla.mozilla.org/1623315", + "https://bugzilla.mozilla.org/1666980", + "https://bugzilla.mozilla.org/1706839", + "https://bugzilla.mozilla.org/1745271", + "https://bugzilla.mozilla.org/1777402", + "https://bugzilla.mozilla.org/1811155", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes for a PageAction popup to open.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L564", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_storage_local_get_idb": { + "bugs": [ + "https://bugzilla.mozilla.org/1465120", + "https://bugzilla.mozilla.org/1513556", + "https://bugzilla.mozilla.org/1578225", + "https://bugzilla.mozilla.org/1623315", + "https://bugzilla.mozilla.org/1666980", + "https://bugzilla.mozilla.org/1706839", + "https://bugzilla.mozilla.org/1745271", + "https://bugzilla.mozilla.org/1777402", + "https://bugzilla.mozilla.org/1811155", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes to perform a get via storage.local using the IndexedDB backend.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L589", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_storage_local_get_json": { + "bugs": [ + "https://bugzilla.mozilla.org/1371398", + "https://bugzilla.mozilla.org/1513556", + "https://bugzilla.mozilla.org/1578225", + "https://bugzilla.mozilla.org/1623315", + "https://bugzilla.mozilla.org/1666980", + "https://bugzilla.mozilla.org/1706839", + "https://bugzilla.mozilla.org/1745271", + "https://bugzilla.mozilla.org/1777402", + "https://bugzilla.mozilla.org/1811155", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2024-05-02 12:50:59" + }, + "description": "Amount of time it takes to perform a get via storage.local using the JSONFile backend.\n", + "disabled": false, + "expires": 128, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "386c7f17b2421374930a447c9f424910551b659d" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/386c7f17b2421374930a447c9f424910551b659d/toolkit/components/extensions/metrics.yaml#L616", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_storage_local_set_idb": { + "bugs": [ + "https://bugzilla.mozilla.org/1465120", + "https://bugzilla.mozilla.org/1513556", + "https://bugzilla.mozilla.org/1578225", + "https://bugzilla.mozilla.org/1623315", + "https://bugzilla.mozilla.org/1666980", + "https://bugzilla.mozilla.org/1706839", + "https://bugzilla.mozilla.org/1745271", + "https://bugzilla.mozilla.org/1777402", + "https://bugzilla.mozilla.org/1811155", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time it takes to perform a set via storage.local using the Indexed backend.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L614", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_timing_storage_local_set_json": { + "bugs": [ + "https://bugzilla.mozilla.org/1371398", + "https://bugzilla.mozilla.org/1513556", + "https://bugzilla.mozilla.org/1578225", + "https://bugzilla.mozilla.org/1623315", + "https://bugzilla.mozilla.org/1666980", + "https://bugzilla.mozilla.org/1706839", + "https://bugzilla.mozilla.org/1745271", + "https://bugzilla.mozilla.org/1777402", + "https://bugzilla.mozilla.org/1811155", + "https://bugzilla.mozilla.org/1861303", + "https://bugzilla.mozilla.org/1820158" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1820158#c8" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-18 17:22:50", + "last": "2024-05-02 12:50:59" + }, + "description": "Amount of time it takes to perform a set via storage.local using the JSONFile backend.\n", + "disabled": false, + "expires": 128, + "gecko_datapoint": "", + "git-commits": { + "first": "fd808301c442e912e705cf1479d7ad64016e3c4e", + "last": "386c7f17b2421374930a447c9f424910551b659d" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/386c7f17b2421374930a447c9f424910551b659d/toolkit/components/extensions/metrics.yaml#L641", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_use_remote_policy": { + "bugs": [ + "https://bugzilla.mozilla.org/1850351/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850351#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-01 00:40:47", + "last": "2025-02-04 14:27:22" + }, + "description": "Corresponds to the value of `WebExtensionPolicy.useRemoteWebExtensions`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ccdebb805645f1914580b6b1cbf679149e0586a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L29", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "extensions_use_remote_pref": { + "bugs": [ + "https://bugzilla.mozilla.org/1850351/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850351#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-09-01 00:40:47", + "last": "2025-02-04 14:27:22" + }, + "description": "Corresponds to the value of `extensions.webextensions.remote` pref.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9ccdebb805645f1914580b6b1cbf679149e0586a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "WebExtensions :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "addons-dev-internal@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/extensions/metrics.yaml#L14", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "findbar_find_next": { + "bugs": [ + "https://bugzil.la/1627688" + ], + "data_reviews": [ + "https://bugzil.la/1627688" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times the find next button was used per session. This metric was generated to correspond to the Legacy Telemetry scalar findbar.find_next.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L419", + "telemetry_mirror": "FINDBAR_FIND_NEXT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "findbar_find_prev": { + "bugs": [ + "https://bugzil.la/1627688" + ], + "data_reviews": [ + "https://bugzil.la/1627688" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times the find previous button was used per session. This metric was generated to correspond to the Legacy Telemetry scalar findbar.find_prev.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L403", + "telemetry_mirror": "FINDBAR_FIND_PREV", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "findbar_highlight_all": { + "bugs": [ + "https://bugzil.la/1627688" + ], + "data_reviews": [ + "https://bugzil.la/1627688" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times the \"Highlight All\" button was used in find toolbar. This metric was generated to correspond to the Legacy Telemetry scalar findbar.highlight_all.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L435", + "telemetry_mirror": "FINDBAR_HIGHLIGHT_ALL", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "findbar_match_case": { + "bugs": [ + "https://bugzil.la/1627688" + ], + "data_reviews": [ + "https://bugzil.la/1627688" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times the \"Match Case\" button was used in find toolbar. This metric was generated to correspond to the Legacy Telemetry scalar findbar.match_case.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L451", + "telemetry_mirror": "FINDBAR_MATCH_CASE", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "findbar_match_diacritics": { + "bugs": [ + "https://bugzil.la/1627688" + ], + "data_reviews": [ + "https://bugzil.la/1627688" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times the \"Match Diacritics\" button was used in find toolbar. This metric was generated to correspond to the Legacy Telemetry scalar findbar.match_diacritics.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L467", + "telemetry_mirror": "FINDBAR_MATCH_DIACRITICS", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "findbar_shown": { + "bugs": [ + "https://bugzil.la/1627688" + ], + "data_reviews": [ + "https://bugzil.la/1627688" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times the \"Find toolbar\" was shown per session. This metric was generated to correspond to the Legacy Telemetry scalar findbar.shown.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L387", + "telemetry_mirror": "FINDBAR_SHOWN", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "findbar_whole_words": { + "bugs": [ + "https://bugzil.la/1627688" + ], + "data_reviews": [ + "https://bugzil.la/1627688" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of how many times the \"Whole Words\" button was used in find toolbar. This metric was generated to correspond to the Legacy Telemetry scalar findbar.whole_words.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L483", + "telemetry_mirror": "FINDBAR_WHOLE_WORDS", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fingerprinting_protection_canvas_noise_calculate_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838856" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838856#c1" + ], + "dates": { + "first": "2023-06-27 00:05:16", + "last": "2024-12-04 01:34:29" + }, + "description": "Counts how long to generate canvas random noises.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "87391fa922f7ae8eb0d338f03b533e0f696c6e4d", + "last": "fc70268f4af8dc6a4b7393bd2968fd057e74ebc6" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "tom@mozilla.com", + "tschuster@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fc70268f4af8dc6a4b7393bd2968fd057e74ebc6/toolkit/components/resistfingerprinting/metrics.yaml#L13", + "telemetry_mirror": "FINGERPRINTING_PROTECTION_CANVAS_NOISE_CALCULATE_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fingerprinting_protection_canvas_noise_calculate_time_2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838856", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1933797" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838856#c1" + ], + "dates": { + "first": "2024-12-04 00:15:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how long to generate canvas random noises.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "25140a06a912954c940da5918485ef8e0188df28", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "tom@mozilla.com", + "tschuster@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/resistfingerprinting/metrics.yaml#L13", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fingerprinting_protection_canvas_noise_calculate_time_ns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838856", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1933797" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838856#c1" + ], + "dates": { + "first": "2024-12-03 13:12:43", + "last": "2024-12-03 13:12:43" + }, + "description": "Counts how long to generate canvas random noises.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6bd83420b6498cf50aefdd9868ca0d884ffabd2f", + "last": "6bd83420b6498cf50aefdd9868ca0d884ffabd2f" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "tihuang@mozilla.com", + "tom@mozilla.com", + "tschuster@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6bd83420b6498cf50aefdd9868ca0d884ffabd2f/toolkit/components/resistfingerprinting/metrics.yaml#L13", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_failed_idle_registration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694739#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "True if we failed to register with the idle service. Absent otherwise.\nMeans IPC probably isn't working well.\nChild-process data will likely be absent, or incomplete.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "application", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L31", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_initialization": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662123" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662123#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Time the FOG initialization takes.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "jrediger@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L15", + "time_unit": "nanosecond", + "type": "timespan", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_inits_during_shutdown": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1839433" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1839433" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-07-31 15:32:34", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times init had to be called during shutdown.\nShould never have a value for any session long enough to grow idle.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b942d1b48543a13fd817209b42e8f0ae41760675", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L49", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_ipc_buffer_sizes": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694739#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "The number and size of the IPC buffers being received over FOG IPC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L99", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_ipc_flush_durations": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1694739#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "The length of time between asking the child processes for their\nIPC buffers and all of them being received by the parent.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L115", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_ipc_flush_failures": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1729026" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1729026" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times we failed to flush all non-parent-process data,\nthrowing even partial results into the trash.\nIf this number is high, we might consider writing custom `MozPromise`-\nhandling code instead of using `MozPromise::All`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L132", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_ipc_replay_failures": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664461" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1664461" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times the ipc buffer failed to be replayed in the\nparent process.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L83", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_ipc_shutdown_registration_failures": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1766977" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1766977" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-04 17:09:42", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times we tried to register shutdown flush routines for\ncontent child processes, and failed (probably because there was no main\nthread).\nAs a result there may be data loss from content child processes.\nLarge or rising number of clients experiencing this indicates we should\nperhaps refactor content child shutdown in FOG to try harder to register\nflush operations.\nWill likely be obsoleted by bug 1641989.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8ebf835d75f268e791e32570ab9dc049191ae824", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 4, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L150", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_max_pings_per_minute": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834792" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834792" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-08-11 15:14:40", + "last": "2025-02-04 14:27:22" + }, + "description": "Value of the configurable rate limit, in pings per minute, for Glean pings as set at init.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6fdd7dca6360b84ebab29dd1d6652a327137f04e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/glean/metrics.yaml#L66", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_gvsv_audio_stream_init": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954#c1", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862546#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-14 15:01:55", + "last": "2023-12-11 00:39:25" + }, + "description": "Incremented when an audio stream is initialized, recorded alongside the\nGeckoView Streaming API for the purposes of Validation (hence GVSV).\nUses a single label due to only labeled counters being supported\n", + "disabled": false, + "expires": 123, + "gecko_datapoint": "", + "git-commits": { + "first": "9b5033e8a056479f758973b4481b057c1e852c77", + "last": "583b9dc159c13ee545ce4ee103f1eb0d5a228074" + }, + "labels": [ + "inits" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/583b9dc159c13ee545ce4ee103f1eb0d5a228074/toolkit/components/glean/metrics.yaml#L222", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_gvsv_audio_stream_init_gecko": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-26 12:35:55", + "last": "2023-11-02 09:43:41" + }, + "description": "Incremented when an audio stream is initialized, recorded alongside the\nGlean API for the purposes of Validation (hence GVSV).\nUses a single label due to only labeled counters being supported\n", + "disabled": false, + "expires": 122, + "gecko_datapoint": "GVSV_AUDIO_STREAM_INITS", + "git-commits": { + "first": "d91169cb8a8f9e1599f7bda51aba96e0090f3341", + "last": "8acfbe4ba09b46b91c862dc2fbc064d4fc1bac9a" + }, + "labels": [ + "inits" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/8acfbe4ba09b46b91c862dc2fbc064d4fc1bac9a/toolkit/components/glean/metrics.yaml#L239", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_gvsv_composite_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954#c1", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862546#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-30 00:31:26", + "last": "2023-12-11 00:39:25" + }, + "description": "Glean equivalent to the Geckoview Stream gfx Composite Time metric. Represents The time taken to composite a frame. Differs between non-webrender and webrender, see the non-validation version for more details.\n", + "disabled": false, + "expires": 123, + "gecko_datapoint": "", + "git-commits": { + "first": "fcd4f6b77500913f9e8e40ed15e4a9e193f6c8e5", + "last": "583b9dc159c13ee545ce4ee103f1eb0d5a228074" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/583b9dc159c13ee545ce4ee103f1eb0d5a228074/toolkit/components/glean/metrics.yaml#L264", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_gvsv_number_of_unique_site_origins_all_tabs": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954#c1", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862546#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-14 15:01:55", + "last": "2023-12-11 00:39:25" + }, + "description": "Time between tab selection and first composite of the tab content onto the screen. Implemented alongside the Geckoview Streaming version to measure potential differences between the two.\n", + "disabled": false, + "expires": 123, + "gecko_datapoint": "", + "git-commits": { + "first": "9b5033e8a056479f758973b4481b057c1e852c77", + "last": "583b9dc159c13ee545ce4ee103f1eb0d5a228074" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/583b9dc159c13ee545ce4ee103f1eb0d5a228074/toolkit/components/glean/metrics.yaml#L242", + "type": "custom_distribution", + "unit": "number of site_origin", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_gvsv_primary_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954#c1", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862546#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-30 00:31:26", + "last": "2023-12-11 00:39:25" + }, + "description": "Primary display pixel height, recorded alongside the GeckoView Streaming\nAPI for the purposes of Validation (hence GVSV).\n", + "disabled": false, + "expires": 123, + "gecko_datapoint": "", + "git-commits": { + "first": "fcd4f6b77500913f9e8e40ed15e4a9e193f6c8e5", + "last": "583b9dc159c13ee545ce4ee103f1eb0d5a228074" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/583b9dc159c13ee545ce4ee103f1eb0d5a228074/toolkit/components/glean/metrics.yaml#L186", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_gvsv_primary_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858954#c1", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862546#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-30 00:31:26", + "last": "2023-12-11 00:39:25" + }, + "description": "Primary display pixel width, recorded alongside the GeckoView Streaming\nAPI for the purposes of Validation (hence GVSV).\n", + "disabled": false, + "expires": 123, + "gecko_datapoint": "", + "git-commits": { + "first": "fcd4f6b77500913f9e8e40ed15e4a9e193f6c8e5", + "last": "583b9dc159c13ee545ce4ee103f1eb0d5a228074" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "pmcmanis@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/583b9dc159c13ee545ce4ee103f1eb0d5a228074/toolkit/components/glean/metrics.yaml#L204", + "type": "quantity", + "unit": "int", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_some_object": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1883879" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1883879#2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-08 00:08:29", + "last": "2024-03-11 02:46:19" + }, + "description": "Static data recorded to verify the new object metric type end-to-end.\n", + "disabled": false, + "expires": 126, + "gecko_datapoint": "", + "git-commits": { + "first": "81e68bade9ccb728cae789a3bd03d29f29b493ec", + "last": "a3d5a112ddb2d665b0c7ac2919b6f4fc6c97366c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/a3d5a112ddb2d665b0c7ac2919b6f4fc6c97366c/toolkit/components/glean/metrics.yaml#L173", + "type": "object", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_validate_early_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1837230" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1837230", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1850878" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-09-12 01:09:49", + "last": "2024-01-26 03:38:54" + }, + "description": "An event sent very early to validate that FOG is able to process it.\n", + "disabled": false, + "expires": 125, + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "5e1a54c5890cfa5870d17f111bcb2e3f3a6498b9", + "last": "b75080bb8b11844d18cb5f9ac6e68a866ef8e243" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b75080bb8b11844d18cb5f9ac6e68a866ef8e243/toolkit/components/glean/metrics.yaml#L173", + "telemetry_mirror": "Telemetry_EarlyEvent_Startup", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_legacy_telemetry_client_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1674233" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1674233#c4" + ], + "data_sensitivity": [ + "technical", + "highly_sensitive" + ], + "dates": { + "first": "2020-11-09 10:51:14", + "last": "2021-03-08 18:27:53" + }, + "description": "The Telemetry client_id. To be sent only in the \"fog-validation\" ping.", + "disabled": false, + "expires": "89", + "gecko_datapoint": "", + "git-commits": { + "first": "38d25d61a7868d78a89ccfaa5c7cf49503be4fd5", + "last": "a0ff87ac01050201b8339871c1465ef43172e016" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 27, + "last": 18 + }, + "send_in_pings": [ + "fog-validation" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/a0ff87ac01050201b8339871c1465ef43172e016/toolkit/components/glean/metrics.yaml#L103", + "type": "uuid", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_os_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1679835" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1679835#c3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2020-12-04 12:04:51", + "last": "2021-03-08 18:27:53" + }, + "description": "The version of the OS running Firefox, as detected by Gecko. To be sent only in the \"fog-validation\" ping.", + "disabled": false, + "expires": "89", + "gecko_datapoint": "", + "git-commits": { + "first": "732d9030af5170f6d7cbba4f57661d13eb0d7b07", + "last": "a0ff87ac01050201b8339871c1465ef43172e016" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "aplacitelli@mozilla.com", + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 24, + "last": 18 + }, + "send_in_pings": [ + "fog-validation" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/a0ff87ac01050201b8339871c1465ef43172e016/toolkit/components/glean/metrics.yaml#L123", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fog_validation_profile_disk_is_ssd": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675877" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675877#c7" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2021-01-12 20:45:09", + "last": "2021-03-08 18:27:53" + }, + "description": "True iff the type of the disk the current Firefox profile is stored on is an SSD. (Windows only).", + "disabled": false, + "expires": "89", + "gecko_datapoint": "", + "git-commits": { + "first": "078aa47127d569eb6e83344a5798f4b2a40f470b", + "last": "a0ff87ac01050201b8339871c1465ef43172e016" + }, + "lifetime": "application", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 23, + "last": 18 + }, + "send_in_pings": [ + "fog-validation" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/a0ff87ac01050201b8339871c1465ef43172e016/toolkit/components/glean/metrics.yaml#L143", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_bad_fallback_font": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "system fallback font can't be used\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram BAD_FALLBACK_FONT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1289", + "telemetry_mirror": "h#BAD_FALLBACK_FONT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_bundledfonts_activate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696162" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1696162" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time(ms) spent activating additional fonts bundled with the product\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FONTLIST_BUNDLEDFONTS_ACTIVATE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1143", + "telemetry_mirror": "FONTLIST_BUNDLEDFONTS_ACTIVATE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_dwritefont_delayedinit_collect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "gfxDWriteFontList::DelayedInitFontList GetSystemFontCollection (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DWRITEFONT_DELAYEDINITFONTLIST_COLLECT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1198", + "telemetry_mirror": "DWRITEFONT_DELAYEDINITFONTLIST_COLLECT", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_dwritefont_delayedinit_count": { + "bucket_count": 10, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "gfxDWriteFontList::DelayedInitFontList Font Family Count\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DWRITEFONT_DELAYEDINITFONTLIST_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 10000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1177", + "telemetry_mirror": "DWRITEFONT_DELAYEDINITFONTLIST_COUNT", + "type": "custom_distribution", + "unit": "font family count", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_dwritefont_delayedinit_total": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "gfxDWriteFontList::DelayedInitFontList Total (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram DWRITEFONT_DELAYEDINITFONTLIST_TOTAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1160", + "telemetry_mirror": "DWRITEFONT_DELAYEDINITFONTLIST_TOTAL", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_dwritefont_init_problem": { + "bucket_count": 9, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "DirectWrite system fontlist initialization problem (1=GDI interop, 2=system font collection, 3=no fonts)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram DWRITEFONT_INIT_PROBLEM.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 8, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1215", + "telemetry_mirror": "DWRITEFONT_INIT_PROBLEM", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_font_cache_hit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "font cache hit\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram FONT_CACHE_HIT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1270", + "telemetry_mirror": "h#FONT_CACHE_HIT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_gdi_init_total": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "gfxGDIFontList::InitFontList Total (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram GDI_INITFONTLIST_TOTAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1308", + "telemetry_mirror": "GDI_INITFONTLIST_TOTAL", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_initfacenamelists": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time(ms) spent on reading family names from all fonts\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FONTLIST_INITFACENAMELISTS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1126", + "telemetry_mirror": "FONTLIST_INITFACENAMELISTS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_initotherfamilynames": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time(ms) spent on reading other family names from all fonts\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FONTLIST_INITOTHERFAMILYNAMES.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1091", + "telemetry_mirror": "FONTLIST_INITOTHERFAMILYNAMES", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_initotherfamilynames_no_deferring": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time(ms) spent on reading other family names from all fonts for no timeout case\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FONTLIST_INITOTHERFAMILYNAMES_NO_DEFERRING.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1108", + "telemetry_mirror": "FONTLIST_INITOTHERFAMILYNAMES_NO_DEFERRING", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_mac_init_total": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "gfxMacPlatformFontList::InitFontList Total (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram MAC_INITFONTLIST_TOTAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1325", + "telemetry_mirror": "MAC_INITFONTLIST_TOTAL", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_system_font_fallback": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "System font fallback (us)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SYSTEM_FONT_FALLBACK.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1236", + "telemetry_mirror": "SYSTEM_FONT_FALLBACK", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fontlist_system_font_fallback_first": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "System font fallback, first call (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SYSTEM_FONT_FALLBACK_FIRST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1253", + "telemetry_mirror": "SYSTEM_FONT_FALLBACK_FIRST", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "form_autocomplete_show_logins": { + "bugs": [ + "https://bugzil.la/1619498", + "https://bugzil.la/1628849" + ], + "data_reviews": [ + "https://bugzil.la/1619498", + "https://bugzil.la/1628849" + ], + "dates": { + "first": "2024-09-25 07:19:06", + "last": "2025-02-04 14:27:22" + }, + "description": "An content form autocomplete popup was shown. Details on the timing and context are provided. This event was generated to correspond to the Legacy Telemetry event form_autocomplete.show#logins.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "acFieldName": { + "description": "The \"field name\" token (last one) of the field's autocomplete attribute.\n", + "type": "string" + }, + "fieldType": { + "description": "The `type` property value of the field.\n", + "type": "string" + }, + "generatedPasswo": { + "description": "The number of generated password rows shown.\n", + "type": "string" + }, + "hadPrevious": { + "description": "Whether the autocomplete results had cached previous results it could use.\n", + "type": "string" + }, + "importableLogin": { + "description": "The number of import suggestion rows shown.\n", + "type": "string" + }, + "insecureWarning": { + "description": "The number of insecure login field warning rows shown (should be 0 or 1).\n", + "type": "string" + }, + "login": { + "description": "The number of login rows shown (with or without the domain line).\n", + "type": "string" + }, + "loginsFooter": { + "description": "The number of \"Manage Passwords\" footer row shown.\n", + "type": "string" + }, + "stringLength": { + "description": "Length of the text in the field that triggered these results.\n", + "type": "string" + }, + "typeWasPassword": { + "description": "Whether the input `type` was ever \"password\".\n", + "type": "string" + }, + "value": { + "description": "The `value` is the number of milliseconds since the autocomplete search started.\n", + "type": "quantity" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "3f8eb8c6ff769b95399ff971f0365fc9e9423177", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 6, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L824", + "telemetry_mirror": "Form_autocomplete_Show_Logins", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_addresses_autofill_profiles_count": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-11-15 14:28:35", + "last": "2025-02-04 14:27:22" + }, + "description": "Count at store time how many address autofill profiles user has. This metric was generated to correspond to the Legacy Telemetry scalar formautofill.addresses.autofill_profiles_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cfa136c87f554cdd160cc518abe5d4d1f74d8535", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1579", + "telemetry_mirror": "FORMAUTOFILL_ADDRESSES_AUTOFILL_PROFILES_COUNT", + "type": "quantity", + "unit": "address autofill profiles", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_addresses_detected_sections_count": { + "bugs": [ + "https://bugzil.la/1801039" + ], + "data_reviews": [ + "https://bugzil.la/1801039" + ], + "dates": { + "first": "2024-11-15 14:28:35", + "last": "2024-11-28 00:04:18" + }, + "description": "Count at detection time number of address form sections. A single form can contain more than one address form section. This metric was generated to correspond to the Legacy Telemetry scalar formautofill.addresses.detected_sections_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cfa136c87f554cdd160cc518abe5d4d1f74d8535", + "last": "f2e3083b46a8f767dff750aebbddecd6d607d7f7" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f2e3083b46a8f767dff750aebbddecd6d607d7f7/toolkit/components/formautofill/metrics.yaml#L1482", + "telemetry_mirror": "FORMAUTOFILL_ADDRESSES_DETECTED_SECTIONS_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_addresses_submitted_sections_count": { + "bugs": [ + "https://bugzil.la/1656344" + ], + "data_reviews": [ + "https://bugzil.la/1656344" + ], + "dates": { + "first": "2024-11-15 14:28:35", + "last": "2024-11-28 00:04:18" + }, + "description": "Count at submission time number of credit card form sections submitted. This metric was generated to correspond to the Legacy Telemetry scalar formautofill.addresses.submitted_sections_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cfa136c87f554cdd160cc518abe5d4d1f74d8535", + "last": "f2e3083b46a8f767dff750aebbddecd6d607d7f7" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f2e3083b46a8f767dff750aebbddecd6d607d7f7/toolkit/components/formautofill/metrics.yaml#L1499", + "telemetry_mirror": "FORMAUTOFILL_ADDRESSES_SUBMITTED_SECTIONS_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_availability": { + "bugs": [ + "https://bugzil.la/1386959" + ], + "data_reviews": [ + "https://bugzil.la/1386959" + ], + "dates": { + "first": "2024-11-15 14:28:34", + "last": "2025-02-04 14:27:22" + }, + "description": "A boolean sent once per session to represent whether the formautofill is available in the build This metric was generated to correspond to the Legacy Telemetry scalar formautofill.availability.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e2366bab6fddfea0e812045ef342715b17eec1c7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L328", + "telemetry_mirror": "FORMAUTOFILL_AVAILABILITY", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_credit_cards_detected_sections_count": { + "bugs": [ + "https://bugzil.la/1656344" + ], + "data_reviews": [ + "https://bugzil.la/1656344" + ], + "dates": { + "first": "2024-11-15 14:28:35", + "last": "2024-11-28 00:04:18" + }, + "description": "Count at detection time number of credit card form sections. A single form can contain more than one credit card form section. This metric was generated to correspond to the Legacy Telemetry scalar formautofill.creditCards.detected_sections_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cfa136c87f554cdd160cc518abe5d4d1f74d8535", + "last": "f2e3083b46a8f767dff750aebbddecd6d607d7f7" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f2e3083b46a8f767dff750aebbddecd6d607d7f7/toolkit/components/formautofill/metrics.yaml#L1534", + "telemetry_mirror": "FORMAUTOFILL_CREDITCARDS_DETECTED_SECTIONS_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_credit_cards_submitted_sections_count": { + "bugs": [ + "https://bugzil.la/1656344" + ], + "data_reviews": [ + "https://bugzil.la/1656344" + ], + "dates": { + "first": "2024-11-15 14:28:35", + "last": "2024-11-28 00:04:18" + }, + "description": "Count at submission time number of credit card form sections submitted. This metric was generated to correspond to the Legacy Telemetry scalar formautofill.creditCards.submitted_sections_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cfa136c87f554cdd160cc518abe5d4d1f74d8535", + "last": "f2e3083b46a8f767dff750aebbddecd6d607d7f7" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "jmathies@mozilla.com", + "chsiang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f2e3083b46a8f767dff750aebbddecd6d607d7f7/toolkit/components/formautofill/metrics.yaml#L1551", + "telemetry_mirror": "FORMAUTOFILL_CREDITCARDS_SUBMITTED_SECTIONS_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_creditcards_autofill_profiles_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=990203", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834571" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834571#c2" + ], + "dates": { + "first": "2023-08-07 11:02:56", + "last": "2025-02-04 14:27:22" + }, + "description": "Count at store time how many credit card autofill profiles the user has.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa6cb926b78a5c28d424694c24990f0f7129941b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L14", + "telemetry_mirror": "FORMAUTOFILL_CREDITCARDS_AUTOFILL_PROFILES_COUNT", + "type": "quantity", + "unit": "credit card autofill profiles", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_creditcards_form_cleared": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653162", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767907", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834570" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5" + ], + "dates": { + "first": "2023-08-08 12:26:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a credit card form is cleared . The flow id indicates an interaction session with the a form and is shared across cc_form events. The field_name is used to record the field that triggers this event\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "field_name": { + "description": "Name of the field being affected by the event", + "type": "string" + }, + "flow_id": { + "description": "Flow id of an interaction session with a credit card form", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "28b084f33d2004941820a63c62855ad78b8286bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L232", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_creditcards_form_detected": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653162", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767907", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834570" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5" + ], + "dates": { + "first": "2023-12-07 10:25:13", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a form is recognized as a credit card form. The possible value of cc_* are \"autocomplete\", \"undetected\", \"regexp\" or an integer between 0-100:\n - When the value is \"autocomplete\", the field is identified via autocomplete attribute\n - When the value is \"undetected\", the field is not detected in the form\n - When the value is \"regexp\", then the field is identified by regexp-based heuristic\n - When the value is an integer greater than 0, the value indicates the confidence value from fathom (normalized to 0-100)\nThe flow id points to an interaction session with a credit card form and is shared across cc_form events .\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "Credit card expiration date result", + "type": "string" + }, + "cc_exp_month": { + "description": "Credit card expiration month result", + "type": "string" + }, + "cc_exp_year": { + "description": "Credit card expiration year result", + "type": "string" + }, + "cc_name": { + "description": "Credit card cardholder name field result", + "type": "string" + }, + "cc_number": { + "description": "Credit card number field result", + "type": "string" + }, + "cc_number_multi_parts": { + "description": "The count of input fields for splitting the Credit Card Number", + "type": "quantity" + }, + "cc_type": { + "description": "Credit card type result", + "type": "string" + }, + "flow_id": { + "description": "Flow id of an interaction session with a credit card form", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "08fa74a95fb86f2eb2d3af161341c85631a2c347", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L30", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_creditcards_form_filled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653162", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767907", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834570" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5" + ], + "dates": { + "first": "2023-08-08 12:26:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a credit card form is autofilled. The flow id indicates an interaction session with the a form and is shared across cc_form events. The possible value of cc_* are `filled`, `not_filled`, `user_filled` or `unavailable`\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "Credit card expiration date result", + "type": "string" + }, + "cc_exp_month": { + "description": "Credit card expiration month result", + "type": "string" + }, + "cc_exp_year": { + "description": "Credit card expiration year result", + "type": "string" + }, + "cc_name": { + "description": "Credit card cardholder name field result", + "type": "string" + }, + "cc_number": { + "description": "Credit card number field result", + "type": "string" + }, + "cc_type": { + "description": "Credit card type result", + "type": "string" + }, + "flow_id": { + "description": "Flow id of an interaction session with a credit card form", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "28b084f33d2004941820a63c62855ad78b8286bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L112", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_creditcards_form_filled_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653162", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767907", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834570" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5" + ], + "dates": { + "first": "2023-08-08 12:26:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a field in a credit card form is autofilled and then modified by the user. The flow id indicates an interaction session with the a form and is shared across cc_form events. The field_name is used to record the field that triggers this event.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "field_name": { + "description": "Name of the field being affected by the event", + "type": "string" + }, + "flow_id": { + "description": "Flow id of an interaction session with a credit card form", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "28b084f33d2004941820a63c62855ad78b8286bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L157", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_creditcards_form_popup_shown": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653162", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767907", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834570" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5" + ], + "dates": { + "first": "2023-08-08 12:26:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when autofill popup is shown for a credit card form. The flow id indicates an interaction session with the a form and is shared across cc_form events. The field_name is used to record the field that triggers this event.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "field_name": { + "description": "Name of the field being affected by the event", + "type": "string" + }, + "flow_id": { + "description": "Flow id of an interaction session with a credit card form", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "28b084f33d2004941820a63c62855ad78b8286bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L82", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_creditcards_form_submitted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653162", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767907", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834570" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5" + ], + "dates": { + "first": "2023-08-08 12:26:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a credit card form is submitted. The flow id indicates an interaction session with the a form and is shared across cc_form events. The possible value of cc_* are `autofilled`, `user_filled` or `unavailable`\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "cc_exp": { + "description": "Credit card expiration date result", + "type": "string" + }, + "cc_exp_month": { + "description": "Credit card expiration month result", + "type": "string" + }, + "cc_exp_year": { + "description": "Credit card expiration year result", + "type": "string" + }, + "cc_name": { + "description": "Credit card cardholder name field result", + "type": "string" + }, + "cc_number": { + "description": "Credit card number field result", + "type": "string" + }, + "cc_type": { + "description": "Credit card type result", + "type": "string" + }, + "flow_id": { + "description": "Flow id of an interaction session with a credit card form", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "28b084f33d2004941820a63c62855ad78b8286bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L187", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_form_submission_heuristic": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1874829", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902180", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1933866" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1874829#c4" + ], + "dates": { + "first": "2024-12-05 09:55:21", + "last": "2025-02-04 14:27:22" + }, + "description": "The heuristic that detected the form submission.", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "3609bcdd7a5e417848e8f292f5298d55506b0374", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "form-submit-event", + "form-removal-after-fetch", + "page-navigation", + "iframe-pagehide" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L263", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_iframe_layout_detection": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906292" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906292" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-02 14:53:02", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the number of iframe in a form and what fields are in an iframe when a form is detected\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "category": { + "description": "Autofill category. Either \"creditcard\" or \"address\"", + "type": "string" + }, + "cross_origin": { + "description": "String that contains a comma-separated list of fields located in a cross-origin iframe.\n", + "type": "string" + }, + "flow_id": { + "description": "Flow id of an interaction session with a credit card form", + "type": "string" + }, + "iframe": { + "description": "String that contains a comma-separated list of fields located in an iframe.\n", + "type": "string" + }, + "iframe_count": { + "description": "Number of iframe is detected in the form\n", + "type": "quantity" + }, + "main_frame": { + "description": "String that contains a comma-separated list of fields located in the main frame, such as \"cc-number, cc-type\".\n", + "type": "string" + }, + "sandboxed": { + "description": "String that contains a comma-separated list of fields located in a sandbox iframe.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "17bbcfc9efbe229c0d7410ef5752cd745ac1b494", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L283", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_ml_field_infer_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928369" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928369" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Captures the result from both ML-based model and existing heuristics for autofill field classification.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fathom_infer_label": { + "description": "The inferred result by the Fathom model.", + "type": "string" + }, + "fathom_infer_score": { + "description": "The score of the inferred result by the Fathom model.", + "type": "string" + }, + "infer_field_name": { + "description": "The inferred result by the existing autofill heuristics.", + "type": "string" + }, + "infer_reason": { + "description": "The inference method. Possible values are `autocomplete`, `fathom`, `regex-heuristic`, or `update-heuristic`.", + "type": "string" + }, + "is_valid_section": { + "description": "Whether the inferred field is in a valid credit card or address section.", + "type": "boolean" + }, + "ml_infer_label": { + "description": "The inferred result by the autofill ML model.", + "type": "string" + }, + "ml_infer_score": { + "description": "The score of the inferred result by the autofill ML model.", + "type": "string" + }, + "ml_revision": { + "description": "The revision for the ML autofill model.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L1541", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_os_auth_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "dates": { + "first": "2025-01-15 12:27:33", + "last": "2025-02-04 14:27:22" + }, + "description": "Check at startup whether OS Authentication has been enabled for credit cards.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5597784b078f9287d0e509537bc41e1591e467b3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L395", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_prompt_shown_os_reauth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "dates": { + "first": "2025-01-15 12:27:33", + "last": "2025-02-04 14:27:22" + }, + "description": "Captures the method of user interaction initiating the prompt and the result of the prompt. Possible triggers include:\n \"autofill\" when a user attempts to autofill a payment method.\n \"edit\" when a user edits a login in about:preferences\n \"toggle_pref_os_auth\" when a user toggles \"Autofill / Require device sign in\" in about:preferences\nPossible results include:\n \"success\" should be used when the user is shown the OS Auth prompt and successfully authenticates.\n \"fail_user_canceled\" should be used when the user cancels the authentication prompt. The user may or may not have provided an incorrect password before cancelling.\n \"fail_error\" should be used when an unexpected exception is encountered.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "result": { + "description": "The result of the OS Authentication.\n", + "type": "string" + }, + "trigger": { + "description": "Which user interaction triggered the event.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5597784b078f9287d0e509537bc41e1591e467b3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L345", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "formautofill_require_os_reauth_toggle": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "dates": { + "first": "2025-01-15 12:27:33", + "last": "2025-02-04 14:27:22" + }, + "description": "Toggle states include:\n True means the OS Auth preference is enabled.\n False means it is disabled.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "toggle_state": { + "description": "The toggle state after the event.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5597784b078f9287d0e509537bc41e1591e467b3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Form Autofill" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/formautofill/metrics.yaml#L375", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_account_settings": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#account_settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L349", + "telemetry_mirror": "Fxa_app_menu_Click_AccountSettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_cad": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#cad.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L384", + "telemetry_mirror": "Fxa_app_menu_Click_Cad", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_login": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L400", + "telemetry_mirror": "Fxa_app_menu_Click_Login", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_monitor_cta": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#monitor_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L560", + "telemetry_mirror": "Fxa_app_menu_Click_MonitorCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_open_monitor": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#open_monitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L528", + "telemetry_mirror": "Fxa_app_menu_Click_OpenMonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_open_send": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#open_send.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L544", + "telemetry_mirror": "Fxa_app_menu_Click_OpenSend", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_relay_cta": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#relay_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L576", + "telemetry_mirror": "Fxa_app_menu_Click_RelayCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_send_tab": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#send_tab.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L416", + "telemetry_mirror": "Fxa_app_menu_Click_SendTab", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_sync_cta": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#sync_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L608", + "telemetry_mirror": "Fxa_app_menu_Click_SyncCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_sync_now": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#sync_now.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L432", + "telemetry_mirror": "Fxa_app_menu_Click_SyncNow", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_sync_settings": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#sync_settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L448", + "telemetry_mirror": "Fxa_app_menu_Click_SyncSettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_sync_tabs": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#sync_tabs.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L464", + "telemetry_mirror": "Fxa_app_menu_Click_SyncTabs", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_sync_tabs_sidebar": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#sync_tabs_sidebar.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L480", + "telemetry_mirror": "Fxa_app_menu_Click_SyncTabsSidebar", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_toolbar_icon": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#toolbar_icon.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L496", + "telemetry_mirror": "Fxa_app_menu_Click_ToolbarIcon", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_unver_sync_settings": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#unver_sync_settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L512", + "telemetry_mirror": "Fxa_app_menu_Click_UnverSyncSettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_app_menu_click_vpn_cta": { + "bugs": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1542334", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA menu in the app (hamburger) menu This event was generated to correspond to the Legacy Telemetry event fxa_app_menu.click#vpn_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L592", + "telemetry_mirror": "Fxa_app_menu_Click_VpnCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_account_settings": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#account_settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L71", + "telemetry_mirror": "Fxa_avatar_menu_Click_AccountSettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_cad": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#cad.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L108", + "telemetry_mirror": "Fxa_avatar_menu_Click_Cad", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_login": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L124", + "telemetry_mirror": "Fxa_avatar_menu_Click_Login", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_monitor_cta": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#monitor_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L284", + "telemetry_mirror": "Fxa_avatar_menu_Click_MonitorCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_open_monitor": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#open_monitor.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L252", + "telemetry_mirror": "Fxa_avatar_menu_Click_OpenMonitor", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_open_send": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#open_send.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L268", + "telemetry_mirror": "Fxa_avatar_menu_Click_OpenSend", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_relay_cta": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#relay_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L300", + "telemetry_mirror": "Fxa_avatar_menu_Click_RelayCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_send_tab": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#send_tab.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L140", + "telemetry_mirror": "Fxa_avatar_menu_Click_SendTab", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_sync_cta": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#sync_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L332", + "telemetry_mirror": "Fxa_avatar_menu_Click_SyncCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_sync_now": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#sync_now.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L156", + "telemetry_mirror": "Fxa_avatar_menu_Click_SyncNow", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_sync_settings": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#sync_settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L172", + "telemetry_mirror": "Fxa_avatar_menu_Click_SyncSettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_sync_tabs": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#sync_tabs.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L188", + "telemetry_mirror": "Fxa_avatar_menu_Click_SyncTabs", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_sync_tabs_sidebar": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#sync_tabs_sidebar.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L204", + "telemetry_mirror": "Fxa_avatar_menu_Click_SyncTabsSidebar", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_toolbar_icon": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#toolbar_icon.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L220", + "telemetry_mirror": "Fxa_avatar_menu_Click_ToolbarIcon", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_unver_sync_settings": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#unver_sync_settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L236", + "telemetry_mirror": "Fxa_avatar_menu_Click_UnverSyncSettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "fxa_avatar_menu_click_vpn_cta": { + "bugs": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "data_reviews": [ + "https://bugzil.la/1524665", + "https://bugzil.la/1585459", + "https://bugzil.la/1606203" + ], + "dates": { + "first": "2024-12-20 00:29:17", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded on interactions with the FxA avatar menu on the toolbar This event was generated to correspond to the Legacy Telemetry event fxa_avatar_menu.click#vpn_cta.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fxa_avatar": { + "description": "Boolean for whether or not account has set an avatar\n", + "type": "string" + }, + "fxa_status": { + "description": "The current state of the user. Possible states are \"not_configured\", \"unverified\", \"signedin\" and \"login_failed\".\n", + "type": "string" + }, + "fxa_sync_on": { + "description": "Boolean for whether or not sync was configured at the time the event fired.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "4133ac22542ec7df35e174071326bf7455e0c417", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "vbudhram@mozilla.com", + "loines@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L316", + "telemetry_mirror": "Fxa_avatar_menu_Click_VpnCta", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gecko_build_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877576" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2" + ], + "dates": { + "first": "2024-02-19 03:29:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The Buildid of the Gecko engine, example: 20200205124310 (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dd5144722978c82b39fc1b7066a2346ff4983233", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "user", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/xre/metrics.yaml#L33", + "type": "string", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "gecko_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877576" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2" + ], + "dates": { + "first": "2024-02-19 03:29:25", + "last": "2025-02-04 14:27:22" + }, + "description": "The version of the Gecko engine, example: 74.0a1 (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "dd5144722978c82b39fc1b7066a2346ff4983233", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "user", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/xre/metrics.yaml#L14", + "type": "string", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop", + "pine" + ] + }, + "geckoview_validation_build_id": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1732928" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2" + ], + "dates": { + "first": "2021-10-22 08:53:29", + "last": "2021-11-22 20:07:38" + }, + "description": "The Buildid of the Gecko engine, example: 20200205124310 Mirror of `geckoview.build_id` for validation of migrated data.\n", + "disabled": false, + "expires": "98", + "gecko_datapoint": "", + "git-commits": { + "first": "6bc7261a9b9c183997f0b35c4db38d46e22db647", + "last": "8d0d4304039c893cd1dd5908a1ef5852ac63aa16" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 33, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/8d0d4304039c893cd1dd5908a1ef5852ac63aa16/gfx/metrics.yaml#L50", + "telemetry_mirror": "GECKO_BUILD_ID", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "geckoview_validation_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687219", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1732928" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1611240#c2" + ], + "dates": { + "first": "2021-10-22 08:53:29", + "last": "2021-11-22 20:07:38" + }, + "description": "The version of the Gecko engine, example: 74.0a1 Mirror of `geckoview.version` for validation of migrated data.\n", + "disabled": false, + "expires": "98", + "gecko_datapoint": "", + "git-commits": { + "first": "6bc7261a9b9c183997f0b35c4db38d46e22db647", + "last": "8d0d4304039c893cd1dd5908a1ef5852ac63aa16" + }, + "lifetime": "ping", + "metadata": {}, + "no_lint": [], + "notification_emails": [ + "jrediger@mozilla.com" + ], + "reflog-index": { + "first": 33, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/8d0d4304039c893cd1dd5908a1ef5852ac63aa16/gfx/metrics.yaml#L33", + "telemetry_mirror": "GECKO_VERSION", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "geolocation_accuracy": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "dates": { + "first": "2024-07-16 00:08:14", + "last": "2025-02-04 14:27:22" + }, + "description": "Accuracy returned by the Geolocation API\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "81ba3cfa916674f581c2b126e1862f2f4d3aee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Geolocation" + ] + }, + "no_lint": [], + "notification_emails": [ + "krosylight@mozilla.com" + ], + "range_max": 66355200, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/geolocation/metrics.yaml#L14", + "type": "custom_distribution", + "unit": "accuracy radius", + "version": 0, + "repos": [ + "gecko" + ] + }, + "geolocation_fallback": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "dates": { + "first": "2024-07-16 00:08:14", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the default provider falled back to NetworkGeolocationProvider.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "81ba3cfa916674f581c2b126e1862f2f4d3aee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "none", + "on_error", + "on_timeout" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Geolocation" + ] + }, + "no_lint": [], + "notification_emails": [ + "krosylight@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/geolocation/metrics.yaml#L47", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "geolocation_linux_provider": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "dates": { + "first": "2024-08-05 16:04:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Which system provider are we using on Linux\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e4c83ed7e359df92e58943f2d62c4fea0652a4c1", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "none", + "portal", + "geoclue" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Geolocation" + ] + }, + "no_lint": [], + "notification_emails": [ + "krosylight@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/geolocation/metrics.yaml#L62", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "geolocation_request_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905928" + ], + "dates": { + "first": "2024-07-16 00:08:14", + "last": "2025-02-04 14:27:22" + }, + "description": "The result for each geolocation request. Success label will only happen once for each request, even if it's a watch request.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "81ba3cfa916674f581c2b126e1862f2f4d3aee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "success", + "permission_denied", + "position_unavailable", + "timeout" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Geolocation" + ] + }, + "no_lint": [], + "notification_emails": [ + "krosylight@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/geolocation/metrics.yaml#L30", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gfx_hdr_windows_display_colorspace_bitfield": { + "bugs": [ + "https://bugzil.la/1514840", + "https://bugzil.la/1690597" + ], + "data_reviews": [ + "https://bugzil.la/1514840", + "https://bugzil.la/1690597" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "A bitfield representation of the available DXGI color spaces of the connected displays on Windows. See (https://docs.microsoft.com/en- us/windows/desktop/api/dxgicommon/ne-dxgicommon- dxgi_color_space_type) for definitions of color spaces. Each N'th bit of this scalar indicates whether the DXGI color space with index 'N' is available on at least one connected monitor. This metric was generated to correspond to the Legacy Telemetry scalar gfx.hdr.windows_display_colorspace_bitfield.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [ + "UNIT_IN_NAME" + ], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaaar@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L1064", + "telemetry_mirror": "GFX_HDR_WINDOWS_DISPLAY_COLORSPACE_BITFIELD", + "type": "quantity", + "unit": "bitfield", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gfx_linux_window_protocol": { + "bugs": [ + "https://bugzil.la/1645732" + ], + "data_reviews": [ + "https://bugzil.la/1645732" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Windowing protocol on Linux. Can be Wayland, WaylandDRM, XWayland, or X11 This metric was generated to correspond to the Legacy Telemetry scalar gfx.linux_window_protocol.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "aosmond@mozilla.com", + "mkaply@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L392", + "telemetry_mirror": "GFX_LINUX_WINDOW_PROTOCOL", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gfx_os_compositor": { + "bugs": [ + "https://bugzil.la/1623492" + ], + "data_reviews": [ + "https://bugzil.la/1623492" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Boolean indicating whether the os compositor is being used by WebRender. Only collected in the first subsession. This metric was generated to correspond to the Legacy Telemetry scalar gfx.os_compositor.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jmuizelaar@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L375", + "telemetry_mirror": "GFX_OS_COMPOSITOR", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gfx_skipped_composites": { + "bugs": [ + "https://bugzil.la/1797975" + ], + "data_reviews": [ + "https://bugzil.la/1797975" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of skipped composites, happening when rendering is too slow to keep up with content. This metric was generated to correspond to the Legacy Telemetry scalar gfx.skipped_composites.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L358", + "telemetry_mirror": "GFX_SKIPPED_COMPOSITES", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gfx_supports_hdr": { + "bugs": [ + "https://bugzil.la/1798067" + ], + "data_reviews": [ + "https://bugzil.la/1798067" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Does the hardware support accurate display of HDR content This metric was generated to correspond to the Legacy Telemetry scalar gfx.supports_hdr.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "bwerth@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L410", + "telemetry_mirror": "GFX_SUPPORTS_HDR", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gfx_tmp_writable": { + "bugs": [ + "https://bugzil.la/1923741" + ], + "data_reviews": [ + "https://bugzil.la/1923741" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2024-10-28 00:20:33" + }, + "description": "Is the system temporary directory writable This metric was generated to correspond to the Legacy Telemetry scalar gfx.tmp_writable.\n", + "disabled": false, + "expires": 134, + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "051d62cec0339cc9fa112a7af89a608601254e82" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "aosmond@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/051d62cec0339cc9fa112a7af89a608601254e82/gfx/metrics.yaml#L383", + "telemetry_mirror": "GFX_TMP_WRITABLE", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gifft_validation_main_ping_assembling": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1753689" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1753689" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-02-11 14:27:38", + "last": "2022-02-15 13:35:08" + }, + "description": "The value `true`, recorded when a Firefox Telemetry \"main\" ping is about\nto be assembled.\nTo be used to validate GIFFT.\n", + "disabled": false, + "expires": 102, + "gecko_datapoint": "", + "git-commits": { + "first": "6e78bc67d5a478eaf64344ec84134f934256f9ab", + "last": "592da895ccce2fd0e0aaa5355121e4c7817d8b89" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "chutten@mozilla.com" + ], + "reflog-index": { + "first": 9, + "last": 7 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/592da895ccce2fd0e0aaa5355121e4c7817d8b89/toolkit/components/glean/metrics.yaml#L128", + "telemetry_mirror": "GIFFT_VALIDATION_MIRROR_FOR_MAIN_PING_ASSEMBLING", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gmp_update_xml_fetch_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1739664" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1739664" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-07-26 17:16:00", + "last": "2025-02-04 14:27:22" + }, + "description": "The result of Gecko fetching an update.xml from Balrog. This captures 3 different data points: success or failure of the request, if cert pinning or content signatures were used to verify the result, and the reason for failure, if the request failed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a881771fd12661ad8082395b9eefaf1e64453c66", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cert_pin_success", + "cert_pin_net_request_error", + "cert_pin_net_timeout", + "cert_pin_abort", + "cert_pin_missing_data", + "cert_pin_failed", + "cert_pin_invalid", + "cert_pin_xml_parse_error", + "cert_pin_unknown_error", + "content_sig_success", + "content_sig_net_request_error", + "content_sig_net_timeout", + "content_sig_abort", + "content_sig_missing_data", + "content_sig_failed", + "content_sig_invalid", + "content_sig_xml_parse_error", + "content_sig_unknown_error" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: GMP" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L14", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gpu_process_crash_fallbacks": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-21 11:43:39", + "last": "2025-02-04 14:27:22" + }, + "description": "How often we use different fallbacks when the GPU process crashes\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6ff47ae896c2a28502481ed0f4c095f743622da6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "none", + "decoding_disabled", + "disabled" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jnicol@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L44", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gpu_process_feature_status": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-21 11:43:39", + "last": "2025-02-04 14:27:22" + }, + "description": "Current status of the GPU process feature\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6ff47ae896c2a28502481ed0f4c095f743622da6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jnicol@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L30", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gpu_process_initialization_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1324095", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1324095", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "GPU process initialization (excluding XPCOM and fork time) time in milliseconds\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram GPU_PROCESS_INITIALIZATION_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "rhunt@mozilla.com", + "dbolter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L116", + "telemetry_mirror": "GPU_PROCESS_INITIALIZATION_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gpu_process_launch_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1297790", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1317796", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1297790", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1317796", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "GPU process launch time in milliseconds\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram GPU_PROCESS_LAUNCH_TIME_MS_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "rhunt@mozilla.com", + "dbolter@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L93", + "telemetry_mirror": "GPU_PROCESS_LAUNCH_TIME_MS_2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gpu_process_total_launch_attempts": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-21 11:43:39", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of total GPU process launch attempts.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6ff47ae896c2a28502481ed0f4c095f743622da6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jnicol@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L62", + "type": "quantity", + "unit": "launches", + "version": 0, + "repos": [ + "gecko" + ] + }, + "gpu_process_unstable_launch_attempts": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870021" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-21 11:43:39", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of consecutive unstable launch attempts.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6ff47ae896c2a28502481ed0f4c095f743622da6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "jnicol@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L77", + "type": "quantity", + "unit": "launches", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hls_canplay_requested": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912183" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912183" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-13 10:11:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Record when a page requests canPlayType for a HLS media type.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "78df0170d37186d0ffde8a090f5ac07a03a1cd4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/hls/metrics.yaml#L14", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hls_canplay_supported": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912183" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912183" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-13 10:11:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Record when a canPlayType request supports HLS.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "78df0170d37186d0ffde8a090f5ac07a03a1cd4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/hls/metrics.yaml#L31", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hls_media_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912183" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912183" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-13 10:11:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the information about the HLS playback on Android using ExoPlayer. The value of this event contains the media format.\n", + "disabled": false, + "expires": 138, + "extra_keys": { + "media_extension": { + "description": "The extension in the media file name, could be 'ts' (for MPEG-TS), 'mp4', 'aac', 'mp3', ...\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "78df0170d37186d0ffde8a090f5ac07a03a1cd4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/hls/metrics.yaml#L48", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_bytes_evicted_compressor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: Number of bytes removed from dynamic table to make room for 1 new item\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_BYTES_EVICTED_COMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1606", + "telemetry_mirror": "HPACK_BYTES_EVICTED_COMPRESSOR", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_bytes_evicted_decompressor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: Number of bytes removed from dynamic table to make room for 1 new item\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_BYTES_EVICTED_DECOMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1507", + "telemetry_mirror": "HPACK_BYTES_EVICTED_DECOMPRESSOR", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_bytes_evicted_ratio_compressor": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: Ratio of bytes evicted to bytes added (* 100)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_BYTES_EVICTED_RATIO_COMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1024, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1624", + "telemetry_mirror": "HPACK_BYTES_EVICTED_RATIO_COMPRESSOR", + "type": "custom_distribution", + "unit": "percent", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_bytes_evicted_ratio_decompressor": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: Ratio of bytes evicted to bytes added (* 100)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_BYTES_EVICTED_RATIO_DECOMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1024, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1525", + "telemetry_mirror": "HPACK_BYTES_EVICTED_RATIO_DECOMPRESSOR", + "type": "custom_distribution", + "unit": "percent", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_elements_evicted_compressor": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: Number of items removed from dynamic table to make room for 1 new item\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_ELEMENTS_EVICTED_COMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 256, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1584", + "telemetry_mirror": "HPACK_ELEMENTS_EVICTED_COMPRESSOR", + "type": "custom_distribution", + "unit": "item", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_elements_evicted_decompressor": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: Number of items removed from dynamic table to make room for 1 new item\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_ELEMENTS_EVICTED_DECOMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 256, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1485", + "telemetry_mirror": "HPACK_ELEMENTS_EVICTED_DECOMPRESSOR", + "type": "custom_distribution", + "unit": "item", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_peak_count_compressor": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: peak number of items in the dynamic table\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_PEAK_COUNT_COMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1024, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1645", + "telemetry_mirror": "HPACK_PEAK_COUNT_COMPRESSOR", + "type": "custom_distribution", + "unit": "item", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_peak_count_decompressor": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: peak number of items in the dynamic table\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_PEAK_COUNT_DECOMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1024, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1546", + "telemetry_mirror": "HPACK_PEAK_COUNT_DECOMPRESSOR", + "type": "custom_distribution", + "unit": "item", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_peak_size_compressor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: peak size in bytes of the table\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_PEAK_SIZE_COMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1666", + "telemetry_mirror": "HPACK_PEAK_SIZE_COMPRESSOR", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "hpack_peak_size_decompressor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296280" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HPACK: peak size in bytes of the table\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HPACK_PEAK_SIZE_DECOMPRESSOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1567", + "telemetry_mirror": "HPACK_PEAK_SIZE_DECOMPRESSOR", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_altsvc_entries_per_header": { + "bucket_count": 6, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499149" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499149" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "How many alt-svc productions were seen in a single Alt-Svc header\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_ALTSVC_ENTRIES_PER_HEADER.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 5, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2143", + "telemetry_mirror": "HTTP_ALTSVC_ENTRIES_PER_HEADER", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_altsvc_mapping_changed_target": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499149" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1499149" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether or not a new alt-svc mapping would change the target hostname of the existing mapping\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram HTTP_ALTSVC_MAPPING_CHANGED_TARGET.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2163", + "telemetry_mirror": "h#HTTP_ALTSVC_MAPPING_CHANGED_TARGET", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_channel_disposition": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1341128" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1341128" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Channel Disposition: 0=Cancel, 1=Disk, 2=NetOK, 3=NetEarlyFail, 4=NetlateFail, +8 for HTTPS\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_CHANNEL_DISPOSITION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2226", + "telemetry_mirror": "HTTP_CHANNEL_DISPOSITION", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_channel_onstart_success": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1473333", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1587226" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1473333", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1587226" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Successfully started HTTP channels\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram HTTP_CHANNEL_ONSTART_SUCCESS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2247", + "telemetry_mirror": "h#HTTP_CHANNEL_ONSTART_SUCCESS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_channel_page_onstart_success_trr": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767417" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767417" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Successfully started HTTP channels for page loading when TRR is enabled; Keyed by TRR domain\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_CHANNEL_PAGE_ONSTART_SUCCESS_TRR3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2268", + "telemetry_mirror": "HTTP_CHANNEL_PAGE_ONSTART_SUCCESS_TRR3", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_channel_sub_onstart_success_trr": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767417" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1767417" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Successfully started HTTP channels for resource loading when TRR is enabled; Keyed by TRR domain\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_CHANNEL_SUB_ONSTART_SUCCESS_TRR3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2290", + "telemetry_mirror": "HTTP_CHANNEL_SUB_ONSTART_SUCCESS_TRR3", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_connection_close_reason": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1784261" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1784261" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Reason for HTTP connection closure, keyed by properties like HTTP version and connection state.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_CONNECTION_CLOSE_REASON.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2372", + "telemetry_mirror": "HTTP_CONNECTION_CLOSE_REASON", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_connection_entry_cache_hit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Fraction of sockets that used a nsConnectionEntry with history - size 300.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram HTTP_CONNECTION_ENTRY_CACHE_HIT_1.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2312", + "telemetry_mirror": "h#HTTP_CONNECTION_ENTRY_CACHE_HIT_1", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_content_encoding": { + "bucket_count": 7, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "encoding removed: 0=unknown, 1=gzip, 2=deflate, 3=brotli, 4=zstd\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_CONTENT_ENCODING.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 6, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2352", + "telemetry_mirror": "HTTP_CONTENT_ENCODING", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_kbread_per_conn2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1520260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1520260" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP: KB read per connection\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_KBREAD_PER_CONN2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2047", + "telemetry_mirror": "HTTP_KBREAD_PER_CONN2", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_pageload_is_ssl": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a HTTP page load was over SSL or not. Recorded during response processing for all first-party page loads.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram HTTP_PAGELOAD_IS_SSL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2104", + "telemetry_mirror": "h#HTTP_PAGELOAD_IS_SSL", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_proxy_type": { + "bucket_count": 9, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP Proxy Type (none, http, socks)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_PROXY_TYPE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 8, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2064", + "telemetry_mirror": "HTTP_PROXY_TYPE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_request_per_conn": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP: requests per connection\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_REQUEST_PER_CONN.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2027", + "telemetry_mirror": "HTTP_REQUEST_PER_CONN", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_request_per_page": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP: Requests per page (count)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_REQUEST_PER_PAGE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1987", + "telemetry_mirror": "HTTP_REQUEST_PER_PAGE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_request_per_page_from_cache": { + "bucket_count": 102, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP: Requests serviced from cache (%)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_REQUEST_PER_PAGE_FROM_CACHE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 101, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2007", + "telemetry_mirror": "HTTP_REQUEST_PER_PAGE_FROM_CACHE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_response_version": { + "bucket_count": 49, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP: Protocol Version Used on Response from nsHttp.h\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_RESPONSE_VERSION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 48, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2206", + "telemetry_mirror": "HTTP_RESPONSE_VERSION", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_saw_quic_alt_protocol": { + "bucket_count": 4, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Does a response has a h3(1), other quic(2) or non(0) alt-protocol advertisement.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_SAW_QUIC_ALT_PROTOCOL_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 3, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2331", + "telemetry_mirror": "HTTP_SAW_QUIC_ALT_PROTOCOL_2", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_subitem_first_byte_latency_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP subitem channel: Page start -> first byte received for subitem reply (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_SUBITEM_FIRST_BYTE_LATENCY_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1969", + "telemetry_mirror": "HTTP_SUBITEM_FIRST_BYTE_LATENCY_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_subitem_open_latency_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP subitem channel: Page start -> subitem open() (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_SUBITEM_OPEN_LATENCY_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1952", + "telemetry_mirror": "HTTP_SUBITEM_OPEN_LATENCY_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_ech_retry_ech_failed_count": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When echConfig is enabled, number of times a transaction is retried because of SSL_ERROR_ECH_FAILED\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_ECH_RETRY_ECH_FAILED_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2459", + "telemetry_mirror": "TRANSACTION_ECH_RETRY_ECH_FAILED_COUNT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_ech_retry_others_count": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When echConfig is enabled, number of times a transaction is retried because of other error\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_ECH_RETRY_OTHERS_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2481", + "telemetry_mirror": "TRANSACTION_ECH_RETRY_OTHERS_COUNT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_ech_retry_with_ech_count": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When echConfig is enabled, number of times a transaction is retried because of SSL_ERROR_ECH_RETRY_WITH_ECH\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_ECH_RETRY_WITH_ECH_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2415", + "telemetry_mirror": "TRANSACTION_ECH_RETRY_WITH_ECH_COUNT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_ech_retry_without_ech_count": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1671886" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "When echConfig is enabled, number of times a transaction is retried because of SSL_ERROR_ECH_RETRY_WITHOUT_ECH\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_ECH_RETRY_WITHOUT_ECH_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2437", + "telemetry_mirror": "TRANSACTION_ECH_RETRY_WITHOUT_ECH_COUNT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_is_ssl": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether an HTTP request occurred over TLS/SSL or not. Recorded during response processing for all requests.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram HTTP_TRANSACTION_IS_SSL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2084", + "telemetry_mirror": "h#HTTP_TRANSACTION_IS_SSL", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_restart_reason": { + "bucket_count": 51, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1667775" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1667775" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The reason why a HTTP transaction is restarted.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram HTTP_TRANSACTION_RESTART_REASON.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 50, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2394", + "telemetry_mirror": "HTTP_TRANSACTION_RESTART_REASON", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_use_altsvc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a HTTP transaction was routed via Alt-Svc or not.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram HTTP_TRANSACTION_USE_ALTSVC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2124", + "telemetry_mirror": "h#HTTP_TRANSACTION_USE_ALTSVC", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_wait_time_http": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from submission to dispatch of HTTP transaction (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_WAIT_TIME_HTTP.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2503", + "telemetry_mirror": "TRANSACTION_WAIT_TIME_HTTP", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_wait_time_http2_sup_http3": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from submission to dispatch of HTTP2 transaction that has received a respone from a server that addretizes HTTP3 support (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_WAIT_TIME_HTTP2_SUP_HTTP3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2554", + "telemetry_mirror": "TRANSACTION_WAIT_TIME_HTTP2_SUP_HTTP3", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_wait_time_http3": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from submission to dispatch of HTTP/3 transaction (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_WAIT_TIME_HTTP3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2537", + "telemetry_mirror": "TRANSACTION_WAIT_TIME_HTTP3", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_transaction_wait_time_spdy": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1605099" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from submission to dispatch of SPDY transaction (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram TRANSACTION_WAIT_TIME_SPDY.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2520", + "telemetry_mirror": "TRANSACTION_WAIT_TIME_SPDY", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "http_upload_bandwidth_mbps": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830087" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1830087" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload bandwidth for requests larger than 10MB. Measured in megabits per second, Mbps. Keyed by HTTP protocol version.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_UPLOAD_BANDWIDTH_MBPS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "range_max": 10000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L2183", + "telemetry_mirror": "HTTP_UPLOAD_BANDWIDTH_MBPS", + "type": "labeled_custom_distribution", + "unit": "megabits per second", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_downgrade_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-27 14:20:11", + "last": "2025-02-04 14:27:22" + }, + "description": "If a HTTPS-First (`dom.security.https_first` enabled) upgrade isn't successful, measures the timespan between the navigation start and the downgrade.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6a1787e9e9404272a1984c3a503886fe72650f1e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L118", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_downgrade_time_schemeless": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-27 14:20:11", + "last": "2025-02-04 14:27:22" + }, + "description": "If a schemeless HTTPS-First (`dom.security.https_first` disabled, but load marked as schemeless) upgrade isn't successful, measures the timespan between the navigation start and the downgrade.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6a1787e9e9404272a1984c3a503886fe72650f1e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L136", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_downgraded": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-27 14:20:11", + "last": "2025-02-04 14:27:22" + }, + "description": "How many regular HTTPS-First (`dom.security.https_first` enabled) upgrades fail and get downgraded again.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6a1787e9e9404272a1984c3a503886fe72650f1e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L49", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_downgraded_on_timer": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "httpsfirst.downgraded", + "description": "How many HTTPS-First (`dom.security.https_first` enabled) upgrades get downgraded again because the HTTP request fired after 3s received a answer faster than the HTTPS request.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L81", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_downgraded_on_timer_schemeless": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "httpsfirst.downgraded_schemeless", + "description": "How many of schemeless HTTPS-First (`dom.security.https_first` disabled, but load marked as schemeless) upgrades get downgraded again because the HTTP request fired after 3s received a answer faster than the HTTPS request\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L99", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_downgraded_schemeless": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-27 14:20:11", + "last": "2025-02-04 14:27:22" + }, + "description": "How many schemeless HTTPS-First (`dom.security.https_first` disabled, but load marked as schemeless) upgrades fail and get downgraded again.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6a1787e9e9404272a1984c3a503886fe72650f1e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L65", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_upgraded": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-27 14:20:11", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often a load is successfully upgraded to HTTPS because of HTTPS-First (`dom.security.https_first` enabled). This does not include loads that get downgraded again.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6a1787e9e9404272a1984c3a503886fe72650f1e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L14", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "httpsfirst_upgraded_schemeless": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1868380#c10" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-27 14:20:11", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often a load is successfully upgraded to HTTPS because of schemeless HTTPS-First (`dom.security.https_first` disabled, but load marked as schemeless). This does not include loads that get downgraded again.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6a1787e9e9404272a1984c3a503886fe72650f1e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "mjurgens@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L31", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_input_telemetry_image_input": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1899117" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D223316" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-10-30 00:16:42", + "last": "2025-02-04 14:27:22" + }, + "description": "Type of user image file(s) input and browser input type and platform.\n", + "disabled": false, + "expires": 139, + "extra_keys": { + "image_type": { + "description": "User input image file type(s).", + "type": "string" + }, + "input_type": { + "description": "User input type.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "009200073cb54f0b94cc66569d233c967b8bd514", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Privacy: Anti-Tracking" + ] + }, + "no_lint": [], + "notification_emails": [ + "lschwarz@mozilla.com", + "bvandersloot@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/antitracking/imageinputmetadatastripper/metrics.yaml#L14", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_chunks": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of chunks per decode attempt\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_CHUNKS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 500, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L499", + "telemetry_mirror": "IMAGE_DECODE_CHUNKS", + "type": "custom_distribution", + "unit": "decode chunks", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_count": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Decode count\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "range_max": 500, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L520", + "telemetry_mirror": "IMAGE_DECODE_COUNT", + "type": "custom_distribution", + "unit": "decode count", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_on_draw_latency": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from starting a decode to it showing up on the screen (us)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_ON_DRAW_LATENCY.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L482", + "telemetry_mirror": "IMAGE_DECODE_ON_DRAW_LATENCY", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_speed_avif": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1294490" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1294490" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "AVIF image decode speed (Kbytes/sec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_SPEED_AVIF.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L609", + "telemetry_mirror": "IMAGE_DECODE_SPEED_AVIF", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_speed_gif": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "GIF image decode speed (Kbytes/sec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_SPEED_GIF.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L558", + "telemetry_mirror": "IMAGE_DECODE_SPEED_GIF", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_speed_jpeg": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "JPEG image decode speed (Kbytes/sec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_SPEED_JPEG.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L541", + "telemetry_mirror": "IMAGE_DECODE_SPEED_JPEG", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_speed_png": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "PNG image decode speed (Kbytes/sec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_SPEED_PNG.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L575", + "telemetry_mirror": "IMAGE_DECODE_SPEED_PNG", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_speed_webp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1294490" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1294490" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "WebP image decode speed (Kbytes/sec)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_SPEED_WEBP.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L592", + "telemetry_mirror": "IMAGE_DECODE_SPEED_WEBP", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "image_decode_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent decoding an image (us)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram IMAGE_DECODE_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics: ImageLib" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/image/decoders/metrics.yaml#L465", + "telemetry_mirror": "IMAGE_DECODE_TIME", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_received_messages_content_background": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was received, Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L2903", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_received_messages_content_foreground": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was received, Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L2903", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_received_messages_gpu_process": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was received, Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L2903", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_received_messages_parent_active": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was received, Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L2903", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_received_messages_parent_inactive": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was received, Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L2903", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_sent_messages_content_background": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was sent. Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L13", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_sent_messages_content_foreground": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was sent. Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L13", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_sent_messages_gpu_process": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was sent. Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L13", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_sent_messages_parent_active": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was sent. Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L13", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ipc_sent_messages_parent_inactive": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1790872" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-30 01:10:15", + "last": "2022-11-29 22:24:32" + }, + "description": "How many times each IPC message type was sent. Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "06f21673d276aeb18e687de86ad363e7a7e707a3", + "last": "ca638b64eac142113ab98f632d5cb7953b9a1a08" + }, + "labels": [ + "data_pipe.closed", + "data_pipe.bytes_consumed", + "node.accept_invite", + "node.request_introduction", + "node.introduce", + "node.broadcast_message", + "node.event_message", + "channel.impending_shutdown", + "channel.build_ids_match", + "channel.build_id", + "channel.channel_opened", + "channel.shmem_destroyed", + "channel.shmem_created", + "channel.goodbye", + "channel.cancel", + "unknown", + "palt_data_output_stream.m_close", + "palt_data_output_stream.m___delete__", + "palt_data_output_stream.m_delete_self", + "palt_data_output_stream.m_error", + "palt_data_output_stream.m_write_data", + "palt_data_output_stream.r___delete__", + "palt_service.m_clear_host_mapping", + "palt_service.m___delete__", + "palt_service.m_process_header", + "palt_service.r___delete__", + "palt_svc_transaction.m___delete__", + "palt_svc_transaction.m_on_transaction_close", + "palt_svc_transaction.r___delete__", + "papzctree_manager.m_cancel_autoscroll", + "papzctree_manager.m_content_received_input_block", + "papzctree_manager.m___delete__", + "papzctree_manager.m_handle_tap", + "papzctree_manager.m_notify_pinch_gesture", + "papzctree_manager.m_notify_scale_gesture_complet", + "papzctree_manager.m_set_allowed_touch_behavior", + "papzctree_manager.m_set_dpi", + "papzctree_manager.m_set_keyboard_map", + "papzctree_manager.m_set_long_tap_enabled", + "papzctree_manager.m_set_target_apzc", + "papzctree_manager.m_start_autoscroll", + "papzctree_manager.m_start_scrollbar_drag", + "papzctree_manager.m_stop_autoscroll", + "papzctree_manager.m_update_zoom_constraints", + "papzctree_manager.m_zoom_to_rect", + "papzctree_manager.r___delete__", + "papzinput_bridge.m_call_input_block_callback", + "papzinput_bridge.m_process_unhandled_event", + "papzinput_bridge.m_receive_keyboard_input_event", + "papzinput_bridge.m_receive_mouse_input_event", + "papzinput_bridge.m_receive_multi_touch_input_ev", + "papzinput_bridge.m_receive_pan_gesture_input_ev", + "papzinput_bridge.m_receive_pinch_gesture_input_", + "papzinput_bridge.m_receive_scroll_wheel_input_e", + "papzinput_bridge.m_receive_tap_gesture_input_ev", + "papzinput_bridge.m_update_wheel_transaction", + "papzinput_bridge.r_process_unhandled_event", + "papzinput_bridge.r_receive_keyboard_input_event", + "papzinput_bridge.r_receive_mouse_input_event", + "papzinput_bridge.r_receive_multi_touch_input_ev", + "papzinput_bridge.r_receive_pan_gesture_input_ev", + "papzinput_bridge.r_receive_pinch_gesture_input_", + "papzinput_bridge.r_receive_scroll_wheel_input_e", + "papzinput_bridge.r_receive_tap_gesture_input_ev", + "papz.m___delete__", + "papz.m_destroy", + "papz.m_layer_transforms", + "papz.m_notify_apzstate_change", + "papz.m_notify_async_autoscroll_reje", + "papz.m_notify_async_scrollbar_drag_", + "papz.m_notify_flush_complete", + "papz.m_notify_moz_mouse_scroll_even", + "papz.m_request_content_repaint", + "papz.m_update_overscroll_offset", + "papz.m_update_overscroll_velocity", + "papz.r___delete__", + "pbackground_data_bridge.m___delete__", + "pbackground_data_bridge.m_on_stop_request", + "pbackground_data_bridge.m_on_transport_and_data", + "pbackground_data_bridge.r___delete__", + "pbackground_file_handle.m_abort", + "pbackground_file_handle.m_complete", + "pbackground_file_handle.m___delete__", + "pbackground_file_handle.m_delete_me", + "pbackground_file_handle.m_finish", + "pbackground_file_handle.m_pbackground_file_request_con", + "pbackground_file_handle.r___delete__", + "pbackground_file_handle.r_pbackground_file_request_con", + "pbackground_file_request.m___delete__", + "pbackground_file_request.m_progress", + "pbackground_file_request.r___delete__", + "pbackground_idbcursor.m_continue", + "pbackground_idbcursor.m___delete__", + "pbackground_idbcursor.m_delete_me", + "pbackground_idbcursor.m_response", + "pbackground_idbcursor.r___delete__", + "pbackground_idbdatabase_file.m___delete__", + "pbackground_idbdatabase_file.r___delete__", + "pbackground_idbdatabase.m_blocked", + "pbackground_idbdatabase.m_close", + "pbackground_idbdatabase.m_close_after_invalidation_com", + "pbackground_idbdatabase.m___delete__", + "pbackground_idbdatabase.m_delete_me", + "pbackground_idbdatabase.m_invalidate", + "pbackground_idbdatabase.m_pbackground_idbdatabase_file", + "pbackground_idbdatabase.m_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.m_pbackground_idbtransaction_c", + "pbackground_idbdatabase.m_pbackground_idbversion_chang", + "pbackground_idbdatabase.m_pbackground_mutable_file_con", + "pbackground_idbdatabase.m_version_change", + "pbackground_idbdatabase.r___delete__", + "pbackground_idbdatabase_reques.m___delete__", + "pbackground_idbdatabase_reques.r___delete__", + "pbackground_idbdatabase.r_pbackground_idbdatabase_file", + "pbackground_idbdatabase.r_pbackground_idbdatabase_requ", + "pbackground_idbdatabase.r_pbackground_idbtransaction_c", + "pbackground_idbdatabase.r_pbackground_idbversion_chang", + "pbackground_idbdatabase.r_pbackground_mutable_file_con", + "pbackground_idbfactory.m___delete__", + "pbackground_idbfactory.m_delete_me", + "pbackground_idbfactory.m_pbackground_idbdatabase_cons", + "pbackground_idbfactory.m_pbackground_idbfactory_reque", + "pbackground_idbfactory.r___delete__", + "pbackground_idbfactory_request.m_blocked", + "pbackground_idbfactory_request.m___delete__", + "pbackground_idbfactory_request.r___delete__", + "pbackground_idbfactory.r_pbackground_idbdatabase_cons", + "pbackground_idbfactory.r_pbackground_idbfactory_reque", + "pbackground_idbrequest.m_continue", + "pbackground_idbrequest.m___delete__", + "pbackground_idbrequest.m_preprocess", + "pbackground_idbrequest.r___delete__", + "pbackground_idbtransaction.m_abort", + "pbackground_idbtransaction.m_commit", + "pbackground_idbtransaction.m_complete", + "pbackground_idbtransaction.m___delete__", + "pbackground_idbtransaction.m_delete_me", + "pbackground_idbtransaction.m_pbackground_idbcursor_constr", + "pbackground_idbtransaction.m_pbackground_idbrequest_const", + "pbackground_idbtransaction.r___delete__", + "pbackground_idbtransaction.r_pbackground_idbcursor_constr", + "pbackground_idbtransaction.r_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_abort", + "pbackground_idbversion_change_.m_commit", + "pbackground_idbversion_change_.m_complete", + "pbackground_idbversion_change_.m_create_index", + "pbackground_idbversion_change_.m_create_object_store", + "pbackground_idbversion_change_.m___delete__", + "pbackground_idbversion_change_.m_delete_index", + "pbackground_idbversion_change_.m_delete_me", + "pbackground_idbversion_change_.m_delete_object_store", + "pbackground_idbversion_change_.m_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.m_pbackground_idbrequest_const", + "pbackground_idbversion_change_.m_rename_index", + "pbackground_idbversion_change_.m_rename_object_store", + "pbackground_idbversion_change_.r___delete__", + "pbackground_idbversion_change_.r_pbackground_idbcursor_constr", + "pbackground_idbversion_change_.r_pbackground_idbrequest_const", + "pbackground_indexed_dbutils.m___delete__", + "pbackground_indexed_dbutils.m_delete_me", + "pbackground_indexed_dbutils.m_get_file_references", + "pbackground_indexed_dbutils.r___delete__", + "pbackground_indexed_dbutils.r_get_file_references", + "pbackground_local_storage_cach.m___delete__", + "pbackground_local_storage_cach.m_delete_me", + "pbackground_local_storage_cach.m_notify", + "pbackground_local_storage_cach.m_observe", + "pbackground_local_storage_cach.r___delete__", + "pbackground_lsdatabase.m_allow_to_close", + "pbackground_lsdatabase.m___delete__", + "pbackground_lsdatabase.m_delete_me", + "pbackground_lsdatabase.m_pbackground_lssnapshot_const", + "pbackground_lsdatabase.m_request_allow_to_close", + "pbackground_lsdatabase.r___delete__", + "pbackground_lsdatabase.r_pbackground_lssnapshot_const", + "pbackground_lsobserver.m___delete__", + "pbackground_lsobserver.m_delete_me", + "pbackground_lsobserver.m_observe", + "pbackground_lsobserver.r___delete__", + "pbackground_lsrequest.m_cancel", + "pbackground_lsrequest.m___delete__", + "pbackground_lsrequest.m_finish", + "pbackground_lsrequest.m_ready", + "pbackground_lsrequest.r___delete__", + "pbackground_lssimple_request.m___delete__", + "pbackground_lssimple_request.r___delete__", + "pbackground_lssnapshot.m_async_checkpoint", + "pbackground_lssnapshot.m_async_checkpoint_and_notify", + "pbackground_lssnapshot.m_async_finish", + "pbackground_lssnapshot.m___delete__", + "pbackground_lssnapshot.m_delete_me", + "pbackground_lssnapshot.m_increase_peak_usage", + "pbackground_lssnapshot.m_loaded", + "pbackground_lssnapshot.m_load_keys", + "pbackground_lssnapshot.m_load_value_and_more_items", + "pbackground_lssnapshot.m_mark_dirty", + "pbackground_lssnapshot.m_sync_checkpoint", + "pbackground_lssnapshot.m_sync_checkpoint_and_notify", + "pbackground_lssnapshot.m_sync_finish", + "pbackground_lssnapshot.r___delete__", + "pbackground_lssnapshot.r_increase_peak_usage", + "pbackground_lssnapshot.r_load_keys", + "pbackground_lssnapshot.r_load_value_and_more_items", + "pbackground_lssnapshot.r_sync_checkpoint", + "pbackground_lssnapshot.r_sync_checkpoint_and_notify", + "pbackground_lssnapshot.r_sync_finish", + "pbackground.m_create_file_system_manager_p", + "pbackground.m_ensure_rddprocess_and_create", + "pbackground.m_ensure_utility_process_and_c", + "pbackground.m_flush_pending_file_deletions", + "pbackground.m_get_session_storage_manager_", + "pbackground.m_load_session_storage_manager", + "pbackground.m_lsclear_private_browsing", + "pbackground.m_message_port_force_close", + "pbackground.m_pbackground_data_bridge_cons", + "pbackground.m_pbackground_idbfactory_const", + "pbackground.m_pbackground_indexed_dbutils_", + "pbackground.m_pbackground_local_storage_ca", + "pbackground.m_pbackground_lsdatabase_const", + "pbackground.m_pbackground_lsobserver_const", + "pbackground.m_pbackground_lsrequest_constr", + "pbackground.m_pbackground_lssimple_request", + "pbackground.m_pbackground_sdbconnection_co", + "pbackground.m_pbackground_session_storage_", + "pbackground.m_pbackground_storage_construc", + "pbackground.m_pbackground_test_constructor", + "pbackground.m_pbroadcast_channel_construct", + "pbackground.m_pcache_constructor", + "pbackground.m_pcache_storage_constructor", + "pbackground.m_pcache_stream_control_constr", + "pbackground.m_pcameras_constructor", + "pbackground.m_pclient_manager_constructor", + "pbackground.m_pendpoint_for_report_constru", + "pbackground.m_pfile_creator_constructor", + "pbackground.m_pfile_system_request_constru", + "pbackground.m_pgamepad_event_channel_const", + "pbackground.m_pgamepad_test_channel_constr", + "pbackground.m_phttp_background_channel_con", + "pbackground.m_pidle_scheduler_constructor", + "pbackground.m_pipcclient_certs_constructor", + "pbackground.m_plock_manager_constructor", + "pbackground.m_pmedia_transport_constructor", + "pbackground.m_pmessage_port_constructor", + "pbackground.m_pmidimanager_constructor", + "pbackground.m_pmidiport_constructor", + "pbackground.m_pquota_constructor", + "pbackground.m_premote_worker_constructor", + "pbackground.m_premote_worker_controller_co", + "pbackground.m_premote_worker_service_const", + "pbackground.m_propagate_background_session", + "pbackground.m_pselect_tlsclient_auth_cert_", + "pbackground.m_pservice_worker_constructor", + "pbackground.m_pservice_worker_container_co", + "pbackground.m_pservice_worker_manager_cons", + "pbackground.m_pservice_worker_registration", + "pbackground.m_pshared_worker_constructor", + "pbackground.m_ptemporary_ipcblob_construct", + "pbackground.m_pudpsocket_constructor", + "pbackground.m_pverify_sslserver_cert_const", + "pbackground.m_pvsync_constructor", + "pbackground.m_pweb_authn_transaction_const", + "pbackground.m_pweb_socket_connection_const", + "pbackground.m_remove_background_session_st", + "pbackground.m_remove_endpoint", + "pbackground.m_shutdown_background_session_", + "pbackground.m_shutdown_quota_manager", + "pbackground.m_shutdown_service_worker_regi", + "pbackground.m_storage_activity", + "pbackground_mutable_file.m___delete__", + "pbackground_mutable_file.m_delete_me", + "pbackground_mutable_file.m_get_file_id", + "pbackground_mutable_file.m_pbackground_file_handle_cons", + "pbackground_mutable_file.r___delete__", + "pbackground_mutable_file.r_get_file_id", + "pbackground_mutable_file.r_pbackground_file_handle_cons", + "pbackground.r_create_file_system_manager_p", + "pbackground.r_ensure_rddprocess_and_create", + "pbackground.r_ensure_utility_process_and_c", + "pbackground.r_get_session_storage_manager_", + "pbackground.r_pbackground_data_bridge_cons", + "pbackground.r_pbackground_idbfactory_const", + "pbackground.r_pbackground_indexed_dbutils_", + "pbackground.r_pbackground_local_storage_ca", + "pbackground.r_pbackground_lsdatabase_const", + "pbackground.r_pbackground_lsobserver_const", + "pbackground.r_pbackground_lsrequest_constr", + "pbackground.r_pbackground_lssimple_request", + "pbackground.r_pbackground_sdbconnection_co", + "pbackground.r_pbackground_session_storage_", + "pbackground.r_pbackground_storage_construc", + "pbackground.r_pbackground_test_constructor", + "pbackground.r_pbroadcast_channel_construct", + "pbackground.r_pcache_constructor", + "pbackground.r_pcache_storage_constructor", + "pbackground.r_pcache_stream_control_constr", + "pbackground.r_pcameras_constructor", + "pbackground.r_pclient_manager_constructor", + "pbackground.r_pendpoint_for_report_constru", + "pbackground.r_pfile_creator_constructor", + "pbackground.r_pfile_system_request_constru", + "pbackground.r_pgamepad_event_channel_const", + "pbackground.r_pgamepad_test_channel_constr", + "pbackground.r_phttp_background_channel_con", + "pbackground.r_pidle_scheduler_constructor", + "pbackground.r_pipcclient_certs_constructor", + "pbackground.r_plock_manager_constructor", + "pbackground.r_pmedia_transport_constructor", + "pbackground.r_pmessage_port_constructor", + "pbackground.r_pmidimanager_constructor", + "pbackground.r_pmidiport_constructor", + "pbackground.r_pquota_constructor", + "pbackground.r_premote_worker_constructor", + "pbackground.r_premote_worker_controller_co", + "pbackground.r_premote_worker_service_const", + "pbackground.r_pselect_tlsclient_auth_cert_", + "pbackground.r_pservice_worker_constructor", + "pbackground.r_pservice_worker_container_co", + "pbackground.r_pservice_worker_manager_cons", + "pbackground.r_pservice_worker_registration", + "pbackground.r_pshared_worker_constructor", + "pbackground.r_ptemporary_ipcblob_construct", + "pbackground.r_pudpsocket_constructor", + "pbackground.r_pverify_sslserver_cert_const", + "pbackground.r_pvsync_constructor", + "pbackground.r_pweb_authn_transaction_const", + "pbackground.r_pweb_socket_connection_const", + "pbackground_sdbconnection.m_allow_to_close", + "pbackground_sdbconnection.m_closed", + "pbackground_sdbconnection.m___delete__", + "pbackground_sdbconnection.m_delete_me", + "pbackground_sdbconnection.m_pbackground_sdbrequest_const", + "pbackground_sdbconnection.r___delete__", + "pbackground_sdbconnection.r_pbackground_sdbrequest_const", + "pbackground_sdbrequest.m___delete__", + "pbackground_sdbrequest.r___delete__", + "pbackground_session_storage_ca.m_checkpoint", + "pbackground_session_storage_ca.m___delete__", + "pbackground_session_storage_ca.m_delete_me", + "pbackground_session_storage_ca.m_load", + "pbackground_session_storage_ca.r___delete__", + "pbackground_session_storage_ca.r_load", + "pbackground_session_storage_ma.m_clear_storages", + "pbackground_session_storage_ma.m_clear_storages_for_origin", + "pbackground_session_storage_ma.m___delete__", + "pbackground_session_storage_ma.m_delete_me", + "pbackground_session_storage_ma.m_pbackground_session_storage_", + "pbackground_session_storage_ma.r___delete__", + "pbackground_session_storage_ma.r_pbackground_session_storage_", + "pbackground_session_storage_se.m_clear_storages_for_origin", + "pbackground_session_storage_se.m___delete__", + "pbackground_session_storage_se.r___delete__", + "pbackground_starter.m_init_background", + "pbackground_storage.m_async_add_item", + "pbackground_storage.m_async_clear", + "pbackground_storage.m_async_flush", + "pbackground_storage.m_async_get_usage", + "pbackground_storage.m_async_preload", + "pbackground_storage.m_async_remove_item", + "pbackground_storage.m_async_update_item", + "pbackground_storage.m_clear_all", + "pbackground_storage.m_clear_matching_origin", + "pbackground_storage.m_clear_matching_origin_attrib", + "pbackground_storage.m___delete__", + "pbackground_storage.m_delete_me", + "pbackground_storage.m_error", + "pbackground_storage.m_load_done", + "pbackground_storage.m_load_item", + "pbackground_storage.m_load_usage", + "pbackground_storage.m_observe", + "pbackground_storage.m_origins_having_data", + "pbackground_storage.m_preload", + "pbackground_storage.m_startup", + "pbackground_storage.r___delete__", + "pbackground_storage.r_preload", + "pbackground_test.m___delete__", + "pbackground_test.r___delete__", + "pbenchmark_storage.m_check_version", + "pbenchmark_storage.m___delete__", + "pbenchmark_storage.m_get", + "pbenchmark_storage.m_put", + "pbenchmark_storage.r___delete__", + "pbenchmark_storage.r_get", + "pbroadcast_channel.m_close", + "pbroadcast_channel.m___delete__", + "pbroadcast_channel.m_notify", + "pbroadcast_channel.m_post_message", + "pbroadcast_channel.m_ref_message_delivered", + "pbroadcast_channel.r___delete__", + "pbrowser_bridge.m_activate", + "pbrowser_bridge.m_begin_destroy", + "pbrowser_bridge.m_deactivate", + "pbrowser_bridge.m___delete__", + "pbrowser_bridge.m_dispatch_synthesized_mouse_e", + "pbrowser_bridge.m_image_load_complete", + "pbrowser_bridge.m_intrinsic_size_or_ratio_chan", + "pbrowser_bridge.m_load_url", + "pbrowser_bridge.m_maybe_fire_embedder_load_eve", + "pbrowser_bridge.m_move_focus", + "pbrowser_bridge.m_navigate_by_key", + "pbrowser_bridge.m_render_layers", + "pbrowser_bridge.m_request_focus", + "pbrowser_bridge.m_resume_load", + "pbrowser_bridge.m_scrollbar_preference_changed", + "pbrowser_bridge.m_scroll_rect_into_view", + "pbrowser_bridge.m_set_embedded_doc_accessible_", + "pbrowser_bridge.m_set_embedder_accessible", + "pbrowser_bridge.m_set_is_under_hidden_embedder", + "pbrowser_bridge.m_show", + "pbrowser_bridge.m_sub_frame_crashed", + "pbrowser_bridge.m_update_dimensions", + "pbrowser_bridge.m_update_effects", + "pbrowser_bridge.m_update_remote_print_settings", + "pbrowser_bridge.m_update_remote_style", + "pbrowser_bridge.m_will_change_process", + "pbrowser_bridge.r___delete__", + "pbrowser.m_access_key_not_handled", + "pbrowser.m_activate", + "pbrowser.m_allow_scripts_to_close", + "pbrowser.m_async_message", + "pbrowser.m_child_to_parent_matrix", + "pbrowser.m_clear_native_touch_sequence", + "pbrowser.m_clone_document_tree_into_sel", + "pbrowser.m_composition_event", + "pbrowser.m_compositor_options_changed", + "pbrowser.m_create_about_blank_content_v", + "pbrowser.m_deactivate", + "pbrowser.m___delete__", + "pbrowser.m_destroy", + "pbrowser.m_did_unsuppress_painting", + "pbrowser.m_did_unsuppress_painting_norm", + "pbrowser.m_dispatch_focus_to_top_level_", + "pbrowser.m_dispatch_keyboard_event", + "pbrowser.m_dispatch_mouse_event", + "pbrowser.m_dispatch_touch_event", + "pbrowser.m_dispatch_wheel_event", + "pbrowser.m_drop_links", + "pbrowser.m_dynamic_toolbar_max_height_c", + "pbrowser.m_dynamic_toolbar_offset_chang", + "pbrowser.m_enable_disable_commands", + "pbrowser.m_ensure_layers_connected", + "pbrowser.m_exit_print_preview", + "pbrowser.m_get_input_context", + "pbrowser.m_get_system_font", + "pbrowser.m_handle_access_key", + "pbrowser.m_handle_tap", + "pbrowser.m_hide_tooltip", + "pbrowser.m_image_load_complete", + "pbrowser.m_init_rendering", + "pbrowser.m_insert_text", + "pbrowser.m_intrinsic_size_or_ratio_chan", + "pbrowser.m_invoke_drag_session", + "pbrowser.m_is_window_supporting_protect", + "pbrowser.m_is_window_supporting_web_vr", + "pbrowser.m_load_remote_script", + "pbrowser.m_load_url", + "pbrowser.m_lock_native_pointer", + "pbrowser.m_look_up_dictionary", + "pbrowser.m_maybe_fire_embedder_load_eve", + "pbrowser.m_mouse_wheel_event", + "pbrowser.m_move_focus", + "pbrowser.m_native_synthesis_response", + "pbrowser.m_navigate_by_key", + "pbrowser.m_navigation_finished", + "pbrowser.m_new_window_global", + "pbrowser.m_normal_priority_composition_", + "pbrowser.m_normal_priority_handle_tap", + "pbrowser.m_normal_priority_insert_text", + "pbrowser.m_normal_priority_mouse_wheel_", + "pbrowser.m_normal_priority_real_key_eve", + "pbrowser.m_normal_priority_real_mouse_b", + "pbrowser.m_normal_priority_real_mouse_e", + "pbrowser.m_normal_priority_real_mouse_m", + "pbrowser.m_normal_priority_real_touch_e", + "pbrowser.m_normal_priority_real_touch_m", + "pbrowser.m_normal_priority_selection_ev", + "pbrowser.m_normal_priority_synth_mouse_", + "pbrowser.m_notify_content_blocking_even", + "pbrowser.m_notify_imecomposition_update", + "pbrowser.m_notify_imefocus", + "pbrowser.m_notify_imemouse_button_event", + "pbrowser.m_notify_imeposition_change", + "pbrowser.m_notify_imeselection", + "pbrowser.m_notify_imetext_change", + "pbrowser.m_on_event_needing_ack_handled", + "pbrowser.m_on_location_change", + "pbrowser.m_on_progress_change", + "pbrowser.m_on_state_change", + "pbrowser.m_on_status_change", + "pbrowser.m_paint_while_interrupting_jsn", + "pbrowser.m_paste_transferable", + "pbrowser.m_pcolor_picker_constructor", + "pbrowser.m_pdoc_accessible_constructor", + "pbrowser.m_pfile_picker_constructor", + "pbrowser.m_ppayment_request_constructor", + "pbrowser.m_preserve_layers", + "pbrowser.m_print", + "pbrowser.m_print_preview", + "pbrowser.m_psession_store_constructor", + "pbrowser.m_pvsync_constructor", + "pbrowser.m_query_visited_state", + "pbrowser.m_real_drag_event", + "pbrowser.m_real_key_event", + "pbrowser.m_real_mouse_button_event", + "pbrowser.m_real_mouse_enter_exit_widget", + "pbrowser.m_real_mouse_move_event", + "pbrowser.m_real_mouse_move_event_for_te", + "pbrowser.m_real_touch_event", + "pbrowser.m_real_touch_move_event", + "pbrowser.m_real_touch_move_event2", + "pbrowser.m_register_protocol_handler", + "pbrowser.m_release_all_pointer_capture", + "pbrowser.m_release_pointer_capture", + "pbrowser.m_release_pointer_lock", + "pbrowser.m_remote_is_ready_to_handle_in", + "pbrowser.m_render_layers", + "pbrowser.m_reply_key_event", + "pbrowser.m_request_focus", + "pbrowser.m_request_imeto_commit_composi", + "pbrowser.m_request_native_key_bindings", + "pbrowser.m_request_pointer_capture", + "pbrowser.m_request_pointer_lock", + "pbrowser.m_respond_start_swipe_event", + "pbrowser.m_resume_load", + "pbrowser.m_safe_area_insets_changed", + "pbrowser.m_scrollbar_preference_changed", + "pbrowser.m_scroll_rect_into_view", + "pbrowser.m_selection_event", + "pbrowser.m_set_allow_deprecated_tls", + "pbrowser.m_set_cursor", + "pbrowser.m_set_dimensions", + "pbrowser.m_set_input_context", + "pbrowser.m_set_is_under_hidden_embedder", + "pbrowser.m_set_keyboard_indicators", + "pbrowser.m_set_link_status", + "pbrowser.m_set_system_font", + "pbrowser.m_show", + "pbrowser.m_show_canvas_permission_promp", + "pbrowser.m_show_dynamic_toolbar", + "pbrowser.m_show_tooltip", + "pbrowser.m_size_mode_changed", + "pbrowser.m_size_shell_to", + "pbrowser.m_stop_imestate_management", + "pbrowser.m_suppress_displayport", + "pbrowser.m_swapped_with_other_remote_lo", + "pbrowser.m_sync_message", + "pbrowser.m_synthesize_native_key_event", + "pbrowser.m_synthesize_native_mouse_even", + "pbrowser.m_synthesize_native_mouse_move", + "pbrowser.m_synthesize_native_mouse_scro", + "pbrowser.m_synthesize_native_pen_input", + "pbrowser.m_synthesize_native_touch_pad_", + "pbrowser.m_synthesize_native_touchpad_d", + "pbrowser.m_synthesize_native_touchpad_p", + "pbrowser.m_synthesize_native_touch_poin", + "pbrowser.m_synthesize_native_touch_tap", + "pbrowser.m_synth_mouse_move_event", + "pbrowser.m_uiresolution_changed", + "pbrowser.m_unlock_native_pointer", + "pbrowser.m_update_content_cache", + "pbrowser.m_update_dimensions", + "pbrowser.m_update_effects", + "pbrowser.m_update_native_window_handle", + "pbrowser.m_update_remote_print_settings", + "pbrowser.m_update_remote_style", + "pbrowser.m_update_shistory", + "pbrowser.m_visit_uri", + "pbrowser.m_wheel_zoom_change", + "pbrowser.m_will_change_process", + "pbrowser.r_clone_document_tree_into_sel", + "pbrowser.r___delete__", + "pbrowser.r_dispatch_focus_to_top_level_", + "pbrowser.r_dispatch_keyboard_event", + "pbrowser.r_dispatch_mouse_event", + "pbrowser.r_dispatch_touch_event", + "pbrowser.r_dispatch_wheel_event", + "pbrowser.r_ensure_layers_connected", + "pbrowser.r_get_input_context", + "pbrowser.r_get_system_font", + "pbrowser.r_is_window_supporting_protect", + "pbrowser.r_is_window_supporting_web_vr", + "pbrowser.r_notify_imefocus", + "pbrowser.r_notify_imemouse_button_event", + "pbrowser.r_pcolor_picker_constructor", + "pbrowser.r_pdoc_accessible_constructor", + "pbrowser.r_pfile_picker_constructor", + "pbrowser.r_ppayment_request_constructor", + "pbrowser.r_print_preview", + "pbrowser.r_psession_store_constructor", + "pbrowser.r_pvsync_constructor", + "pbrowser.r_request_imeto_commit_composi", + "pbrowser.r_request_native_key_bindings", + "pbrowser.r_request_pointer_capture", + "pbrowser.r_request_pointer_lock", + "pbrowser.r_set_system_font", + "pbrowser.r_sync_message", + "pcache.m___delete__", + "pcache.m_pcache_op_constructor", + "pcache.m_teardown", + "pcache_op.m___delete__", + "pcache_op.r___delete__", + "pcache.r___delete__", + "pcache.r_pcache_op_constructor", + "pcache_storage.m___delete__", + "pcache_storage.m_pcache_op_constructor", + "pcache_storage.m_teardown", + "pcache_storage.r___delete__", + "pcache_storage.r_pcache_op_constructor", + "pcache_stream_control.m_close_all", + "pcache_stream_control.m___delete__", + "pcache_stream_control.m_note_closed", + "pcache_stream_control.m_open_stream", + "pcache_stream_control.r___delete__", + "pcache_stream_control.r_open_stream", + "pcameras.m_allocate_capture", + "pcameras.m___delete__", + "pcameras.m_deliver_frame", + "pcameras.m_device_change", + "pcameras.m_ensure_initialized", + "pcameras.m_focus_on_selected_source", + "pcameras.m_get_capture_capability", + "pcameras.m_get_capture_device", + "pcameras.m_number_of_capabilities", + "pcameras.m_number_of_capture_devices", + "pcameras.m_release_capture", + "pcameras.m_release_frame", + "pcameras.m_reply_allocate_capture", + "pcameras.m_reply_failure", + "pcameras.m_reply_get_capture_capability", + "pcameras.m_reply_get_capture_device", + "pcameras.m_reply_number_of_capabilities", + "pcameras.m_reply_number_of_capture_devi", + "pcameras.m_reply_success", + "pcameras.m_start_capture", + "pcameras.m_stop_capture", + "pcameras.r___delete__", + "pcanvas_manager.m_get_snapshot", + "pcanvas_manager.m_initialize", + "pcanvas_manager.m_pweb_glconstructor", + "pcanvas_manager.m_pweb_gpuconstructor", + "pcanvas_manager.r_get_snapshot", + "pcanvas_manager.r_pweb_glconstructor", + "pcanvas_manager.r_pweb_gpuconstructor", + "pcanvas.m_deactivate", + "pcanvas.m_init_translator", + "pcanvas.m_notify_device_changed", + "pcanvas.m_resume_translation", + "pchromium_cdm.m_close_session", + "pchromium_cdm.m_complete_query_output_protec", + "pchromium_cdm.m_create_session_and_generate_", + "pchromium_cdm.m_decoded_data", + "pchromium_cdm.m_decoded_shmem", + "pchromium_cdm.m_decode_failed", + "pchromium_cdm.m_decrypt", + "pchromium_cdm.m_decrypt_and_decode_frame", + "pchromium_cdm.m_decrypted", + "pchromium_cdm.m_decrypt_failed", + "pchromium_cdm.m_deinitialize_video_decoder", + "pchromium_cdm.m___delete__", + "pchromium_cdm.m_destroy", + "pchromium_cdm.m_drain", + "pchromium_cdm.m_drain_complete", + "pchromium_cdm.m_get_status_for_policy", + "pchromium_cdm.m_give_buffer", + "pchromium_cdm.m_increase_shmem_pool_size", + "pchromium_cdm.m_init", + "pchromium_cdm.m_initialize_video_decoder", + "pchromium_cdm.m_load_session", + "pchromium_cdm.m_on_decoder_init_done", + "pchromium_cdm.m_on_expiration_change", + "pchromium_cdm.m_on_query_output_protection_s", + "pchromium_cdm.m_on_reject_promise", + "pchromium_cdm.m_on_resolve_new_session_promi", + "pchromium_cdm.m_on_resolve_promise", + "pchromium_cdm.m_on_resolve_promise_with_key_", + "pchromium_cdm.m_on_session_closed", + "pchromium_cdm.m_on_session_keys_change", + "pchromium_cdm.m_on_session_message", + "pchromium_cdm.m_purge_shmems", + "pchromium_cdm.m_remove_session", + "pchromium_cdm.m_reset_video_decoder", + "pchromium_cdm.m_reset_video_decoder_complete", + "pchromium_cdm.m_resolve_load_session_promise", + "pchromium_cdm.m_set_server_certificate", + "pchromium_cdm.m_shutdown", + "pchromium_cdm.m_update_session", + "pchromium_cdm.r___delete__", + "pchromium_cdm.r_init", + "pclassifier_dummy_channel.m___delete__", + "pclassifier_dummy_channel.r___delete__", + "pclient_handle.m___delete__", + "pclient_handle.m_execution_ready", + "pclient_handle.m_pclient_handle_op_constructo", + "pclient_handle.m_teardown", + "pclient_handle_op.m___delete__", + "pclient_handle_op.r___delete__", + "pclient_handle.r___delete__", + "pclient_handle.r_pclient_handle_op_constructo", + "pclient_manager.m___delete__", + "pclient_manager.m_expect_future_client_source", + "pclient_manager.m_forget_future_client_source", + "pclient_manager.m_pclient_handle_constructor", + "pclient_manager.m_pclient_manager_op_construct", + "pclient_manager.m_pclient_navigate_op_construc", + "pclient_manager.m_pclient_source_constructor", + "pclient_manager.m_teardown", + "pclient_manager_op.m___delete__", + "pclient_manager_op.r___delete__", + "pclient_manager.r___delete__", + "pclient_manager.r_pclient_handle_constructor", + "pclient_manager.r_pclient_manager_op_construct", + "pclient_manager.r_pclient_navigate_op_construc", + "pclient_manager.r_pclient_source_constructor", + "pclient_navigate_op.m___delete__", + "pclient_navigate_op.r___delete__", + "pclient_source.m___delete__", + "pclient_source.m_evict_from_bfcache", + "pclient_source.m_execution_ready", + "pclient_source.m_freeze", + "pclient_source.m_inherit_controller", + "pclient_source.m_note_domcontent_loaded", + "pclient_source.m_pclient_source_op_constructo", + "pclient_source.m_teardown", + "pclient_source.m_thaw", + "pclient_source.m_worker_sync_ping", + "pclient_source_op.m___delete__", + "pclient_source_op.r___delete__", + "pclient_source.r___delete__", + "pclient_source.r_pclient_source_op_constructo", + "pclient_source.r_worker_sync_ping", + "pcolor_picker.m___delete__", + "pcolor_picker.m_open", + "pcolor_picker.m_update", + "pcolor_picker.r___delete__", + "pcompositor_bridge.m_adopt_child", + "pcompositor_bridge.m_begin_recording", + "pcompositor_bridge.m_check_content_only_tdr", + "pcompositor_bridge.m_compositor_options_changed", + "pcompositor_bridge.m___delete__", + "pcompositor_bridge.m_did_composite", + "pcompositor_bridge.m_end_recording_to_disk", + "pcompositor_bridge.m_end_recording_to_memory", + "pcompositor_bridge.m_flush_rendering", + "pcompositor_bridge.m_flush_rendering_async", + "pcompositor_bridge.m_force_present", + "pcompositor_bridge.m_initialize", + "pcompositor_bridge.m_init_pcanvas_parent", + "pcompositor_bridge.m_map_and_notify_child_created", + "pcompositor_bridge.m_notify_child_created", + "pcompositor_bridge.m_notify_child_recreated", + "pcompositor_bridge.m_notify_frame_stats", + "pcompositor_bridge.m_notify_janked_animations", + "pcompositor_bridge.m_notify_memory_pressure", + "pcompositor_bridge.m_observe_layers_update", + "pcompositor_bridge.m_papzconstructor", + "pcompositor_bridge.m_papzctree_manager_constructo", + "pcompositor_bridge.m_parent_async_messages", + "pcompositor_bridge.m_pause", + "pcompositor_bridge.m_pcompositor_widget_construct", + "pcompositor_bridge.m_ptexture_constructor", + "pcompositor_bridge.m_pweb_render_bridge_construct", + "pcompositor_bridge.m_release_pcanvas_parent", + "pcompositor_bridge.m_request_fxr_output", + "pcompositor_bridge.m_resume", + "pcompositor_bridge.m_resume_async", + "pcompositor_bridge.m_start_frame_time_recording", + "pcompositor_bridge.m_stop_frame_time_recording", + "pcompositor_bridge.m_sync_with_compositor", + "pcompositor_bridge.m_wait_on_transaction_processe", + "pcompositor_bridge.m_will_close", + "pcompositor_bridge.r_begin_recording", + "pcompositor_bridge.r_check_content_only_tdr", + "pcompositor_bridge.r___delete__", + "pcompositor_bridge.r_end_recording_to_disk", + "pcompositor_bridge.r_end_recording_to_memory", + "pcompositor_bridge.r_flush_rendering", + "pcompositor_bridge.r_initialize", + "pcompositor_bridge.r_map_and_notify_child_created", + "pcompositor_bridge.r_notify_child_created", + "pcompositor_bridge.r_notify_child_recreated", + "pcompositor_bridge.r_papzconstructor", + "pcompositor_bridge.r_papzctree_manager_constructo", + "pcompositor_bridge.r_pause", + "pcompositor_bridge.r_pcompositor_widget_construct", + "pcompositor_bridge.r_ptexture_constructor", + "pcompositor_bridge.r_pweb_render_bridge_construct", + "pcompositor_bridge.r_resume", + "pcompositor_bridge.r_start_frame_time_recording", + "pcompositor_bridge.r_stop_frame_time_recording", + "pcompositor_bridge.r_sync_with_compositor", + "pcompositor_bridge.r_wait_on_transaction_processe", + "pcompositor_bridge.r_will_close", + "pcompositor_manager.m_add_shared_surface", + "pcompositor_manager.m_init_canvas_manager", + "pcompositor_manager.m_notify_memory_pressure", + "pcompositor_manager.m_notify_web_render_error", + "pcompositor_manager.m_pcompositor_bridge_construct", + "pcompositor_manager.m_remove_shared_surface", + "pcompositor_manager.m_report_memory", + "pcompositor_manager.m_report_shared_surfaces_memor", + "pcompositor_manager.r_pcompositor_bridge_construct", + "pcompositor_manager.r_report_memory", + "pcompositor_manager.r_report_shared_surfaces_memor", + "pcompositor_widget.m_clear_transparent_window", + "pcompositor_widget.m___delete__", + "pcompositor_widget.m_disable_rendering", + "pcompositor_widget.m_enable_rendering", + "pcompositor_widget.m_enter_present_lock", + "pcompositor_widget.m_initialize", + "pcompositor_widget.m_leave_present_lock", + "pcompositor_widget.m_notify_client_size_changed", + "pcompositor_widget.m_notify_visibility_updated", + "pcompositor_widget.m_observe_vsync", + "pcompositor_widget.m_unobserve_vsync", + "pcompositor_widget.m_update_compositor_wnd", + "pcompositor_widget.m_update_transparency", + "pcompositor_widget.r_clear_transparent_window", + "pcompositor_widget.r___delete__", + "pcompositor_widget.r_enter_present_lock", + "pcompositor_widget.r_initialize", + "pcompositor_widget.r_leave_present_lock", + "pcompositor_widget.r_update_compositor_wnd", + "pcontent.m_a11y_handler_control", + "pcontent.m_abort_orientation_pending_pr", + "pcontent.m_abort_other_orientation_pend", + "pcontent.m_accumulate_child_histograms", + "pcontent.m_accumulate_child_keyed_histo", + "pcontent.m_accumulate_mixed_content_hst", + "pcontent.m_activate_a11y", + "pcontent.m_add_cert_exception", + "pcontent.m_add_dynamic_scalars", + "pcontent.m_add_geolocation_listener", + "pcontent.m_add_idle_observer", + "pcontent.m_add_memory_report", + "pcontent.m_add_or_remove_page_awake_req", + "pcontent.m_add_performance_metrics", + "pcontent.m_add_permission", + "pcontent.m_add_security_state", + "pcontent.m_adjust_window_focus", + "pcontent.m_app_info", + "pcontent.m_application_background", + "pcontent.m_application_foreground", + "pcontent.m_async_message", + "pcontent.m_automatic_storage_access_per", + "pcontent.m_back_up_xresources", + "pcontent.m_beep", + "pcontent.m_begin_driver_crash_guard", + "pcontent.m_bhrthread_hang", + "pcontent.m_bidi_keyboard_notify", + "pcontent.m_blob_urldata_request", + "pcontent.m_blob_urlregistration", + "pcontent.m_blob_urlunregistration", + "pcontent.m_blur_to_child", + "pcontent.m_blur_to_parent", + "pcontent.m_clear_focus", + "pcontent.m_clear_image_cache", + "pcontent.m_clear_image_cache_from_base_", + "pcontent.m_clear_image_cache_from_princ", + "pcontent.m_clear_style_sheet_cache", + "pcontent.m_clipboard_has_type", + "pcontent.m_clipboard_has_types_async", + "pcontent.m_clone_document_tree_into", + "pcontent.m_close_alert", + "pcontent.m_collect_perf_stats_json", + "pcontent.m_collect_scrolling_metrics", + "pcontent.m_commit_browsing_context_tran", + "pcontent.m_commit_window_context_transa", + "pcontent.m_complete_allow_access_for", + "pcontent.m_console_message", + "pcontent.m_construct_browser", + "pcontent.m_construct_popup_browser", + "pcontent.m_copy_favicon", + "pcontent.m_create_audio_ipcconnection", + "pcontent.m_create_browsing_context", + "pcontent.m_create_gmpservice", + "pcontent.m_create_window", + "pcontent.m_create_window_context", + "pcontent.m_create_window_in_different_p", + "pcontent.m_cross_process_redirect", + "pcontent.m_cycle_collect", + "pcontent.m_decoder_supported_mime_types", + "pcontent.m_delete_get_files_request", + "pcontent.m_destroy_browsing_context_gro", + "pcontent.m_device_reset", + "pcontent.m_disable_notifications", + "pcontent.m_discard_browsing_context", + "pcontent.m_discard_window_context", + "pcontent.m_dispatch_before_unload_to_su", + "pcontent.m_dispatch_location_change_eve", + "pcontent.m_display_load_error", + "pcontent.m_domain_set_changed", + "pcontent.m_empty_clipboard", + "pcontent.m_end_drag_session", + "pcontent.m_end_driver_crash_guard", + "pcontent.m_ext_protocol_channel_connect", + "pcontent.m_finalize_focus_outer", + "pcontent.m_find_image_text", + "pcontent.m_finish_shutdown", + "pcontent.m_first_idle", + "pcontent.m_flush_code_coverage_counters", + "pcontent.m_flush_fogdata", + "pcontent.m_flush_input_event_queue", + "pcontent.m_flush_memory", + "pcontent.m_fogdata", + "pcontent.m_font_list_changed", + "pcontent.m_font_list_shm_block_added", + "pcontent.m_force_global_reflow", + "pcontent.m_garbage_collect", + "pcontent.m_geolocation_error", + "pcontent.m_geolocation_update", + "pcontent.m_get_a11y_content_id", + "pcontent.m_get_clipboard", + "pcontent.m_get_clipboard_async", + "pcontent.m_get_external_clipboard_forma", + "pcontent.m_get_files_request", + "pcontent.m_get_files_response", + "pcontent.m_get_font_list_shm_block", + "pcontent.m_get_gfx_vars", + "pcontent.m_get_graphics_device_init_dat", + "pcontent.m_get_hyph_dict", + "pcontent.m_get_icon_for_extension", + "pcontent.m_get_layout_history_state", + "pcontent.m_get_loading_session_history_", + "pcontent.m_get_modules_trust", + "pcontent.m_get_output_color_profile_dat", + "pcontent.m_get_system_icon", + "pcontent.m_get_untrusted_modules_data", + "pcontent.m_gmps_changed", + "pcontent.m_go_back", + "pcontent.m_go_forward", + "pcontent.m_go_to_index", + "pcontent.m_graphics_error", + "pcontent.m_history_commit", + "pcontent.m_history_commit_index_and_len", + "pcontent.m_history_go", + "pcontent.m_history_reload", + "pcontent.m_init_background", + "pcontent.m_init_blob_urls", + "pcontent.m_init_crash_reporter", + "pcontent.m_init_gmpservice", + "pcontent.m_initialize_family", + "pcontent.m_init_jsactor_infos", + "pcontent.m_init_next_gen_local_storage_", + "pcontent.m_init_other_family_names", + "pcontent.m_init_process_hang_monitor", + "pcontent.m_init_profiler", + "pcontent.m_init_rendering", + "pcontent.m_init_sandbox_testing", + "pcontent.m_init_stream_filter", + "pcontent.m_insert_new_focus_action_id", + "pcontent.m_internal_load", + "pcontent.m_invoke_drag_session", + "pcontent.m_is_secure_uri", + "pcontent.m_last_private_doc_shell_destr", + "pcontent.m_load_and_register_sheet", + "pcontent.m_load_process_script", + "pcontent.m_load_uri", + "pcontent.m_load_uriexternal", + "pcontent.m_maybe_exit_fullscreen", + "pcontent.m_minimize_memory_usage", + "pcontent.m_network_link_type_change", + "pcontent.m_notification_event", + "pcontent.m_notify_alerts_observer", + "pcontent.m_notify_benchmark_result", + "pcontent.m_notify_empty_httpcache", + "pcontent.m_notify_idle_observer", + "pcontent.m_notify_media_audible_changed", + "pcontent.m_notify_media_full_screen_sta", + "pcontent.m_notify_media_playback_change", + "pcontent.m_notify_media_session_playbac", + "pcontent.m_notify_media_session_support", + "pcontent.m_notify_media_session_updated", + "pcontent.m_notify_on_history_reload", + "pcontent.m_notify_picture_in_picture_mo", + "pcontent.m_notify_position_state_change", + "pcontent.m_notify_process_priority_chan", + "pcontent.m_notify_push_observers", + "pcontent.m_notify_push_observers_with_d", + "pcontent.m_notify_push_subscription_cha", + "pcontent.m_notify_push_subscription_mod", + "pcontent.m_notify_shutdown_success", + "pcontent.m_notify_update_media_metadata", + "pcontent.m_notify_visited", + "pcontent.m_on_allow_access_for", + "pcontent.m_on_content_blocking_decision", + "pcontent.m_open_notification_settings", + "pcontent.m_pbenchmark_storage_construct", + "pcontent.m_pcontent_permission_request_", + "pcontent.m_pcycle_collect_with_logs_con", + "pcontent.m_pextensions_constructor", + "pcontent.m_pexternal_helper_app_constru", + "pcontent.m_phal_constructor", + "pcontent.m_phandler_service_constructor", + "pcontent.m_pheap_snapshot_temp_file_hel", + "pcontent.m_play_event_sound", + "pcontent.m_play_sound", + "pcontent.m_plogin_reputation_constructo", + "pcontent.m_pmedia_constructor", + "pcontent.m_pnecko_constructor", + "pcontent.m_preference_update", + "pcontent.m_premote_print_job_constructo", + "pcontent.m_premote_spellcheck_engine_co", + "pcontent.m_provide_anonymous_temporary_", + "pcontent.m_pscript_cache_constructor", + "pcontent.m_psession_storage_observer_co", + "pcontent.m_pspeech_synthesis_constructo", + "pcontent.m_ptest_shell_constructor", + "pcontent.m_purlclassifier_constructor", + "pcontent.m_purlclassifier_local_constru", + "pcontent.m_push", + "pcontent.m_push_error", + "pcontent.m_push_subscription_change", + "pcontent.m_push_with_data", + "pcontent.m_pweb_browser_persist_documen", + "pcontent.m_pwebrtc_global_constructor", + "pcontent.m_raise_window", + "pcontent.m_raw_message", + "pcontent.m_rebuild_font_list", + "pcontent.m_record_child_events", + "pcontent.m_record_discarded_data", + "pcontent.m_recording_device_events", + "pcontent.m_refresh_screens", + "pcontent.m_register_browsing_context_gr", + "pcontent.m_register_chrome", + "pcontent.m_register_chrome_item", + "pcontent.m_register_string_bundles", + "pcontent.m_reinit_rendering", + "pcontent.m_reinit_rendering_for_device_", + "pcontent.m_reload", + "pcontent.m_remote_type", + "pcontent.m_remove_all_permissions", + "pcontent.m_remove_dyn_entries_from_acti", + "pcontent.m_remove_from_bfcache", + "pcontent.m_remove_from_session_history", + "pcontent.m_remove_geolocation_listener", + "pcontent.m_remove_idle_observer", + "pcontent.m_remove_permission", + "pcontent.m_replace_active_session_histo", + "pcontent.m_report_frame_timing_data", + "pcontent.m_report_service_worker_shutdo", + "pcontent.m_request_anonymous_temporary_", + "pcontent.m_request_memory_report", + "pcontent.m_request_performance_metrics", + "pcontent.m_resume_input_event_queue", + "pcontent.m_revise_active_browsing_conte", + "pcontent.m_revise_focused_browsing_cont", + "pcontent.m_script_error", + "pcontent.m_script_error_with_stack", + "pcontent.m_session_history_entry_cache_", + "pcontent.m_session_history_entry_scroll", + "pcontent.m_session_history_entry_store_", + "pcontent.m_session_history_entry_title", + "pcontent.m_session_history_entry_wirefr", + "pcontent.m_set_active_browsing_context", + "pcontent.m_set_active_session_history_e", + "pcontent.m_set_allow_storage_access_req", + "pcontent.m_set_captive_portal_state", + "pcontent.m_set_character_map", + "pcontent.m_set_clipboard", + "pcontent.m_set_connectivity", + "pcontent.m_set_container_feature_policy", + "pcontent.m_set_focused_browsing_context", + "pcontent.m_set_focused_element", + "pcontent.m_set_geolocation_higher_accur", + "pcontent.m_set_input_event_queue_enable", + "pcontent.m_set_offline", + "pcontent.m_set_permissions_with_key", + "pcontent.m_set_process_sandbox", + "pcontent.m_setup_family_char_map", + "pcontent.m_setup_focused_and_active", + "pcontent.m_set_urititle", + "pcontent.m_set_xpcomprocess_attributes", + "pcontent.m_share_code_coverage_mutex", + "pcontent.m_show_alert", + "pcontent.m_shutdown", + "pcontent.m_shutdown_a11y", + "pcontent.m_shutdown_confirmed_hp", + "pcontent.m_shutdown_perf_stats", + "pcontent.m_shutdown_profile", + "pcontent.m_socket_process_crashed", + "pcontent.m_start_cmap_loading", + "pcontent.m_start_delayed_autoplay_media", + "pcontent.m_start_visited_queries", + "pcontent.m_stop_load", + "pcontent.m_storage_access_permission_gr", + "pcontent.m_store_and_broadcast_blob_url", + "pcontent.m_store_user_interaction_as_pe", + "pcontent.m_suspend_input_event_queue", + "pcontent.m_synchronize_layout_history_s", + "pcontent.m_sync_message", + "pcontent.m_system_timezone_changed", + "pcontent.m_test_allow_storage_access_re", + "pcontent.m_test_cookie_permission_decid", + "pcontent.m_test_storage_access_permissi", + "pcontent.m_theme_changed", + "pcontent.m_unblock_untrusted_modules_th", + "pcontent.m_ungrab_pointer", + "pcontent.m_unlink_ghosts", + "pcontent.m_unregister_jsprocess_actor", + "pcontent.m_unregister_jswindow_actor", + "pcontent.m_unregister_sheet", + "pcontent.m_unset_active_browsing_contex", + "pcontent.m_unstore_and_broadcast_blob_u", + "pcontent.m_update_app_locales", + "pcontent.m_update_child_keyed_scalars", + "pcontent.m_update_child_scalars", + "pcontent.m_update_dictionary_list", + "pcontent.m_update_drop_effect", + "pcontent.m_update_font_list", + "pcontent.m_update_l10n_file_sources", + "pcontent.m_update_media_codecs_supporte", + "pcontent.m_update_media_control_action", + "pcontent.m_update_perf_stats_collection", + "pcontent.m_update_remote_print_settings", + "pcontent.m_update_requested_locales", + "pcontent.m_update_shared_data", + "pcontent.m_update_window", + "pcontent.m_var_update", + "pcontent.m_window_blur", + "pcontent.m_window_close", + "pcontent.m_window_focus", + "pcontent.m_window_post_message", + "pcontent_permission_request.m___delete__", + "pcontent_permission_request.m_destroy", + "pcontent_permission_request.m_notify_result", + "pcontent_permission_request.m_prompt", + "pcontent_permission_request.r___delete__", + "pcontent.r_add_cert_exception", + "pcontent.r_automatic_storage_access_per", + "pcontent.r_begin_driver_crash_guard", + "pcontent.r_blob_urldata_request", + "pcontent.r_clipboard_has_type", + "pcontent.r_clipboard_has_types_async", + "pcontent.r_collect_perf_stats_json", + "pcontent.r_collect_scrolling_metrics", + "pcontent.r_complete_allow_access_for", + "pcontent.r_create_audio_ipcconnection", + "pcontent.r_create_window", + "pcontent.r_cross_process_redirect", + "pcontent.r_discard_browsing_context", + "pcontent.r_discard_window_context", + "pcontent.r_dispatch_before_unload_to_su", + "pcontent.r_end_driver_crash_guard", + "pcontent.r_find_image_text", + "pcontent.r_flush_code_coverage_counters", + "pcontent.r_flush_fogdata", + "pcontent.r_get_a11y_content_id", + "pcontent.r_get_clipboard", + "pcontent.r_get_clipboard_async", + "pcontent.r_get_external_clipboard_forma", + "pcontent.r_get_font_list_shm_block", + "pcontent.r_get_gfx_vars", + "pcontent.r_get_graphics_device_init_dat", + "pcontent.r_get_hyph_dict", + "pcontent.r_get_icon_for_extension", + "pcontent.r_get_layout_history_state", + "pcontent.r_get_loading_session_history_", + "pcontent.r_get_modules_trust", + "pcontent.r_get_output_color_profile_dat", + "pcontent.r_get_system_icon", + "pcontent.r_get_untrusted_modules_data", + "pcontent.r_history_go", + "pcontent.r_initialize_family", + "pcontent.r_init_other_family_names", + "pcontent.r_init_stream_filter", + "pcontent.r_is_secure_uri", + "pcontent.r_load_uri", + "pcontent.r_notify_on_history_reload", + "pcontent.r_pbenchmark_storage_construct", + "pcontent.r_pcontent_permission_request_", + "pcontent.r_pcycle_collect_with_logs_con", + "pcontent.r_pextensions_constructor", + "pcontent.r_pexternal_helper_app_constru", + "pcontent.r_phal_constructor", + "pcontent.r_phandler_service_constructor", + "pcontent.r_pheap_snapshot_temp_file_hel", + "pcontent.r_plogin_reputation_constructo", + "pcontent.r_pmedia_constructor", + "pcontent.r_pnecko_constructor", + "pcontent.r_premote_print_job_constructo", + "pcontent.r_premote_spellcheck_engine_co", + "pcontent.r_pscript_cache_constructor", + "pcontent.r_psession_storage_observer_co", + "pcontent.r_pspeech_synthesis_constructo", + "pcontent.r_ptest_shell_constructor", + "pcontent.r_purlclassifier_constructor", + "pcontent.r_purlclassifier_local_constru", + "pcontent.r_pweb_browser_persist_documen", + "pcontent.r_pwebrtc_global_constructor", + "pcontent.r_remove_permission", + "pcontent.r_request_memory_report", + "pcontent.r_set_allow_storage_access_req", + "pcontent.r_storage_access_permission_gr", + "pcontent.r_sync_message", + "pcontent.r_test_allow_storage_access_re", + "pcontent.r_test_cookie_permission_decid", + "pcontent.r_test_storage_access_permissi", + "pcontent.r_ungrab_pointer", + "pcookie_service.m_add_cookie", + "pcookie_service.m___delete__", + "pcookie_service.m_prepare_cookie_list", + "pcookie_service.m_remove_all", + "pcookie_service.m_remove_batch_deleted_cookies", + "pcookie_service.m_remove_cookie", + "pcookie_service.m_set_cookies", + "pcookie_service.m_track_cookies_load", + "pcookie_service.r___delete__", + "pcycle_collect_with_logs.m_close_cclog", + "pcycle_collect_with_logs.m_close_gclog", + "pcycle_collect_with_logs.m___delete__", + "pcycle_collect_with_logs.r___delete__", + "pdata_channel.m___delete__", + "pdata_channel.r___delete__", + "pdnsrequest.m_cancel_dnsrequest", + "pdnsrequest.m___delete__", + "pdnsrequest.m_lookup_completed", + "pdnsrequest.r___delete__", + "pdoc_accessible.m_accessibles_will_move", + "pdoc_accessible.m_access_key", + "pdoc_accessible.m_action_count", + "pdoc_accessible.m_action_name_at", + "pdoc_accessible.m_add_item_to_selection", + "pdoc_accessible.m_add_to_selection", + "pdoc_accessible.m_anchor_at", + "pdoc_accessible.m_anchor_count", + "pdoc_accessible.m_anchor_uriat", + "pdoc_accessible.m_announce", + "pdoc_accessible.m_announcement_event", + "pdoc_accessible.m_ariarole_atom", + "pdoc_accessible.m_atk_key_binding", + "pdoc_accessible.m_atk_table_column_header", + "pdoc_accessible.m_atk_table_row_header", + "pdoc_accessible.m_attributes", + "pdoc_accessible.m_batch", + "pdoc_accessible.m_bind_child_doc", + "pdoc_accessible.m_cache", + "pdoc_accessible.m_caret_line_number", + "pdoc_accessible.m_caret_move_event", + "pdoc_accessible.m_caret_offset", + "pdoc_accessible.m_character_count", + "pdoc_accessible.m_char_at", + "pdoc_accessible.m_char_bounds", + "pdoc_accessible.m_child_at_point", + "pdoc_accessible.m_col_extent", + "pdoc_accessible.m_col_header_cells", + "pdoc_accessible.m_col_idx", + "pdoc_accessible.m_constructed_in_parent_proces", + "pdoc_accessible.m_copy_text", + "pdoc_accessible.m_cur_value", + "pdoc_accessible.m_cut_text", + "pdoc_accessible.m_default_text_attributes", + "pdoc_accessible.m___delete__", + "pdoc_accessible.m_delete_text", + "pdoc_accessible.m_description", + "pdoc_accessible.m_do_action", + "pdoc_accessible.m_do_action_async", + "pdoc_accessible.m_doc_type", + "pdoc_accessible.m_domnode_id", + "pdoc_accessible.m_emulated_window", + "pdoc_accessible.m_end_offset", + "pdoc_accessible.m_event", + "pdoc_accessible.m_extents", + "pdoc_accessible.m_extents_in_csspixels", + "pdoc_accessible.m_focus_event", + "pdoc_accessible.m_get_col_row_extents", + "pdoc_accessible.m_get_position", + "pdoc_accessible.m_get_selected_item", + "pdoc_accessible.m_get_text_after_offset", + "pdoc_accessible.m_get_text_at_offset", + "pdoc_accessible.m_get_text_before_offset", + "pdoc_accessible.m_group_position", + "pdoc_accessible.m_help", + "pdoc_accessible.m_hide_event", + "pdoc_accessible.m_image_position", + "pdoc_accessible.m_image_size", + "pdoc_accessible.m_insert_text", + "pdoc_accessible.m_is_cell_selected", + "pdoc_accessible.m_is_item_selected", + "pdoc_accessible.m_is_link_valid", + "pdoc_accessible.m_is_searchbox", + "pdoc_accessible.m_landmark_role", + "pdoc_accessible.m_language", + "pdoc_accessible.m_link_at", + "pdoc_accessible.m_link_count", + "pdoc_accessible.m_link_index_at_offset", + "pdoc_accessible.m_max_value", + "pdoc_accessible.m_mime_type", + "pdoc_accessible.m_min_value", + "pdoc_accessible.m_name", + "pdoc_accessible.m_native_state", + "pdoc_accessible.m_offset_at_point", + "pdoc_accessible.m_parent_comproxy", + "pdoc_accessible.m_paste_text", + "pdoc_accessible.m_pdoc_accessible_platform_ext", + "pdoc_accessible.m_relation_by_type", + "pdoc_accessible.m_relations", + "pdoc_accessible.m_remove_from_selection", + "pdoc_accessible.m_remove_item_from_selection", + "pdoc_accessible.m_replace_text", + "pdoc_accessible.m_restore_focus", + "pdoc_accessible.m_role_changed_event", + "pdoc_accessible.m_row_extent", + "pdoc_accessible.m_row_header_cells", + "pdoc_accessible.m_row_idx", + "pdoc_accessible.m_scrolling_event", + "pdoc_accessible.m_scroll_substring_to", + "pdoc_accessible.m_scroll_substring_to_point", + "pdoc_accessible.m_scroll_to", + "pdoc_accessible.m_scroll_to_point", + "pdoc_accessible.m_select_all", + "pdoc_accessible.m_selected_accessibles_changed", + "pdoc_accessible.m_selected_item_count", + "pdoc_accessible.m_selected_items", + "pdoc_accessible.m_selection_bounds_at", + "pdoc_accessible.m_selection_count", + "pdoc_accessible.m_selection_event", + "pdoc_accessible.m_set_caret_offset", + "pdoc_accessible.m_set_cur_value", + "pdoc_accessible.m_set_selected", + "pdoc_accessible.m_set_selection_bounds_at", + "pdoc_accessible.m_show_event", + "pdoc_accessible.m_shutdown", + "pdoc_accessible.m_start_offset", + "pdoc_accessible.m_state", + "pdoc_accessible.m_state_change_event", + "pdoc_accessible.m_step", + "pdoc_accessible.m_sync_text_change_event", + "pdoc_accessible.m_table_caption", + "pdoc_accessible.m_table_cell_at", + "pdoc_accessible.m_table_cell_index_at", + "pdoc_accessible.m_table_cell_selected", + "pdoc_accessible.m_table_column_count", + "pdoc_accessible.m_table_column_description", + "pdoc_accessible.m_table_column_extent_at", + "pdoc_accessible.m_table_column_index_at", + "pdoc_accessible.m_table_column_selected", + "pdoc_accessible.m_table_is_probably_for_layout", + "pdoc_accessible.m_table_of_acell", + "pdoc_accessible.m_table_row_and_column_indices", + "pdoc_accessible.m_table_row_count", + "pdoc_accessible.m_table_row_description", + "pdoc_accessible.m_table_row_extent_at", + "pdoc_accessible.m_table_row_index_at", + "pdoc_accessible.m_table_row_selected", + "pdoc_accessible.m_table_select_column", + "pdoc_accessible.m_table_selected_cell_count", + "pdoc_accessible.m_table_selected_cell_indices", + "pdoc_accessible.m_table_selected_cells", + "pdoc_accessible.m_table_selected_column_count", + "pdoc_accessible.m_table_selected_column_indice", + "pdoc_accessible.m_table_selected_row_count", + "pdoc_accessible.m_table_selected_row_indices", + "pdoc_accessible.m_table_select_row", + "pdoc_accessible.m_table_summary", + "pdoc_accessible.m_table_unselect_column", + "pdoc_accessible.m_table_unselect_row", + "pdoc_accessible.m_take_focus", + "pdoc_accessible.m_take_selection", + "pdoc_accessible.m_text", + "pdoc_accessible.m_text_attributes", + "pdoc_accessible.m_text_bounds", + "pdoc_accessible.m_text_change_event", + "pdoc_accessible.m_text_selection_change_event", + "pdoc_accessible.m_text_substring", + "pdoc_accessible.m_title", + "pdoc_accessible.m_top_level_doc_comproxy", + "pdoc_accessible.m_unselect_all", + "pdoc_accessible.m_urldoc_type_mime_type", + "pdoc_accessible.m_value", + "pdoc_accessible.m_verify_cache", + "pdoc_accessible.m_virtual_cursor_change_event", + "pdoc_accessible_platform_ext.m_apply_post_search_filter", + "pdoc_accessible_platform_ext.m_attributed_text_for_range", + "pdoc_accessible_platform_ext.m_bounds_for_range", + "pdoc_accessible_platform_ext.m_copy", + "pdoc_accessible_platform_ext.m_cut", + "pdoc_accessible_platform_ext.m___delete__", + "pdoc_accessible_platform_ext.m_leaf_at_offset", + "pdoc_accessible_platform_ext.m_length_for_range", + "pdoc_accessible_platform_ext.m_navigate_text", + "pdoc_accessible_platform_ext.m_next_cluster_at", + "pdoc_accessible_platform_ext.m_offset_at_index", + "pdoc_accessible_platform_ext.m_paste", + "pdoc_accessible_platform_ext.m_pivot_to", + "pdoc_accessible_platform_ext.m_previous_cluster_at", + "pdoc_accessible_platform_ext.m_range_at", + "pdoc_accessible_platform_ext.m_range_of_child", + "pdoc_accessible_platform_ext.m_select_range", + "pdoc_accessible_platform_ext.m_set_pivot_boundaries", + "pdoc_accessible_platform_ext.m_set_selection", + "pdoc_accessible_platform_ext.m_text_for_range", + "pdoc_accessible_platform_ext.r_apply_post_search_filter", + "pdoc_accessible_platform_ext.r_attributed_text_for_range", + "pdoc_accessible_platform_ext.r_bounds_for_range", + "pdoc_accessible_platform_ext.r___delete__", + "pdoc_accessible_platform_ext.r_leaf_at_offset", + "pdoc_accessible_platform_ext.r_length_for_range", + "pdoc_accessible_platform_ext.r_next_cluster_at", + "pdoc_accessible_platform_ext.r_offset_at_index", + "pdoc_accessible_platform_ext.r_previous_cluster_at", + "pdoc_accessible_platform_ext.r_range_at", + "pdoc_accessible_platform_ext.r_range_of_child", + "pdoc_accessible_platform_ext.r_text_for_range", + "pdoc_accessible.r_access_key", + "pdoc_accessible.r_action_count", + "pdoc_accessible.r_action_name_at", + "pdoc_accessible.r_add_item_to_selection", + "pdoc_accessible.r_add_to_selection", + "pdoc_accessible.r_anchor_at", + "pdoc_accessible.r_anchor_count", + "pdoc_accessible.r_anchor_uriat", + "pdoc_accessible.r_ariarole_atom", + "pdoc_accessible.r_atk_key_binding", + "pdoc_accessible.r_atk_table_column_header", + "pdoc_accessible.r_atk_table_row_header", + "pdoc_accessible.r_attributes", + "pdoc_accessible.r_caret_line_number", + "pdoc_accessible.r_caret_offset", + "pdoc_accessible.r_character_count", + "pdoc_accessible.r_char_at", + "pdoc_accessible.r_char_bounds", + "pdoc_accessible.r_child_at_point", + "pdoc_accessible.r_col_extent", + "pdoc_accessible.r_col_header_cells", + "pdoc_accessible.r_col_idx", + "pdoc_accessible.r_copy_text", + "pdoc_accessible.r_cur_value", + "pdoc_accessible.r_cut_text", + "pdoc_accessible.r_default_text_attributes", + "pdoc_accessible.r___delete__", + "pdoc_accessible.r_delete_text", + "pdoc_accessible.r_description", + "pdoc_accessible.r_do_action", + "pdoc_accessible.r_doc_type", + "pdoc_accessible.r_domnode_id", + "pdoc_accessible.r_end_offset", + "pdoc_accessible.r_extents", + "pdoc_accessible.r_extents_in_csspixels", + "pdoc_accessible.r_get_col_row_extents", + "pdoc_accessible.r_get_position", + "pdoc_accessible.r_get_selected_item", + "pdoc_accessible.r_get_text_after_offset", + "pdoc_accessible.r_get_text_at_offset", + "pdoc_accessible.r_get_text_before_offset", + "pdoc_accessible.r_group_position", + "pdoc_accessible.r_help", + "pdoc_accessible.r_image_position", + "pdoc_accessible.r_image_size", + "pdoc_accessible.r_insert_text", + "pdoc_accessible.r_is_cell_selected", + "pdoc_accessible.r_is_item_selected", + "pdoc_accessible.r_is_link_valid", + "pdoc_accessible.r_is_searchbox", + "pdoc_accessible.r_landmark_role", + "pdoc_accessible.r_language", + "pdoc_accessible.r_link_at", + "pdoc_accessible.r_link_count", + "pdoc_accessible.r_link_index_at_offset", + "pdoc_accessible.r_max_value", + "pdoc_accessible.r_mime_type", + "pdoc_accessible.r_min_value", + "pdoc_accessible.r_name", + "pdoc_accessible.r_native_state", + "pdoc_accessible.r_offset_at_point", + "pdoc_accessible.r_paste_text", + "pdoc_accessible.r_pdoc_accessible_platform_ext", + "pdoc_accessible.r_relation_by_type", + "pdoc_accessible.r_relations", + "pdoc_accessible.r_remove_from_selection", + "pdoc_accessible.r_remove_item_from_selection", + "pdoc_accessible.r_replace_text", + "pdoc_accessible.r_row_extent", + "pdoc_accessible.r_row_header_cells", + "pdoc_accessible.r_row_idx", + "pdoc_accessible.r_select_all", + "pdoc_accessible.r_selected_item_count", + "pdoc_accessible.r_selected_items", + "pdoc_accessible.r_selection_bounds_at", + "pdoc_accessible.r_selection_count", + "pdoc_accessible.r_set_cur_value", + "pdoc_accessible.r_set_selection_bounds_at", + "pdoc_accessible.r_start_offset", + "pdoc_accessible.r_state", + "pdoc_accessible.r_step", + "pdoc_accessible.r_sync_text_change_event", + "pdoc_accessible.r_table_caption", + "pdoc_accessible.r_table_cell_at", + "pdoc_accessible.r_table_cell_index_at", + "pdoc_accessible.r_table_cell_selected", + "pdoc_accessible.r_table_column_count", + "pdoc_accessible.r_table_column_description", + "pdoc_accessible.r_table_column_extent_at", + "pdoc_accessible.r_table_column_index_at", + "pdoc_accessible.r_table_column_selected", + "pdoc_accessible.r_table_is_probably_for_layout", + "pdoc_accessible.r_table_of_acell", + "pdoc_accessible.r_table_row_and_column_indices", + "pdoc_accessible.r_table_row_count", + "pdoc_accessible.r_table_row_description", + "pdoc_accessible.r_table_row_extent_at", + "pdoc_accessible.r_table_row_index_at", + "pdoc_accessible.r_table_row_selected", + "pdoc_accessible.r_table_select_column", + "pdoc_accessible.r_table_selected_cell_count", + "pdoc_accessible.r_table_selected_cell_indices", + "pdoc_accessible.r_table_selected_cells", + "pdoc_accessible.r_table_selected_column_count", + "pdoc_accessible.r_table_selected_column_indice", + "pdoc_accessible.r_table_selected_row_count", + "pdoc_accessible.r_table_selected_row_indices", + "pdoc_accessible.r_table_select_row", + "pdoc_accessible.r_table_summary", + "pdoc_accessible.r_table_unselect_column", + "pdoc_accessible.r_table_unselect_row", + "pdoc_accessible.r_text", + "pdoc_accessible.r_text_attributes", + "pdoc_accessible.r_text_bounds", + "pdoc_accessible.r_text_substring", + "pdoc_accessible.r_title", + "pdoc_accessible.r_unselect_all", + "pdoc_accessible.r_urldoc_type_mime_type", + "pdoc_accessible.r_value", + "pdocument_channel.m_cancel", + "pdocument_channel.m___delete__", + "pdocument_channel.m_disconnect_child_listeners", + "pdocument_channel.m_failed_async_open", + "pdocument_channel.m_redirect_to_real_channel", + "pdocument_channel.m_upgrade_object_load", + "pdocument_channel.r___delete__", + "pdocument_channel.r_redirect_to_real_channel", + "pdocument_channel.r_upgrade_object_load", + "pendpoint_for_report.m___delete__", + "pendpoint_for_report.r___delete__", + "pextensions.m_created_navigation_target", + "pextensions.m___delete__", + "pextensions.m_document_change", + "pextensions.m_domcontent_loaded", + "pextensions.m_history_change", + "pextensions.m_state_change", + "pextensions.r___delete__", + "pexternal_helper_app.m_cancel", + "pexternal_helper_app.m___delete__", + "pexternal_helper_app.m_on_data_available", + "pexternal_helper_app.m_on_start_request", + "pexternal_helper_app.m_on_stop_request", + "pexternal_helper_app.r___delete__", + "pfetch_event_op.m_async_log", + "pfetch_event_op.m___delete__", + "pfetch_event_op.m_preload_response", + "pfetch_event_op.m_respond_with", + "pfetch_event_op_proxy.m_async_log", + "pfetch_event_op_proxy.m___delete__", + "pfetch_event_op_proxy.m_preload_response", + "pfetch_event_op_proxy.m_respond_with", + "pfetch_event_op_proxy.r___delete__", + "pfetch_event_op.r___delete__", + "pfile_channel.m___delete__", + "pfile_channel.r___delete__", + "pfile_creator.m___delete__", + "pfile_creator.r___delete__", + "pfile_picker.m___delete__", + "pfile_picker.m_open", + "pfile_picker.r___delete__", + "pfile_system_access_handle.m___delete__", + "pfile_system_access_handle.r___delete__", + "pfile_system_manager.m_close_all", + "pfile_system_manager.m_get_access_handle", + "pfile_system_manager.m_get_directory_handle", + "pfile_system_manager.m_get_entries", + "pfile_system_manager.m_get_file", + "pfile_system_manager.m_get_file_handle", + "pfile_system_manager.m_get_root_handle", + "pfile_system_manager.m_get_writable", + "pfile_system_manager.m_move_entry", + "pfile_system_manager.m_need_quota", + "pfile_system_manager.m_pfile_system_access_handle_c", + "pfile_system_manager.m_remove_entry", + "pfile_system_manager.m_rename_entry", + "pfile_system_manager.m_resolve", + "pfile_system_manager.r_close_all", + "pfile_system_manager.r_get_access_handle", + "pfile_system_manager.r_get_directory_handle", + "pfile_system_manager.r_get_entries", + "pfile_system_manager.r_get_file", + "pfile_system_manager.r_get_file_handle", + "pfile_system_manager.r_get_root_handle", + "pfile_system_manager.r_get_writable", + "pfile_system_manager.r_move_entry", + "pfile_system_manager.r_need_quota", + "pfile_system_manager.r_pfile_system_access_handle_c", + "pfile_system_manager.r_remove_entry", + "pfile_system_manager.r_rename_entry", + "pfile_system_manager.r_resolve", + "pfile_system_request.m___delete__", + "pfile_system_request.r___delete__", + "pgamepad_event_channel.m___delete__", + "pgamepad_event_channel.m_gamepad_update", + "pgamepad_event_channel.m_light_indicator_color", + "pgamepad_event_channel.m_reply_gamepad_promise", + "pgamepad_event_channel.m_stop_vibrate_haptic", + "pgamepad_event_channel.m_vibrate_haptic", + "pgamepad_event_channel.r___delete__", + "pgamepad_test_channel.m___delete__", + "pgamepad_test_channel.m_gamepad_test_event", + "pgamepad_test_channel.m_reply_gamepad_handle", + "pgamepad_test_channel.r___delete__", + "pgiochannel.m_cancel", + "pgiochannel.m___delete__", + "pgiochannel.m_delete_self", + "pgiochannel.m_failed_async_open", + "pgiochannel.m_on_data_available", + "pgiochannel.m_on_start_request", + "pgiochannel.m_on_stop_request", + "pgiochannel.m_resume", + "pgiochannel.m_suspend", + "pgiochannel.r___delete__", + "pgmpcontent.m_init_sandbox_testing", + "pgmpcontent.m_pchromium_cdmconstructor", + "pgmpcontent.m_pgmpvideo_decoder_constructo", + "pgmpcontent.m_pgmpvideo_encoder_constructo", + "pgmpcontent.r_pchromium_cdmconstructor", + "pgmpcontent.r_pgmpvideo_decoder_constructo", + "pgmpcontent.r_pgmpvideo_encoder_constructo", + "pgmp.m_close_active", + "pgmp.m_crash_plugin_now", + "pgmp.m_flush_fogdata", + "pgmp.m_fogdata", + "pgmp.m_init_crash_reporter", + "pgmp.m_init_gmpcontent_child", + "pgmp.m_init_profiler", + "pgmp.m_pgmpcontent_child_destroyed", + "pgmp.m_pgmpstorage_constructor", + "pgmp.m_pgmptimer_constructor", + "pgmp.m_preload_libs", + "pgmp.m_provide_storage_id", + "pgmp.m_start_plugin", + "pgmp.m_test_trigger_metrics", + "pgmp.r_flush_fogdata", + "pgmp.r_pgmpstorage_constructor", + "pgmp.r_pgmptimer_constructor", + "pgmp.r_start_plugin", + "pgmp.r_test_trigger_metrics", + "pgmpservice.m_begin_shutdown", + "pgmpservice.m_get_gmpnode_id", + "pgmpservice.m_launch_gmp", + "pgmpservice.r_get_gmpnode_id", + "pgmpservice.r_launch_gmp", + "pgmpstorage.m_close", + "pgmpstorage.m___delete__", + "pgmpstorage.m_open", + "pgmpstorage.m_open_complete", + "pgmpstorage.m_read", + "pgmpstorage.m_read_complete", + "pgmpstorage.m_shutdown", + "pgmpstorage.m_write", + "pgmpstorage.m_write_complete", + "pgmpstorage.r___delete__", + "pgmptimer.m___delete__", + "pgmptimer.m_set_timer", + "pgmptimer.m_timer_expired", + "pgmptimer.r___delete__", + "pgmpvideo_decoder.m_child_shmem_for_pool", + "pgmpvideo_decoder.m_decode", + "pgmpvideo_decoder.m_decoded", + "pgmpvideo_decoder.m_decoding_complete", + "pgmpvideo_decoder.m___delete__", + "pgmpvideo_decoder.m_drain", + "pgmpvideo_decoder.m_drain_complete", + "pgmpvideo_decoder.m_error", + "pgmpvideo_decoder.m_init_decode", + "pgmpvideo_decoder.m_input_data_exhausted", + "pgmpvideo_decoder.m_need_shmem", + "pgmpvideo_decoder.m_parent_shmem_for_pool", + "pgmpvideo_decoder.m_received_decoded_frame", + "pgmpvideo_decoder.m_received_decoded_reference_f", + "pgmpvideo_decoder.m_reset", + "pgmpvideo_decoder.m_reset_complete", + "pgmpvideo_decoder.m_shutdown", + "pgmpvideo_decoder.r___delete__", + "pgmpvideo_decoder.r_need_shmem", + "pgmpvideo_encoder.m_child_shmem_for_pool", + "pgmpvideo_encoder.m___delete__", + "pgmpvideo_encoder.m_encode", + "pgmpvideo_encoder.m_encoded", + "pgmpvideo_encoder.m_encoding_complete", + "pgmpvideo_encoder.m_error", + "pgmpvideo_encoder.m_init_encode", + "pgmpvideo_encoder.m_need_shmem", + "pgmpvideo_encoder.m_parent_shmem_for_pool", + "pgmpvideo_encoder.m_set_channel_parameters", + "pgmpvideo_encoder.m_set_periodic_key_frames", + "pgmpvideo_encoder.m_set_rates", + "pgmpvideo_encoder.m_shutdown", + "pgmpvideo_encoder.r___delete__", + "pgmpvideo_encoder.r_need_shmem", + "pgpu.m_accumulate_child_histograms", + "pgpu.m_accumulate_child_keyed_histo", + "pgpu.m_add_layer_tree_id_mapping", + "pgpu.m_add_memory_report", + "pgpu.m_bhrthread_hang", + "pgpu.m_collect_perf_stats_json", + "pgpu.m_crash_process", + "pgpu.m_create_vrprocess", + "pgpu.m_declare_stable", + "pgpu.m_flush_fogdata", + "pgpu.m_flush_memory", + "pgpu.m_fogdata", + "pgpu.m_get_device_status", + "pgpu.m_graphics_error", + "pgpu.m_init", + "pgpu.m_init_apzinput_bridge", + "pgpu.m_init_complete", + "pgpu.m_init_compositor_manager", + "pgpu.m_init_crash_reporter", + "pgpu.m_init_image_bridge", + "pgpu.m_init_profiler", + "pgpu.m_init_sandbox_testing", + "pgpu.m_init_ui_compositor_controlle", + "pgpu.m_init_video_bridge", + "pgpu.m_init_vr", + "pgpu.m_init_vrmanager", + "pgpu.m_init_vsync_bridge", + "pgpu.m_new_content_compositor_manag", + "pgpu.m_new_content_image_bridge", + "pgpu.m_new_content_remote_decoder_m", + "pgpu.m_new_content_vrmanager", + "pgpu.m_notify_device_reset", + "pgpu.m_notify_gpu_observers", + "pgpu.m_notify_overlay_info", + "pgpu.m_notify_ui_observers", + "pgpu.m_preference_update", + "pgpu.m_record_child_events", + "pgpu.m_record_discarded_data", + "pgpu.m_remove_layer_tree_id_mapping", + "pgpu.m_report_checkerboard", + "pgpu.m_request_memory_report", + "pgpu.m_shutdown_vr", + "pgpu.m_shutdown_vrprocess", + "pgpu.m_simulate_device_reset", + "pgpu.m_test_trigger_metrics", + "pgpu.m_update_child_keyed_scalars", + "pgpu.m_update_child_scalars", + "pgpu.m_update_feature", + "pgpu.m_update_media_codecs_supporte", + "pgpu.m_update_perf_stats_collection", + "pgpu.m_update_var", + "pgpu.m_used_fallback", + "pgpu.r_add_layer_tree_id_mapping", + "pgpu.r_collect_perf_stats_json", + "pgpu.r_flush_fogdata", + "pgpu.r_get_device_status", + "pgpu.r_request_memory_report", + "pgpu.r_test_trigger_metrics", + "phal.m_cancel_vibrate", + "phal.m___delete__", + "phal.m_disable_battery_notification", + "phal.m_disable_network_notification", + "phal.m_disable_sensor_notifications", + "phal.m_disable_wake_lock_notificati", + "phal.m_enable_battery_notifications", + "phal.m_enable_network_notifications", + "phal.m_enable_sensor_notifications", + "phal.m_enable_wake_lock_notificatio", + "phal.m_get_current_battery_informat", + "phal.m_get_current_network_informat", + "phal.m_get_wake_lock_info", + "phal.m_lock_screen_orientation", + "phal.m_modify_wake_lock", + "phal.m_notify_battery_change", + "phal.m_notify_network_change", + "phal.m_notify_sensor_change", + "phal.m_notify_wake_lock_change", + "phal.m_unlock_screen_orientation", + "phal.m_vibrate", + "phal.r___delete__", + "phal.r_get_current_battery_informat", + "phal.r_get_current_network_informat", + "phal.r_get_wake_lock_info", + "phal.r_lock_screen_orientation", + "phandler_service.m___delete__", + "phandler_service.m_exists", + "phandler_service.m_exists_for_protocol", + "phandler_service.m_exists_for_protocol_os", + "phandler_service.m_fill_handler_info", + "phandler_service.m_get_application_description", + "phandler_service.m_get_mimeinfo_from_os", + "phandler_service.m_get_type_from_extension", + "phandler_service.r___delete__", + "phandler_service.r_exists", + "phandler_service.r_exists_for_protocol", + "phandler_service.r_exists_for_protocol_os", + "phandler_service.r_fill_handler_info", + "phandler_service.r_get_application_description", + "phandler_service.r_get_mimeinfo_from_os", + "phandler_service.r_get_type_from_extension", + "pheap_snapshot_temp_file_helpe.m___delete__", + "pheap_snapshot_temp_file_helpe.m_open_heap_snapshot_temp_file", + "pheap_snapshot_temp_file_helpe.r___delete__", + "pheap_snapshot_temp_file_helpe.r_open_heap_snapshot_temp_file", + "phttp_background_channel.m_attach_stream_filter", + "phttp_background_channel.m___delete__", + "phttp_background_channel.m_notify_classification_flags", + "phttp_background_channel.m_on_after_last_part", + "phttp_background_channel.m_on_console_report", + "phttp_background_channel.m_on_progress", + "phttp_background_channel.m_on_start_request", + "phttp_background_channel.m_on_status", + "phttp_background_channel.m_on_stop_request", + "phttp_background_channel.m_on_transport_and_data", + "phttp_background_channel.m_set_classifier_matched_info", + "phttp_background_channel.m_set_classifier_matched_track", + "phttp_background_channel.r___delete__", + "phttp_channel.m_bytes_read", + "phttp_channel.m_cancel", + "phttp_channel.m___delete__", + "phttp_channel.m_delete_self", + "phttp_channel.m_deleting_channel", + "phttp_channel.m_document_channel_cleanup", + "phttp_channel.m_failed_async_open", + "phttp_channel.m_log_blocked_corsrequest", + "phttp_channel.m_log_mime_type_mismatch", + "phttp_channel.m_on_start_request_sent", + "phttp_channel.m_open_original_cache_input_st", + "phttp_channel.m_original_cache_input_stream_", + "phttp_channel.m_redirect1_begin", + "phttp_channel.m_redirect2_verify", + "phttp_channel.m_redirect3_complete", + "phttp_channel.m_remove_cors_preflight_cache_", + "phttp_channel.m_report_security_message", + "phttp_channel.m_resume", + "phttp_channel.m_set_class_of_service", + "phttp_channel.m_set_priority", + "phttp_channel.m_suspend", + "phttp_channel.r___delete__", + "phttp_connection_mgr.m_add_transaction", + "phttp_connection_mgr.m_add_transaction_with_sticky_", + "phttp_connection_mgr.m_cancel_transaction", + "phttp_connection_mgr.m___delete__", + "phttp_connection_mgr.m_do_shift_reload_connection_c", + "phttp_connection_mgr.m_reschedule_transaction", + "phttp_connection_mgr.m_speculative_connect", + "phttp_connection_mgr.m_start_web_socket_connection", + "phttp_connection_mgr.m_update_class_of_service_on_t", + "phttp_connection_mgr.m_update_current_top_browsing_", + "phttp_connection_mgr.r___delete__", + "phttp_transaction.m_cancel_pump", + "phttp_transaction.m___delete__", + "phttp_transaction.m_dont_reuse_connection", + "phttp_transaction.m_early_hint", + "phttp_transaction.m_init", + "phttp_transaction.m_on_data_available", + "phttp_transaction.m_on_h2_push_stream", + "phttp_transaction.m_on_init_failed", + "phttp_transaction.m_on_start_request", + "phttp_transaction.m_on_stop_request", + "phttp_transaction.m_on_transport_status", + "phttp_transaction.m_resume_pump", + "phttp_transaction.m_set_dnswas_refreshed", + "phttp_transaction.m_set_h2_wsconn_ref_taken", + "phttp_transaction.m_suspend_pump", + "phttp_transaction.r___delete__", + "pidle_scheduler.m___delete__", + "pidle_scheduler.m_done_gc", + "pidle_scheduler.m_idle_time", + "pidle_scheduler.m_idle_time_used", + "pidle_scheduler.m_init_for_idle_use", + "pidle_scheduler.m_prioritized_operation_done", + "pidle_scheduler.m_request_gc", + "pidle_scheduler.m_request_idle_time", + "pidle_scheduler.m_running_prioritized_operatio", + "pidle_scheduler.m_schedule", + "pidle_scheduler.m_started_gc", + "pidle_scheduler.r___delete__", + "pidle_scheduler.r_init_for_idle_use", + "pidle_scheduler.r_request_gc", + "pimage_bridge.m_did_composite", + "pimage_bridge.m_new_compositable", + "pimage_bridge.m_parent_async_messages", + "pimage_bridge.m_pmedia_system_resource_manag", + "pimage_bridge.m_ptexture_constructor", + "pimage_bridge.m_release_compositable", + "pimage_bridge.m_report_frames_dropped", + "pimage_bridge.m_update", + "pimage_bridge.m_will_close", + "pimage_bridge.r_new_compositable", + "pimage_bridge.r_pmedia_system_resource_manag", + "pimage_bridge.r_ptexture_constructor", + "pinput_channel_throttle_queue.m___delete__", + "pinput_channel_throttle_queue.m_record_read", + "pinput_channel_throttle_queue.r___delete__", + "pipcclient_certs.m___delete__", + "pipcclient_certs.m_find_objects", + "pipcclient_certs.m_sign", + "pipcclient_certs.r___delete__", + "pipcclient_certs.r_find_objects", + "pipcclient_certs.r_sign", + "pipdlunit_test.m_complete", + "pipdlunit_test.m_report", + "pipdlunit_test.m_start", + "plock_manager.m___delete__", + "plock_manager.m_plock_request_constructor", + "plock_manager.m_query", + "plock_manager.r___delete__", + "plock_manager.r_plock_request_constructor", + "plock_manager.r_query", + "plock_request.m___delete__", + "plock_request.m_resolve", + "plock_request.r___delete__", + "plogin_reputation.m___delete__", + "plogin_reputation.r___delete__", + "pmedia.m___delete__", + "pmedia.m_get_principal_key", + "pmedia.m_sanitize_origin_keys", + "pmedia.r___delete__", + "pmedia.r_get_principal_key", + "pmedia_system_resource_manager.m_acquire", + "pmedia_system_resource_manager.m___delete__", + "pmedia_system_resource_manager.m_release", + "pmedia_system_resource_manager.m_remove_resource_manager", + "pmedia_system_resource_manager.m_response", + "pmedia_system_resource_manager.r___delete__", + "pmedia_transport.m_activate_transport", + "pmedia_transport.m_add_ice_candidate", + "pmedia_transport.m_clear_ice_log", + "pmedia_transport.m_create_ice_ctx", + "pmedia_transport.m___delete__", + "pmedia_transport.m_ensure_provisional_transport", + "pmedia_transport.m_enter_private_mode", + "pmedia_transport.m_exit_private_mode", + "pmedia_transport.m_get_ice_log", + "pmedia_transport.m_get_ice_stats", + "pmedia_transport.m_on_alpn_negotiated", + "pmedia_transport.m_on_candidate", + "pmedia_transport.m_on_connection_state_change", + "pmedia_transport.m_on_encrypted_sending", + "pmedia_transport.m_on_gathering_state_change", + "pmedia_transport.m_on_packet_received", + "pmedia_transport.m_on_rtcp_state_change", + "pmedia_transport.m_on_state_change", + "pmedia_transport.m_remove_transports_except", + "pmedia_transport.m_send_packet", + "pmedia_transport.m_set_ice_config", + "pmedia_transport.m_set_proxy_config", + "pmedia_transport.m_set_target_for_default_local", + "pmedia_transport.m_start_ice_checks", + "pmedia_transport.m_start_ice_gathering", + "pmedia_transport.m_update_network_state", + "pmedia_transport.r___delete__", + "pmedia_transport.r_get_ice_log", + "pmedia_transport.r_get_ice_stats", + "pmessage_port.m_close", + "pmessage_port.m___delete__", + "pmessage_port.m_disentangle", + "pmessage_port.m_entangled", + "pmessage_port.m_post_messages", + "pmessage_port.m_receive_data", + "pmessage_port.m_stop_sending_data", + "pmessage_port.m_stop_sending_data_confirmed", + "pmessage_port.r___delete__", + "pmfmedia_engine.m___delete__", + "pmfmedia_engine.m_init_media_engine", + "pmfmedia_engine.m_notify_end_of_stream", + "pmfmedia_engine.m_notify_error", + "pmfmedia_engine.m_notify_event", + "pmfmedia_engine.m_notify_media_info", + "pmfmedia_engine.m_pause", + "pmfmedia_engine.m_play", + "pmfmedia_engine.m_request_sample", + "pmfmedia_engine.m_seek", + "pmfmedia_engine.m_set_looping", + "pmfmedia_engine.m_set_playback_rate", + "pmfmedia_engine.m_set_volume", + "pmfmedia_engine.m_shutdown", + "pmfmedia_engine.m_update_current_time", + "pmfmedia_engine.m_update_statistic_data", + "pmfmedia_engine.r___delete__", + "pmfmedia_engine.r_init_media_engine", + "pmidimanager.m___delete__", + "pmidimanager.m_midiport_list_update", + "pmidimanager.m_refresh", + "pmidimanager.m_shutdown", + "pmidimanager.r___delete__", + "pmidiport.m_clear", + "pmidiport.m_close", + "pmidiport.m___delete__", + "pmidiport.m_open", + "pmidiport.m_receive", + "pmidiport.m_send", + "pmidiport.m_shutdown", + "pmidiport.m_update_status", + "pmidiport.r___delete__", + "pnative_dnsresolver_override.m_add_ipoverride", + "pnative_dnsresolver_override.m_clear_host_override", + "pnative_dnsresolver_override.m_clear_overrides", + "pnative_dnsresolver_override.m___delete__", + "pnative_dnsresolver_override.m_set_cname_override", + "pnative_dnsresolver_override.r___delete__", + "pnecko.m_cancel_htmldnsprefetch", + "pnecko.m___delete__", + "pnecko.m_ensure_hstsdata", + "pnecko.m_get_extension_fd", + "pnecko.m_get_extension_stream", + "pnecko.m_get_page_icon_stream", + "pnecko.m_get_page_thumb_stream", + "pnecko.m_htmldnsprefetch", + "pnecko.m_init_socket_process_bridge", + "pnecko.m_network_change_notification", + "pnecko.m_palt_data_output_stream_cons", + "pnecko.m_pclassifier_dummy_channel_co", + "pnecko.m_pcookie_service_constructor", + "pnecko.m_pdata_channel_constructor", + "pnecko.m_pdnsrequest_constructor", + "pnecko.m_pdocument_channel_constructo", + "pnecko.m_pfile_channel_constructor", + "pnecko.m_pgiochannel_constructor", + "pnecko.m_phttp_channel_constructor", + "pnecko.m_pred_learn", + "pnecko.m_pred_on_predict_dns", + "pnecko.m_pred_on_predict_preconnect", + "pnecko.m_pred_on_predict_prefetch", + "pnecko.m_pred_predict", + "pnecko.m_pred_reset", + "pnecko.m_psimple_channel_constructor", + "pnecko.m_pstun_addrs_request_construc", + "pnecko.m_ptcpserver_socket_constructo", + "pnecko.m_ptcpsocket_constructor", + "pnecko.m_ptransport_provider_construc", + "pnecko.m_pudpsocket_constructor", + "pnecko.m_pwebrtc_tcpsocket_constructo", + "pnecko.m_pweb_socket_constructor", + "pnecko.m_pweb_socket_event_listener_c", + "pnecko.m_remove_request_context", + "pnecko.m_request_context_after_domcon", + "pnecko.m_request_context_load_begin", + "pnecko.m_reset_socket_process_bridge", + "pnecko.m_speculative_connect", + "pnecko.m_speculative_connect_request", + "pnecko.r___delete__", + "pnecko.r_ensure_hstsdata", + "pnecko.r_get_extension_fd", + "pnecko.r_get_extension_stream", + "pnecko.r_get_page_icon_stream", + "pnecko.r_get_page_thumb_stream", + "pnecko.r_init_socket_process_bridge", + "pnecko.r_palt_data_output_stream_cons", + "pnecko.r_pclassifier_dummy_channel_co", + "pnecko.r_pcookie_service_constructor", + "pnecko.r_pdata_channel_constructor", + "pnecko.r_pdnsrequest_constructor", + "pnecko.r_pdocument_channel_constructo", + "pnecko.r_pfile_channel_constructor", + "pnecko.r_pgiochannel_constructor", + "pnecko.r_phttp_channel_constructor", + "pnecko.r_psimple_channel_constructor", + "pnecko.r_pstun_addrs_request_construc", + "pnecko.r_ptcpserver_socket_constructo", + "pnecko.r_ptcpsocket_constructor", + "pnecko.r_ptransport_provider_construc", + "pnecko.r_pudpsocket_constructor", + "pnecko.r_pwebrtc_tcpsocket_constructo", + "pnecko.r_pweb_socket_constructor", + "pnecko.r_pweb_socket_event_listener_c", + "ppayment_request.m_change_payer_detail", + "ppayment_request.m_change_payment_method", + "ppayment_request.m_change_shipping_address", + "ppayment_request.m_change_shipping_option", + "ppayment_request.m___delete__", + "ppayment_request.m_request_payment", + "ppayment_request.m_respond_payment", + "ppayment_request.r___delete__", + "pprocess_hang_monitor.m_begin_starting_debugger", + "pprocess_hang_monitor.m_cancel_content_jsexecution_i", + "pprocess_hang_monitor.m_clear_hang", + "pprocess_hang_monitor.m_end_starting_debugger", + "pprocess_hang_monitor.m_hang_evidence", + "pprocess_hang_monitor.m_paint_while_interrupting_js", + "pprocess_hang_monitor.m_request_content_jsinterrupt", + "pprocess_hang_monitor.m_terminate_script", + "pprofiler.m_await_next_chunk_manager_upd", + "pprofiler.m_clear_all_pages", + "pprofiler.m_destroy_released_chunks_at_o", + "pprofiler.m_ensure_started", + "pprofiler.m_gather_profile", + "pprofiler.m_get_gather_profile_progress", + "pprofiler.m_pause", + "pprofiler.m_pause_sampling", + "pprofiler.m_resume", + "pprofiler.m_resume_sampling", + "pprofiler.m_start", + "pprofiler.m_stop", + "pprofiler.m_wait_one_periodic_sampling", + "pprofiler.r_await_next_chunk_manager_upd", + "pprofiler.r_ensure_started", + "pprofiler.r_gather_profile", + "pprofiler.r_get_gather_profile_progress", + "pprofiler.r_pause", + "pprofiler.r_pause_sampling", + "pprofiler.r_resume", + "pprofiler.r_resume_sampling", + "pprofiler.r_start", + "pprofiler.r_stop", + "pprofiler.r_wait_one_periodic_sampling", + "pproxy_auto_config.m_configure_pac", + "pproxy_auto_config.m_get_proxy_for_uri", + "pproxy_auto_config.r_get_proxy_for_uri", + "pproxy_config_lookup.m___delete__", + "pproxy_config_lookup.r___delete__", + "pquota.m_abort_operations_for_process", + "pquota.m___delete__", + "pquota.m_pquota_request_constructor", + "pquota.m_pquota_usage_request_constru", + "pquota.m_start_idle_maintenance", + "pquota.m_stop_idle_maintenance", + "pquota.r___delete__", + "pquota_request.m___delete__", + "pquota_request.r___delete__", + "pquota.r_pquota_request_constructor", + "pquota.r_pquota_usage_request_constru", + "pquota_test.m_try_inspect_success_custom_e", + "pquota_test.m_try_success_custom_err_ipc_f", + "pquota_test.m_try_success_custom_err_qm_ip", + "pquota_test.r_try_inspect_success_custom_e", + "pquota_test.r_try_success_custom_err_ipc_f", + "pquota_test.r_try_success_custom_err_qm_ip", + "pquota_usage_request.m_cancel", + "pquota_usage_request.m___delete__", + "pquota_usage_request.r___delete__", + "prdd.m_add_memory_report", + "prdd.m_flush_fogdata", + "prdd.m_fogdata", + "prdd.m_get_modules_trust", + "prdd.m_get_untrusted_modules_data", + "prdd.m_init", + "prdd.m_init_crash_reporter", + "prdd.m_init_profiler", + "prdd.m_init_sandbox_testing", + "prdd.m_init_video_bridge", + "prdd.m_new_content_remote_decoder_m", + "prdd.m_preference_update", + "prdd.m_request_memory_report", + "prdd.m_test_trigger_metrics", + "prdd.m_unblock_untrusted_modules_th", + "prdd.m_update_media_codecs_supporte", + "prdd.m_update_var", + "prdd.r_flush_fogdata", + "prdd.r_get_modules_trust", + "prdd.r_get_untrusted_modules_data", + "prdd.r_request_memory_report", + "prdd.r_test_trigger_metrics", + "premote_decoder_manager.m_deallocate_surface_descripto", + "premote_decoder_manager.m_pmfmedia_engine_constructor", + "premote_decoder_manager.m_premote_decoder_constructor", + "premote_decoder_manager.m_readback", + "premote_decoder_manager.r_pmfmedia_engine_constructor", + "premote_decoder_manager.r_premote_decoder_constructor", + "premote_decoder_manager.r_readback", + "premote_decoder.m_construct", + "premote_decoder.m_decode", + "premote_decoder.m___delete__", + "premote_decoder.m_drain", + "premote_decoder.m_flush", + "premote_decoder.m_init", + "premote_decoder.m_set_seek_threshold", + "premote_decoder.m_shutdown", + "premote_decoder.r_construct", + "premote_decoder.r_decode", + "premote_decoder.r___delete__", + "premote_decoder.r_drain", + "premote_decoder.r_flush", + "premote_decoder.r_init", + "premote_decoder.r_shutdown", + "premote_lazy_input_stream.m_clone", + "premote_lazy_input_stream.m_goodbye", + "premote_lazy_input_stream.m_length_needed", + "premote_lazy_input_stream.m_stream_needed", + "premote_lazy_input_stream.r_length_needed", + "premote_lazy_input_stream.r_stream_needed", + "premote_print_job.m_abort_print", + "premote_print_job.m___delete__", + "premote_print_job.m_finalize_print", + "premote_print_job.m_initialize_print", + "premote_print_job.m_page_processed", + "premote_print_job.m_print_initialization_result", + "premote_print_job.m_process_page", + "premote_print_job.m_progress_change", + "premote_print_job.m_state_change", + "premote_print_job.m_status_change", + "premote_print_job.r___delete__", + "premote_sandbox_broker.m_init_crash_reporter", + "premote_sandbox_broker.m_launch_app", + "premote_sandbox_broker.r_launch_app", + "premote_spellcheck_engine.m_check_async", + "premote_spellcheck_engine.m___delete__", + "premote_spellcheck_engine.m_set_dictionaries", + "premote_spellcheck_engine.m_set_dictionary", + "premote_spellcheck_engine.m_set_dictionary_from_list", + "premote_spellcheck_engine.m_suggest", + "premote_spellcheck_engine.r_check_async", + "premote_spellcheck_engine.r___delete__", + "premote_spellcheck_engine.r_set_dictionaries", + "premote_spellcheck_engine.r_set_dictionary", + "premote_spellcheck_engine.r_set_dictionary_from_list", + "premote_spellcheck_engine.r_suggest", + "premote_worker_controller.m_creation_failed", + "premote_worker_controller.m_creation_succeeded", + "premote_worker_controller.m___delete__", + "premote_worker_controller.m_error_received", + "premote_worker_controller.m_exec_service_worker_op", + "premote_worker_controller.m_pfetch_event_op_constructor", + "premote_worker_controller.m_set_service_worker_skip_wait", + "premote_worker_controller.m_shutdown", + "premote_worker_controller.m_terminated", + "premote_worker_controller.r___delete__", + "premote_worker_controller.r_exec_service_worker_op", + "premote_worker_controller.r_pfetch_event_op_constructor", + "premote_worker_controller.r_set_service_worker_skip_wait", + "premote_worker_controller.r_shutdown", + "premote_worker.m_close", + "premote_worker.m_created", + "premote_worker.m___delete__", + "premote_worker.m_error", + "premote_worker.m_exec_op", + "premote_worker.m_exec_service_worker_op", + "premote_worker.m_notify_lock", + "premote_worker.m_pfetch_event_op_proxy_constr", + "premote_worker.m_set_service_worker_skip_wait", + "premote_worker.r___delete__", + "premote_worker.r_exec_service_worker_op", + "premote_worker.r_pfetch_event_op_proxy_constr", + "premote_worker.r_set_service_worker_skip_wait", + "premote_worker_service.m___delete__", + "premote_worker_service.r___delete__", + "psandbox_testing.m_get_special_directory", + "psandbox_testing.m_report_test_results", + "psandbox_testing.m_shut_down", + "psandbox_testing.m_test_completed", + "psandbox_testing.r_get_special_directory", + "pscript_cache.m___delete__", + "pscript_cache.r___delete__", + "pselect_tlsclient_auth_cert.m___delete__", + "pselect_tlsclient_auth_cert.m_tlsclient_auth_cert_selected", + "pselect_tlsclient_auth_cert.r___delete__", + "pservice_worker_container.m___delete__", + "pservice_worker_container.m_get_ready", + "pservice_worker_container.m_get_registration", + "pservice_worker_container.m_get_registrations", + "pservice_worker_container.m_register", + "pservice_worker_container.m_teardown", + "pservice_worker_container.r___delete__", + "pservice_worker_container.r_get_ready", + "pservice_worker_container.r_get_registration", + "pservice_worker_container.r_get_registrations", + "pservice_worker_container.r_register", + "pservice_worker_manager.m___delete__", + "pservice_worker_manager.m_propagate_unregister", + "pservice_worker_manager.m_register", + "pservice_worker_manager.m_unregister", + "pservice_worker_manager.r___delete__", + "pservice_worker.m___delete__", + "pservice_worker.m_post_message", + "pservice_worker.m_teardown", + "pservice_worker.r___delete__", + "pservice_worker_registration.m___delete__", + "pservice_worker_registration.m_fire_update_found", + "pservice_worker_registration.m_get_navigation_preload_state", + "pservice_worker_registration.m_set_navigation_preload_enabl", + "pservice_worker_registration.m_set_navigation_preload_heade", + "pservice_worker_registration.m_teardown", + "pservice_worker_registration.m_unregister", + "pservice_worker_registration.m_update", + "pservice_worker_registration.m_update_state", + "pservice_worker_registration.r___delete__", + "pservice_worker_registration.r_get_navigation_preload_state", + "pservice_worker_registration.r_set_navigation_preload_enabl", + "pservice_worker_registration.r_set_navigation_preload_heade", + "pservice_worker_registration.r_unregister", + "pservice_worker_registration.r_update", + "psession_storage_observer.m___delete__", + "psession_storage_observer.m_delete_me", + "psession_storage_observer.m_observe", + "psession_storage_observer.r___delete__", + "psession_store.m___delete__", + "psession_store.m_flush_tab_state", + "psession_store.m_incremental_session_store_up", + "psession_store.m_reset_session_store", + "psession_store.m_session_store_update", + "psession_store.r___delete__", + "psession_store.r_flush_tab_state", + "pshared_worker.m_close", + "pshared_worker.m___delete__", + "pshared_worker.m_error", + "pshared_worker.m_freeze", + "pshared_worker.m_notify_lock", + "pshared_worker.m_resume", + "pshared_worker.m_suspend", + "pshared_worker.m_terminate", + "pshared_worker.m_thaw", + "pshared_worker.r___delete__", + "psimple_channel.m___delete__", + "psimple_channel.r___delete__", + "psocket_process_bridge.m_init_background", + "psocket_process_bridge.m_test", + "psocket_process.m_accumulate_child_histograms", + "psocket_process.m_accumulate_child_keyed_histo", + "psocket_process.m_add_memory_report", + "psocket_process.m_cache_push_check", + "psocket_process.m_clear_session_cache", + "psocket_process.m_exclude_http2_or_http3", + "psocket_process.m_flush_fogdata", + "psocket_process.m_fogdata", + "psocket_process.m_get_dnscache_entries", + "psocket_process.m_get_http_connection_data", + "psocket_process.m_get_modules_trust", + "psocket_process.m_get_socket_data", + "psocket_process.m_get_untrusted_modules_data", + "psocket_process.m_init", + "psocket_process.m_init_background", + "psocket_process.m_init_crash_reporter", + "psocket_process.m_init_linux_sandbox", + "psocket_process.m_init_profiler", + "psocket_process.m_init_proxy_auto_config_child", + "psocket_process.m_init_sandbox_testing", + "psocket_process.m_init_socket_process_bridge_p", + "psocket_process.m_notify_observer", + "psocket_process.m_observe_http_activity", + "psocket_process.m_odo_hservice_activated", + "psocket_process.m_on_console_message", + "psocket_process.m_on_http_activity_distributor", + "psocket_process.m_palt_service_constructor", + "psocket_process.m_palt_svc_transaction_constru", + "psocket_process.m_pdnsrequest_constructor", + "psocket_process.m_phttp_connection_mgr_constru", + "psocket_process.m_phttp_transaction_constructo", + "psocket_process.m_pinput_channel_throttle_queu", + "psocket_process.m_pnative_dnsresolver_override", + "psocket_process.m_pproxy_config_lookup_constru", + "psocket_process.m_preference_update", + "psocket_process.m_ptrrservice_constructor", + "psocket_process.m_pwebrtc_tcpsocket_constructo", + "psocket_process.m_recheck_dns", + "psocket_process.m_recheck_ipconnectivity", + "psocket_process.m_record_child_events", + "psocket_process.m_record_discarded_data", + "psocket_process.m_request_memory_report", + "psocket_process.m_set_connectivity", + "psocket_process.m_set_offline", + "psocket_process.m_socket_process_telemetry_pin", + "psocket_process.m_test_trigger_metrics", + "psocket_process.m_unblock_untrusted_modules_th", + "psocket_process.m_update_child_keyed_scalars", + "psocket_process.m_update_child_scalars", + "psocket_process.m_update_device_model_id", + "psocket_process.r_cache_push_check", + "psocket_process.r_flush_fogdata", + "psocket_process.r_get_dnscache_entries", + "psocket_process.r_get_http_connection_data", + "psocket_process.r_get_modules_trust", + "psocket_process.r_get_socket_data", + "psocket_process.r_get_untrusted_modules_data", + "psocket_process.r_palt_service_constructor", + "psocket_process.r_palt_svc_transaction_constru", + "psocket_process.r_pdnsrequest_constructor", + "psocket_process.r_phttp_connection_mgr_constru", + "psocket_process.r_phttp_transaction_constructo", + "psocket_process.r_pinput_channel_throttle_queu", + "psocket_process.r_pnative_dnsresolver_override", + "psocket_process.r_pproxy_config_lookup_constru", + "psocket_process.r_ptrrservice_constructor", + "psocket_process.r_pwebrtc_tcpsocket_constructo", + "psocket_process.r_request_memory_report", + "psocket_process.r_test_trigger_metrics", + "pspeech_synthesis.m___delete__", + "pspeech_synthesis.m_initial_voices_and_state", + "pspeech_synthesis.m_is_speaking_changed", + "pspeech_synthesis.m_notify_voices_changed", + "pspeech_synthesis.m_pspeech_synthesis_request_co", + "pspeech_synthesis.m_set_default_voice", + "pspeech_synthesis.m_voice_added", + "pspeech_synthesis.m_voice_removed", + "pspeech_synthesis.r___delete__", + "pspeech_synthesis_request.m_cancel", + "pspeech_synthesis_request.m___delete__", + "pspeech_synthesis_request.m_on_boundary", + "pspeech_synthesis_request.m_on_mark", + "pspeech_synthesis_request.m_on_pause", + "pspeech_synthesis_request.m_on_resume", + "pspeech_synthesis_request.m_on_start", + "pspeech_synthesis_request.m_pause", + "pspeech_synthesis_request.m_resume", + "pspeech_synthesis_request.m_set_audio_output_volume", + "pspeech_synthesis_request.r___delete__", + "pspeech_synthesis.r_pspeech_synthesis_request_co", + "pstream_filter.m_close", + "pstream_filter.m_closed", + "pstream_filter.m_data", + "pstream_filter.m_destroy", + "pstream_filter.m_disconnect", + "pstream_filter.m_error", + "pstream_filter.m_flush_data", + "pstream_filter.m_flushed_data", + "pstream_filter.m_resume", + "pstream_filter.m_resumed", + "pstream_filter.m_start_request", + "pstream_filter.m_stop_request", + "pstream_filter.m_suspend", + "pstream_filter.m_suspended", + "pstream_filter.m_write", + "pstun_addrs_request.m___delete__", + "pstun_addrs_request.m_get_stun_addrs", + "pstun_addrs_request.m_on_mdnsquery_complete", + "pstun_addrs_request.m_on_stun_addrs_available", + "pstun_addrs_request.m_query_mdnshostname", + "pstun_addrs_request.m_register_mdnshostname", + "pstun_addrs_request.m_unregister_mdnshostname", + "pstun_addrs_request.r___delete__", + "ptcpserver_socket.m_callback_accept", + "ptcpserver_socket.m_close", + "ptcpserver_socket.m___delete__", + "ptcpserver_socket.m_request_delete", + "ptcpserver_socket.r___delete__", + "ptcpsocket.m_callback", + "ptcpsocket.m_close", + "ptcpsocket.m_data", + "ptcpsocket.m___delete__", + "ptcpsocket.m_open", + "ptcpsocket.m_request_delete", + "ptcpsocket.m_resume", + "ptcpsocket.m_start_tls", + "ptcpsocket.m_suspend", + "ptcpsocket.m_update_buffered_amount", + "ptcpsocket.r___delete__", + "ptemporary_ipcblob.m___delete__", + "ptemporary_ipcblob.m_file_desc", + "ptemporary_ipcblob.m_operation_done", + "ptemporary_ipcblob.m_operation_failed", + "ptemporary_ipcblob.r___delete__", + "ptest_basic.m_hello", + "ptest_glean_msg_telemetry.m_hello_async", + "ptest_glean_msg_telemetry.r_hello_async", + "ptest_glean_msg_telemetry.m_hello_sync", + "ptest_glean_msg_telemetry.r_hello_sync", + "ptest_many_handles.m_many_handles", + "ptest_shell_command.m___delete__", + "ptest_shell_command.r___delete__", + "ptest_shell.m___delete__", + "ptest_shell.m_execute_command", + "ptest_shell.m_ptest_shell_command_construc", + "ptest_shell.r___delete__", + "ptest_shell.r_ptest_shell_command_construc", + "ptexture.m___delete__", + "ptexture.m_destroy", + "ptexture.m_recycle_texture", + "ptexture.r___delete__", + "ptransport_provider.m___delete__", + "ptransport_provider.r___delete__", + "ptrrservice.m_clear_dnscache", + "ptrrservice.m___delete__", + "ptrrservice.m_init_trrconnection_info", + "ptrrservice.m_notify_network_connectivity_", + "ptrrservice.m_set_confirmation_state", + "ptrrservice.m_set_default_trrconnection_in", + "ptrrservice.m_set_detected_trr_uri", + "ptrrservice.m_update_etc_hosts", + "ptrrservice.m_update_parental_control_enab", + "ptrrservice.m_update_platform_dnsinformati", + "ptrrservice.r___delete__", + "pudpsocket.m_bind", + "pudpsocket.m_callback_closed", + "pudpsocket.m_callback_connected", + "pudpsocket.m_callback_error", + "pudpsocket.m_callback_opened", + "pudpsocket.m_callback_received_data", + "pudpsocket.m_close", + "pudpsocket.m_connect", + "pudpsocket.m___delete__", + "pudpsocket.m_join_multicast", + "pudpsocket.m_leave_multicast", + "pudpsocket.m_outgoing_data", + "pudpsocket.m_request_delete", + "pudpsocket.r___delete__", + "pui_compositor_controller.m_default_clear_color", + "pui_compositor_controller.m_enable_layer_update_notifica", + "pui_compositor_controller.m_fixed_bottom_offset", + "pui_compositor_controller.m_invalidate_and_render", + "pui_compositor_controller.m_max_toolbar_height", + "pui_compositor_controller.m_pause", + "pui_compositor_controller.m_request_screen_pixels", + "pui_compositor_controller.m_resume", + "pui_compositor_controller.m_resume_and_resize", + "pui_compositor_controller.m_root_frame_metrics", + "pui_compositor_controller.m_screen_pixels", + "pui_compositor_controller.m_toolbar_animator_message_fro", + "pui_compositor_controller.r_pause", + "pui_compositor_controller.r_resume", + "pui_compositor_controller.r_resume_and_resize", + "purlclassifier_local.m___delete__", + "purlclassifier_local.r___delete__", + "purlclassifier.m___delete__", + "purlclassifier.r___delete__", + "putility_audio_decoder.m_complete_created_video_bridg", + "putility_audio_decoder.m_init_video_bridge", + "putility_audio_decoder.m_new_content_remote_decoder_m", + "putility_audio_decoder.m_update_media_codecs_supporte", + "putility_audio_decoder.m_update_var", + "putility_process.m_add_memory_report", + "putility_process.m_flush_fogdata", + "putility_process.m_fogdata", + "putility_process.m_init", + "putility_process.m_init_completed", + "putility_process.m_init_crash_reporter", + "putility_process.m_init_profiler", + "putility_process.m_init_sandbox_testing", + "putility_process.m_preference_update", + "putility_process.m_request_memory_report", + "putility_process.m_start_utility_audio_decoder_", + "putility_process.m_test_trigger_metrics", + "putility_process.r_flush_fogdata", + "putility_process.r_request_memory_report", + "putility_process.r_test_trigger_metrics", + "pverify_sslserver_cert.m___delete__", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_f", + "pverify_sslserver_cert.m_on_verified_sslserver_cert_s", + "pverify_sslserver_cert.r___delete__", + "pvideo_bridge.m_ptexture_constructor", + "pvideo_bridge.r_ptexture_constructor", + "pvrgpu.m_notify_puppet_complete", + "pvrgpu.m_puppet_check_for_completion", + "pvrgpu.m_puppet_reset", + "pvrgpu.m_puppet_submit", + "pvrgpu.m_start_vrservice", + "pvrgpu.m_stop_vrservice", + "pvrlayer.m___delete__", + "pvrlayer.m_destroy", + "pvrlayer.m_submit_frame", + "pvrlayer.r___delete__", + "pvr.m_add_memory_report", + "pvrmanager.m_controller_listener_added", + "pvrmanager.m_controller_listener_removed", + "pvrmanager.m___delete__", + "pvrmanager.m_detect_runtimes", + "pvrmanager.m_notify_puppet_command_buffer", + "pvrmanager.m_notify_puppet_reset_complete", + "pvrmanager.m_pvrlayer_constructor", + "pvrmanager.m_refresh_displays", + "pvrmanager.m_reply_gamepad_vibrate_haptic", + "pvrmanager.m_reset_puppet", + "pvrmanager.m_run_puppet", + "pvrmanager.m_set_group_mask", + "pvrmanager.m_set_have_event_listener", + "pvrmanager.m_start_activity", + "pvrmanager.m_start_vrnavigation", + "pvrmanager.m_stop_activity", + "pvrmanager.m_stop_vibrate_haptic", + "pvrmanager.m_stop_vrnavigation", + "pvrmanager.m_update_display_info", + "pvrmanager.m_update_runtime_capabilities", + "pvrmanager.m_vibrate_haptic", + "pvrmanager.r___delete__", + "pvrmanager.r_pvrlayer_constructor", + "pvr.m_init", + "pvr.m_init_complete", + "pvr.m_init_crash_reporter", + "pvr.m_new_gpuvrmanager", + "pvr.m_open_vrcontroller_action_pat", + "pvr.m_open_vrcontroller_manifest_p", + "pvr.m_preference_update", + "pvr.m_request_memory_report", + "pvr.m_update_var", + "pvr.r_request_memory_report", + "pvsync_bridge.m_notify_vsync", + "pvsync.m___delete__", + "pvsync.m_notify", + "pvsync.m_observe", + "pvsync.m_unobserve", + "pvsync.r___delete__", + "pweb_authn_transaction.m_abort", + "pweb_authn_transaction.m_confirm_register", + "pweb_authn_transaction.m_confirm_sign", + "pweb_authn_transaction.m___delete__", + "pweb_authn_transaction.m_destroy_me", + "pweb_authn_transaction.m_request_cancel", + "pweb_authn_transaction.m_request_register", + "pweb_authn_transaction.m_request_sign", + "pweb_authn_transaction.r___delete__", + "pweb_browser_persist_document.m_attributes", + "pweb_browser_persist_document.m___delete__", + "pweb_browser_persist_document.m_init_failure", + "pweb_browser_persist_document.m_pweb_browser_persist_resourc", + "pweb_browser_persist_document.m_pweb_browser_persist_seriali", + "pweb_browser_persist_document.m_set_persist_flags", + "pweb_browser_persist_document.r___delete__", + "pweb_browser_persist_document.r_pweb_browser_persist_resourc", + "pweb_browser_persist_document.r_pweb_browser_persist_seriali", + "pweb_browser_persist_resources.m___delete__", + "pweb_browser_persist_resources.m_visit_browsing_context", + "pweb_browser_persist_resources.m_visit_document", + "pweb_browser_persist_resources.m_visit_resource", + "pweb_browser_persist_resources.r___delete__", + "pweb_browser_persist_serialize.m___delete__", + "pweb_browser_persist_serialize.m_write_data", + "pweb_browser_persist_serialize.r___delete__", + "pweb_gl.m_check_framebuffer_status", + "pweb_gl.m_client_wait_sync", + "pweb_gl.m_create_opaque_framebuffer", + "pweb_gl.m___delete__", + "pweb_gl.m_dispatch_commands", + "pweb_gl.m_drawing_buffer_size", + "pweb_gl.m_finish", + "pweb_gl.m_get_buffer_parameter", + "pweb_gl.m_get_buffer_sub_data", + "pweb_gl.m_get_compile_result", + "pweb_gl.m_get_error", + "pweb_gl.m_get_frag_data_location", + "pweb_gl.m_get_framebuffer_attachment_p", + "pweb_gl.m_get_front_buffer", + "pweb_gl.m_get_front_buffer_snapshot", + "pweb_gl.m_get_indexed_parameter", + "pweb_gl.m_get_internalformat_parameter", + "pweb_gl.m_get_link_result", + "pweb_gl.m_get_number", + "pweb_gl.m_get_query_parameter", + "pweb_gl.m_get_renderbuffer_parameter", + "pweb_gl.m_get_sampler_parameter", + "pweb_gl.m_get_shader_precision_format", + "pweb_gl.m_get_string", + "pweb_gl.m_get_tex_parameter", + "pweb_gl.m_get_uniform", + "pweb_gl.m_get_vertex_attrib", + "pweb_gl.m_initialize", + "pweb_gl.m_is_enabled", + "pweb_gl.m_js_warning", + "pweb_gl.m_on_context_loss", + "pweb_gl.m_on_memory_pressure", + "pweb_gl.m_read_pixels", + "pweb_gl.m_tex_image", + "pweb_gl.m_validate_program", + "pweb_gl.r_check_framebuffer_status", + "pweb_gl.r_client_wait_sync", + "pweb_gl.r_create_opaque_framebuffer", + "pweb_gl.r___delete__", + "pweb_gl.r_drawing_buffer_size", + "pweb_gl.r_finish", + "pweb_gl.r_get_buffer_parameter", + "pweb_gl.r_get_buffer_sub_data", + "pweb_gl.r_get_compile_result", + "pweb_gl.r_get_error", + "pweb_gl.r_get_frag_data_location", + "pweb_gl.r_get_framebuffer_attachment_p", + "pweb_gl.r_get_front_buffer", + "pweb_gl.r_get_front_buffer_snapshot", + "pweb_gl.r_get_indexed_parameter", + "pweb_gl.r_get_internalformat_parameter", + "pweb_gl.r_get_link_result", + "pweb_gl.r_get_number", + "pweb_gl.r_get_query_parameter", + "pweb_gl.r_get_renderbuffer_parameter", + "pweb_gl.r_get_sampler_parameter", + "pweb_gl.r_get_shader_precision_format", + "pweb_gl.r_get_string", + "pweb_gl.r_get_tex_parameter", + "pweb_gl.r_get_uniform", + "pweb_gl.r_get_vertex_attrib", + "pweb_gl.r_initialize", + "pweb_gl.r_is_enabled", + "pweb_gl.r_on_memory_pressure", + "pweb_gl.r_read_pixels", + "pweb_gl.r_validate_program", + "pweb_gpu.m_adapter_destroy", + "pweb_gpu.m_adapter_request_device", + "pweb_gpu.m_bind_group_destroy", + "pweb_gpu.m_bind_group_layout_destroy", + "pweb_gpu.m_buffer_destroy", + "pweb_gpu.m_buffer_drop", + "pweb_gpu.m_buffer_map", + "pweb_gpu.m_buffer_unmap", + "pweb_gpu.m_bump_implicit_bind_group_lay", + "pweb_gpu.m_command_buffer_destroy", + "pweb_gpu.m_command_encoder_action", + "pweb_gpu.m_command_encoder_destroy", + "pweb_gpu.m_command_encoder_finish", + "pweb_gpu.m_compute_pipeline_destroy", + "pweb_gpu.m_create_buffer", + "pweb_gpu.m___delete__", + "pweb_gpu.m_device_action", + "pweb_gpu.m_device_action_with_ack", + "pweb_gpu.m_device_create_shader_module", + "pweb_gpu.m_device_create_swap_chain", + "pweb_gpu.m_device_destroy", + "pweb_gpu.m_device_pop_error_scope", + "pweb_gpu.m_device_push_error_scope", + "pweb_gpu.m_device_uncaptured_error", + "pweb_gpu.m_drop_action", + "pweb_gpu.m_generate_error", + "pweb_gpu.m_implicit_layout_destroy", + "pweb_gpu.m_instance_request_adapter", + "pweb_gpu.m_pipeline_layout_destroy", + "pweb_gpu.m_queue_submit", + "pweb_gpu.m_queue_write_action", + "pweb_gpu.m_render_bundle_destroy", + "pweb_gpu.m_render_pipeline_destroy", + "pweb_gpu.m_sampler_destroy", + "pweb_gpu.m_shader_module_destroy", + "pweb_gpu.m_swap_chain_destroy", + "pweb_gpu.m_swap_chain_present", + "pweb_gpu.m_texture_action", + "pweb_gpu.m_texture_destroy", + "pweb_gpu.m_texture_view_destroy", + "pweb_gpu.r_adapter_request_device", + "pweb_gpu.r_buffer_map", + "pweb_gpu.r___delete__", + "pweb_gpu.r_device_action_with_ack", + "pweb_gpu.r_device_create_shader_module", + "pweb_gpu.r_device_pop_error_scope", + "pweb_gpu.r_instance_request_adapter", + "pweb_render_bridge.m_capture", + "pweb_render_bridge.m_clear_animation_resources", + "pweb_render_bridge.m_clear_cached_resources", + "pweb_render_bridge.m___delete__", + "pweb_render_bridge.m_delete_compositor_animations", + "pweb_render_bridge.m_empty_transaction", + "pweb_render_bridge.m_ensure_connected", + "pweb_render_bridge.m_flush_apz_repaints", + "pweb_render_bridge.m_get_animation_value", + "pweb_render_bridge.m_get_apztest_data", + "pweb_render_bridge.m_get_frame_uniformity", + "pweb_render_bridge.m_get_snapshot", + "pweb_render_bridge.m_invalidate_rendered_frame", + "pweb_render_bridge.m_leave_test_mode", + "pweb_render_bridge.m_new_compositable", + "pweb_render_bridge.m_parent_commands", + "pweb_render_bridge.m_release_compositable", + "pweb_render_bridge.m_schedule_composite", + "pweb_render_bridge.m_set_async_scroll_offset", + "pweb_render_bridge.m_set_async_zoom", + "pweb_render_bridge.m_set_confirmed_target_apzc", + "pweb_render_bridge.m_set_default_clear_color", + "pweb_render_bridge.m_set_display_list", + "pweb_render_bridge.m_set_focus_target", + "pweb_render_bridge.m_set_layers_observer_epoch", + "pweb_render_bridge.m_set_test_sample_time", + "pweb_render_bridge.m_shutdown", + "pweb_render_bridge.m_shutdown_sync", + "pweb_render_bridge.m_start_capture_sequence", + "pweb_render_bridge.m_stop_capture_sequence", + "pweb_render_bridge.m_sync_with_compositor", + "pweb_render_bridge.m_update_resources", + "pweb_render_bridge.m_wr_released_images", + "pweb_render_bridge.m_wr_updated", + "pweb_render_bridge.r___delete__", + "pweb_render_bridge.r_ensure_connected", + "pweb_render_bridge.r_get_animation_value", + "pweb_render_bridge.r_get_apztest_data", + "pweb_render_bridge.r_get_frame_uniformity", + "pweb_render_bridge.r_get_snapshot", + "pweb_render_bridge.r_leave_test_mode", + "pweb_render_bridge.r_set_async_scroll_offset", + "pweb_render_bridge.r_set_async_zoom", + "pweb_render_bridge.r_set_test_sample_time", + "pweb_render_bridge.r_shutdown_sync", + "pweb_render_bridge.r_sync_with_compositor", + "pwebrtc_global.m_clear_log", + "pwebrtc_global.m_clear_stats", + "pwebrtc_global.m___delete__", + "pwebrtc_global.m_get_log", + "pwebrtc_global.m_get_stats", + "pwebrtc_global.m_set_aec_logging", + "pwebrtc_global.m_set_debug_mode", + "pwebrtc_global.r___delete__", + "pwebrtc_global.r_get_log", + "pwebrtc_global.r_get_stats", + "pwebrtc_tcpsocket.m_async_open", + "pwebrtc_tcpsocket.m_close", + "pwebrtc_tcpsocket.m___delete__", + "pwebrtc_tcpsocket.m_on_close", + "pwebrtc_tcpsocket.m_on_connected", + "pwebrtc_tcpsocket.m_on_read", + "pwebrtc_tcpsocket.m_write", + "pwebrtc_tcpsocket.r___delete__", + "pweb_socket_connection.m___delete__", + "pweb_socket_connection.m_drain_socket_data", + "pweb_socket_connection.m_on_data_received", + "pweb_socket_connection.m_on_error", + "pweb_socket_connection.m_on_tcpclosed", + "pweb_socket_connection.m_on_transport_available", + "pweb_socket_connection.m_on_upgrade_failed", + "pweb_socket_connection.m_start_reading", + "pweb_socket_connection.m_write_output_data", + "pweb_socket_connection.r___delete__", + "pweb_socket_event_listener.m_close", + "pweb_socket_event_listener.m___delete__", + "pweb_socket_event_listener.m_frame_received", + "pweb_socket_event_listener.m_frame_sent", + "pweb_socket_event_listener.m_web_socket_closed", + "pweb_socket_event_listener.m_web_socket_created", + "pweb_socket_event_listener.m_web_socket_message_available", + "pweb_socket_event_listener.m_web_socket_opened", + "pweb_socket_event_listener.r___delete__", + "pweb_socket.m_async_open", + "pweb_socket.m_close", + "pweb_socket.m___delete__", + "pweb_socket.m_delete_self", + "pweb_socket.m_on_acknowledge", + "pweb_socket.m_on_binary_message_available", + "pweb_socket.m_on_message_available", + "pweb_socket.m_on_server_close", + "pweb_socket.m_on_start", + "pweb_socket.m_on_stop", + "pweb_socket.m_send_binary_msg", + "pweb_socket.m_send_binary_stream", + "pweb_socket.m_send_msg", + "pweb_socket.r___delete__", + "pwindow_global.m_accumulate_page_use_counters", + "pwindow_global.m_add_blocked_frame_node_by_cl", + "pwindow_global.m_check_permit_unload", + "pwindow_global.m___delete__", + "pwindow_global.m_destroy", + "pwindow_global.m_discover_identity_credential", + "pwindow_global.m_dispatch_security_policy_vio", + "pwindow_global.m_draw_snapshot", + "pwindow_global.m_expect_page_use_counters", + "pwindow_global.m_get_content_blocking_events", + "pwindow_global.m_get_security_info", + "pwindow_global.m_internal_load", + "pwindow_global.m_load_uri", + "pwindow_global.m_make_frame_local", + "pwindow_global.m_make_frame_remote", + "pwindow_global.m_raw_message", + "pwindow_global.m_reload_with_https_only_excep", + "pwindow_global.m_request_restore_tab_content", + "pwindow_global.m_reset_scaling_zoom", + "pwindow_global.m_restore_doc_shell_state", + "pwindow_global.m_restore_tab_content", + "pwindow_global.m_save_storage_access_permissi", + "pwindow_global.m_set_client_info", + "pwindow_global.m_set_container_feature_policy", + "pwindow_global.m_set_document_domain", + "pwindow_global.m_set_is_initial_document", + "pwindow_global.m_set_single_channel_id", + "pwindow_global.m_share", + "pwindow_global.m_update_active_peer_connectio", + "pwindow_global.m_update_bfcache_status", + "pwindow_global.m_update_cookie_jar_settings", + "pwindow_global.m_update_document_csp_settings", + "pwindow_global.m_update_document_has_loaded", + "pwindow_global.m_update_document_has_user_int", + "pwindow_global.m_update_document_principal", + "pwindow_global.m_update_document_security_inf", + "pwindow_global.m_update_document_title", + "pwindow_global.m_update_document_uri", + "pwindow_global.m_update_https_only_status", + "pwindow_global.m_update_sandbox_flags", + "pwindow_global.r_check_permit_unload", + "pwindow_global.r___delete__", + "pwindow_global.r_discover_identity_credential", + "pwindow_global.r_draw_snapshot", + "pwindow_global.r_get_content_blocking_events", + "pwindow_global.r_get_security_info", + "pwindow_global.r_make_frame_remote", + "pwindow_global.r_restore_doc_shell_state", + "pwindow_global.r_restore_tab_content", + "pwindow_global.r_share" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: IPC" + ] + }, + "no_lint": [], + "notification_emails": [ + "nika@mozilla.com" + ], + "reflog-index": { + "first": 13, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ca638b64eac142113ab98f632d5cb7953b9a1a08/ipc/ipdl/metrics.yaml#L13", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_animation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent running JS GC when animating.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L229", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_budget": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Requested GC slice budget.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L201", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_budget_overrun": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "How long a GC slice ran over its budget.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L215", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_budget_was_increased": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether the budget was increased due to taking too long or approaching the incremental limit\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0ec22c005ffbe84e7f87fca56d7d2dc21464b51e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L570", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_effectiveness": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "GC effectiveness, the amount of memory freed divided by main-thread collection time (MB/s)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 50000, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L341", + "type": "custom_distribution", + "unit": "MB/s", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_is_zone_gc": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Is it a zone GC?\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0ec22c005ffbe84e7f87fca56d7d2dc21464b51e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L554", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_mark_gray": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent marking gray GC objects.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L257", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_mark_rate": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of objects marked per ms during GC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 300000, + "range_min": 1000, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L412", + "type": "custom_distribution", + "unit": "objects/ms", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_mark_weak": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent marking GC objects held live through weakmaps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L271", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_max_pause": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Longest GC slice in a GC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L243", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_minor_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Reason (enum value) for initiating a minor GC\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9e9fb040b567067f00f33d7284aa1847fb882fdf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "API", + "EAGER_ALLOC_TRIGGER", + "DESTROY_RUNTIME", + "ROOTS_REMOVED", + "LAST_DITCH", + "TOO_MUCH_MALLOC", + "ALLOC_TRIGGER", + "DEBUG_GC", + "COMPARTMENT_REVIVED", + "RESET", + "OUT_OF_NURSERY", + "EVICT_NURSERY", + "SHARED_MEMORY_LIMIT", + "EAGER_NURSERY_COLLECTION", + "BG_TASK_FINISHED", + "ABORT_GC", + "FULL_WHOLE_CELL_BUFFER", + "FULL_GENERIC_BUFFER", + "FULL_VALUE_BUFFER", + "FULL_CELL_PTR_OBJ_BUFFER", + "FULL_SLOT_BUFFER", + "FULL_SHAPE_BUFFER", + "TOO_MUCH_WASM_MEMORY", + "DISABLE_GENERATIONAL_GC", + "FINISH_GC", + "PREPARE_FOR_TRACING", + "FULL_WASM_ANYREF_BUFFER", + "FULL_CELL_PTR_STR_BUFFER", + "TOO_MUCH_JIT_CODE", + "FULL_CELL_PTR_BIGINT_BUFFER", + "NURSERY_TRAILERS", + "NURSERY_MALLOC_BUFFERS", + "DOM_WINDOW_UTILS", + "COMPONENT_UTILS", + "MEM_PRESSURE", + "CC_FINISHED", + "CC_FORCED", + "LOAD_END", + "UNUSED3", + "PAGE_HIDE", + "NSJSCONTEXT_DESTROY", + "WORKER_SHUTDOWN", + "SET_DOC_SHELL", + "DOM_UTILS", + "DOM_IPC", + "DOM_WORKER", + "INTER_SLICE_GC", + "UNUSED1", + "FULL_GC_TIMER", + "SHUTDOWN_CC", + "UNUSED2", + "USER_INACTIVE", + "XPCONNECT_SHUTDOWN", + "DOCSHELL", + "HTML_PARSER", + "DOM_TESTUTILS", + "PREPARE_FOR_PAGELOAD" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L854", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_minor_reason_long": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Reason (enum value) that caused a long (>1ms) minor GC\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9e9fb040b567067f00f33d7284aa1847fb882fdf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "API", + "EAGER_ALLOC_TRIGGER", + "DESTROY_RUNTIME", + "ROOTS_REMOVED", + "LAST_DITCH", + "TOO_MUCH_MALLOC", + "ALLOC_TRIGGER", + "DEBUG_GC", + "COMPARTMENT_REVIVED", + "RESET", + "OUT_OF_NURSERY", + "EVICT_NURSERY", + "SHARED_MEMORY_LIMIT", + "EAGER_NURSERY_COLLECTION", + "BG_TASK_FINISHED", + "ABORT_GC", + "FULL_WHOLE_CELL_BUFFER", + "FULL_GENERIC_BUFFER", + "FULL_VALUE_BUFFER", + "FULL_CELL_PTR_OBJ_BUFFER", + "FULL_SLOT_BUFFER", + "FULL_SHAPE_BUFFER", + "TOO_MUCH_WASM_MEMORY", + "DISABLE_GENERATIONAL_GC", + "FINISH_GC", + "PREPARE_FOR_TRACING", + "FULL_WASM_ANYREF_BUFFER", + "FULL_CELL_PTR_STR_BUFFER", + "TOO_MUCH_JIT_CODE", + "FULL_CELL_PTR_BIGINT_BUFFER", + "NURSERY_TRAILERS", + "NURSERY_MALLOC_BUFFERS", + "DOM_WINDOW_UTILS", + "COMPONENT_UTILS", + "MEM_PRESSURE", + "CC_FINISHED", + "CC_FORCED", + "LOAD_END", + "UNUSED3", + "PAGE_HIDE", + "NSJSCONTEXT_DESTROY", + "WORKER_SHUTDOWN", + "SET_DOC_SHELL", + "DOM_UTILS", + "DOM_IPC", + "DOM_WORKER", + "INTER_SLICE_GC", + "UNUSED1", + "FULL_GC_TIMER", + "SHUTDOWN_CC", + "UNUSED2", + "USER_INACTIVE", + "XPCONNECT_SHUTDOWN", + "DOCSHELL", + "HTML_PARSER", + "DOM_TESTUTILS", + "PREPARE_FOR_PAGELOAD" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L868", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_mmu_50": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Minimum percentage of time spent outside GC over any 50ms window.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L500", + "type": "custom_distribution", + "unit": "percentage", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_non_incremental": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Was the GC non-incremental?\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0ec22c005ffbe84e7f87fca56d7d2dc21464b51e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L618", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_non_incremental_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Reason for performing a non-incremental GC (see js::GCAbortReason)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9e9fb040b567067f00f33d7284aa1847fb882fdf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "None", + "NonIncrementalRequested", + "AbortRequested", + "Unused1", + "IncrementalDisabled", + "ModeChange", + "MallocBytesTrigger", + "GCBytesTrigger", + "ZoneChange", + "CompartmentRevived", + "GrayRootBufferingFailed", + "JitCodeBytesTrigger" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L840", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_nursery_bytes": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Size of the GC nursery in bytes.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L327", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_nursery_promotion_rate": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The percentage of nursery objects that were promoted to the tenured heap.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L518", + "type": "custom_distribution", + "unit": "percentage", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_parallel_mark_interruptions": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of interruptions/donations per slice during parallel marking.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 500, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L465", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_parallel_mark_speedup": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Ratio of total helper thread time spent marking to main thread time for parallel marking, scaled by 100.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 800, + "range_min": 50, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L448", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_parallel_mark_used": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether parallel marking was used for this collection\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0ec22c005ffbe84e7f87fca56d7d2dc21464b51e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L634", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_parallel_mark_utilization": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Ratio of helper thread time spent marking to total helper thread time for parallel marking.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L482", + "type": "custom_distribution", + "unit": "percentage", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_pretenure_count": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "How many allocation sites were selected for pretenuring by a minor GC\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L395", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Reason (enum value) for initiating a GC\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9e9fb040b567067f00f33d7284aa1847fb882fdf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "API", + "EAGER_ALLOC_TRIGGER", + "DESTROY_RUNTIME", + "ROOTS_REMOVED", + "LAST_DITCH", + "TOO_MUCH_MALLOC", + "ALLOC_TRIGGER", + "DEBUG_GC", + "COMPARTMENT_REVIVED", + "RESET", + "OUT_OF_NURSERY", + "EVICT_NURSERY", + "SHARED_MEMORY_LIMIT", + "EAGER_NURSERY_COLLECTION", + "BG_TASK_FINISHED", + "ABORT_GC", + "FULL_WHOLE_CELL_BUFFER", + "FULL_GENERIC_BUFFER", + "FULL_VALUE_BUFFER", + "FULL_CELL_PTR_OBJ_BUFFER", + "FULL_SLOT_BUFFER", + "FULL_SHAPE_BUFFER", + "TOO_MUCH_WASM_MEMORY", + "DISABLE_GENERATIONAL_GC", + "FINISH_GC", + "PREPARE_FOR_TRACING", + "FULL_WASM_ANYREF_BUFFER", + "FULL_CELL_PTR_STR_BUFFER", + "TOO_MUCH_JIT_CODE", + "FULL_CELL_PTR_BIGINT_BUFFER", + "NURSERY_TRAILERS", + "NURSERY_MALLOC_BUFFERS", + "DOM_WINDOW_UTILS", + "COMPONENT_UTILS", + "MEM_PRESSURE", + "CC_FINISHED", + "CC_FORCED", + "LOAD_END", + "UNUSED3", + "PAGE_HIDE", + "NSJSCONTEXT_DESTROY", + "WORKER_SHUTDOWN", + "SET_DOC_SHELL", + "DOM_UTILS", + "DOM_IPC", + "DOM_WORKER", + "INTER_SLICE_GC", + "UNUSED1", + "FULL_GC_TIMER", + "SHUTDOWN_CC", + "UNUSED2", + "USER_INACTIVE", + "XPCONNECT_SHUTDOWN", + "DOCSHELL", + "HTML_PARSER", + "DOM_TESTUTILS", + "PREPARE_FOR_PAGELOAD" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L650", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_reset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Was an incremental GC canceled?\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0ec22c005ffbe84e7f87fca56d7d2dc21464b51e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L602", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_reset_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Reason for cancelling an ongoing GC (see js::GCAbortReason)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9e9fb040b567067f00f33d7284aa1847fb882fdf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "None", + "NonIncrementalRequested", + "AbortRequested", + "Unused1", + "IncrementalDisabled", + "ModeChange", + "MallocBytesTrigger", + "GCBytesTrigger", + "ZoneChange", + "CompartmentRevived", + "GrayRootBufferingFailed", + "JitCodeBytesTrigger" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L813", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_slice_count": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of slices in an incremental GC for the main runtime.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 200, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L430", + "type": "custom_distribution", + "unit": "objects/ms", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_slice_was_long": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a GC slice took 1.5 times or 5ms more than its budget\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0ec22c005ffbe84e7f87fca56d7d2dc21464b51e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L586", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_slow_phase": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "The longest phase in any slice that goes over 2x the budget. The phase values are defined in js/src/gc/GenerateStatsPhases.py.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9e9fb040b567067f00f33d7284aa1847fb882fdf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "MUTATOR", + "GC_BEGIN", + "MARK_CCWS", + "MARK_STACK", + "MARK_RUNTIME_DATA", + "MARK_EMBEDDING", + "MARK_ROOTS", + "EVICT_NURSERY_FOR_MAJOR_GC", + "WAIT_BACKGROUND_THREAD", + "UNMARK", + "UNMARK_WEAKMAPS", + "MARK_DISCARD_CODE", + "RELAZIFY_FUNCTIONS", + "PURGE", + "PURGE_PROP_MAP_TABLES", + "PURGE_SOURCE_URLS", + "JOIN_PARALLEL_TASKS", + "PREPARE", + "MARK_DELAYED", + "MARK_GRAY_WEAK", + "MARK_WEAK", + "MARK_INCOMING_GRAY", + "MARK_GRAY", + "PARALLEL_MARK_MARK", + "PARALLEL_MARK_WAIT", + "PARALLEL_MARK_OTHER", + "PARALLEL_MARK", + "MARK", + "WEAK_ZONES_CALLBACK", + "WEAK_COMPARTMENT_CALLBACK", + "FINALIZE_START", + "UPDATE_ATOMS_BITMAP", + "SWEEP_ATOMS_TABLE", + "SWEEP_DISCARD_CODE", + "SWEEP_INNER_VIEWS", + "SWEEP_CC_WRAPPER", + "SWEEP_BASE_SHAPE", + "SWEEP_INITIAL_SHAPE", + "SWEEP_REGEXP", + "SWEEP_COMPRESSION", + "SWEEP_WEAKMAPS", + "SWEEP_UNIQUEIDS", + "SWEEP_WEAK_POINTERS", + "SWEEP_FINALIZATION_OBSERVERS", + "SWEEP_JIT_DATA", + "SWEEP_WEAK_CACHES", + "SWEEP_MISC", + "SWEEP_COMPARTMENTS", + "FINALIZE_OBJECT", + "FINALIZE_NON_OBJECT", + "SWEEP_PROP_MAP", + "FINALIZE_END", + "DESTROY", + "FIND_DEAD_COMPARTMENTS", + "SWEEP", + "COMPACT_MOVE", + "COMPACT_UPDATE_CELLS", + "COMPACT_UPDATE", + "COMPACT", + "DECOMMIT", + "GC_END", + "MINOR_GC", + "EVICT_NURSERY", + "TRACE_HEAP" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L721", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_slow_task": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:16", + "last": "2025-02-04 14:27:22" + }, + "description": "The longest parallel task in any slice that goes over 2x the budget. The phase values are defined in js/src/gc/GenerateStatsPhases.py.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9e9fb040b567067f00f33d7284aa1847fb882fdf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "MUTATOR", + "GC_BEGIN", + "MARK_CCWS", + "MARK_STACK", + "MARK_RUNTIME_DATA", + "MARK_EMBEDDING", + "MARK_ROOTS", + "EVICT_NURSERY_FOR_MAJOR_GC", + "WAIT_BACKGROUND_THREAD", + "UNMARK", + "UNMARK_WEAKMAPS", + "MARK_DISCARD_CODE", + "RELAZIFY_FUNCTIONS", + "PURGE", + "PURGE_PROP_MAP_TABLES", + "PURGE_SOURCE_URLS", + "JOIN_PARALLEL_TASKS", + "PREPARE", + "MARK_DELAYED", + "MARK_GRAY_WEAK", + "MARK_WEAK", + "MARK_INCOMING_GRAY", + "MARK_GRAY", + "PARALLEL_MARK_MARK", + "PARALLEL_MARK_WAIT", + "PARALLEL_MARK_OTHER", + "PARALLEL_MARK", + "MARK", + "WEAK_ZONES_CALLBACK", + "WEAK_COMPARTMENT_CALLBACK", + "FINALIZE_START", + "UPDATE_ATOMS_BITMAP", + "SWEEP_ATOMS_TABLE", + "SWEEP_DISCARD_CODE", + "SWEEP_INNER_VIEWS", + "SWEEP_CC_WRAPPER", + "SWEEP_BASE_SHAPE", + "SWEEP_INITIAL_SHAPE", + "SWEEP_REGEXP", + "SWEEP_COMPRESSION", + "SWEEP_WEAKMAPS", + "SWEEP_UNIQUEIDS", + "SWEEP_WEAK_POINTERS", + "SWEEP_FINALIZATION_OBSERVERS", + "SWEEP_JIT_DATA", + "SWEEP_WEAK_CACHES", + "SWEEP_MISC", + "SWEEP_COMPARTMENTS", + "FINALIZE_OBJECT", + "FINALIZE_NON_OBJECT", + "SWEEP_PROP_MAP", + "FINALIZE_END", + "DESTROY", + "FIND_DEAD_COMPARTMENTS", + "SWEEP", + "COMPACT_MOVE", + "COMPACT_UPDATE_CELLS", + "COMPACT_UPDATE", + "COMPACT", + "DECOMMIT", + "GC_END", + "MINOR_GC", + "EVICT_NURSERY", + "TRACE_HEAP" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L799", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_task_start_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Delay between queuing a GC task and the task starting.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L313", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_tenured_survival_rate": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The percentage of tenured GC things that survived a collection.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L536", + "type": "custom_distribution", + "unit": "percentage", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_time_between": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent in between garbage collections for the main runtime.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L285", + "time_unit": "second", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_time_between_slices": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932957" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent in between garbage collections for the main runtime.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L299", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_zone_count": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Total number of GC zones\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L359", + "type": "custom_distribution", + "unit": "zones", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_gc_zones_collected": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1932686" + ], + "dates": { + "first": "2025-01-15 15:30:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of zones collected in a zone GC.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "33f1f7c25209c2430b85d3e618d99c0f0bb34de4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dev-telemetry-gc-alerts@mozilla.org", + "jcoppeard@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L377", + "type": "custom_distribution", + "unit": "zones", + "version": 0, + "repos": [ + "gecko" + ] + }, + "javascript_ion_compile_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918166" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918166" + ], + "dates": { + "first": "2024-11-15 17:15:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in microseconds of an Ion compilation.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5f37285c77c42164090fef6fd48bb73ed180f9a6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dpalmeiro@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L58", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "localdomstorage_preload_pending_on_first_access": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "True when we had to wait for a pending preload on first access to localStorage data, false otherwise\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram LOCALDOMSTORAGE_PRELOAD_PENDING_ON_FIRST_ACCESS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: localStorage & sessionStorage" + ] + }, + "no_lint": [], + "notification_emails": [ + "storage-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/storage/metrics.yaml#L31", + "telemetry_mirror": "h#LOCALDOMSTORAGE_PRELOAD_PENDING_ON_FIRST_ACCESS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "localdomstorage_shutdown_database": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time to flush and close the localStorage database (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram LOCALDOMSTORAGE_SHUTDOWN_DATABASE_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: localStorage & sessionStorage" + ] + }, + "no_lint": [], + "notification_emails": [ + "storage-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/storage/metrics.yaml#L14", + "telemetry_mirror": "LOCALDOMSTORAGE_SHUTDOWN_DATABASE_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "localstorage_database_request_allow_to_close_response_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1925205" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1925205" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-12 09:49:43", + "last": "2025-02-04 14:27:22" + }, + "description": "Time it took between sending PBackgroundLSDatabase::RequestAllowToClose and receiving PBackgroundLSDatabase::AllowToClose message. These messages are issued when QuotaManager is shutting down or is aborting operations for a particular origin or process.\n", + "disabled": false, + "expires": 139, + "gecko_datapoint": "", + "git-commits": { + "first": "7154a203678c99efd69d38224b8a264ab3d57b6c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: localStorage & sessionStorage" + ] + }, + "no_lint": [], + "notification_emails": [ + "jvarga@mozilla.com", + "storage-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/localstorage/metrics.yaml#L92", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ls_preparedatastore_processing_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 00:05:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Time it took for the parent process to prepare a Datastore. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. When a Datastore is already preloaded, the preparation is usually fast since it doesn't need to do any I/O. If an error occurs, the time is not recorded. In future, we might want to introduce additional separate metrics for different types of datastore preparations (data needs to be loaded from disk, data already available, etc.)\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "f39e7eba0d82f06e60a238c5eac50cd288c627dd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: localStorage & sessionStorage" + ] + }, + "no_lint": [], + "notification_emails": [ + "hsingh@mozilla.com", + "jvarga@mozilla.com", + "storage-telemetry@mozilla.com", + "storage-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/localstorage/metrics.yaml#L35", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ls_preparelsdatabase_processing_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 00:05:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Time it took for the content process to fully prepare a new LSDatabase, including any time required to prepare a Datastore in the parent. This duration can be significantly affected by Datastore preloading, which is triggered when a page begins to load. If an error occurs, the time is not recorded.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "f39e7eba0d82f06e60a238c5eac50cd288c627dd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: localStorage & sessionStorage" + ] + }, + "no_lint": [], + "notification_emails": [ + "hsingh@mozilla.com", + "jvarga@mozilla.com", + "storage-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/localstorage/metrics.yaml#L14", + "time_unit": "microsecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ls_request_recv_cancellation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 00:05:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Upticks whenever a LS request cancellation message is received. This includes requests for ensuring either LSDatabase or LSObserver in the child.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "f39e7eba0d82f06e60a238c5eac50cd288c627dd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: localStorage & sessionStorage" + ] + }, + "no_lint": [], + "notification_emails": [ + "hsingh@mozilla.com", + "jvarga@mozilla.com", + "storage-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/localstorage/metrics.yaml#L75", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ls_request_send_cancellation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1590635" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 00:05:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Upticks whenever a LS request cancellation message is sent. This includes requests for ensuring either LSDatabase or LSObserver.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "f39e7eba0d82f06e60a238c5eac50cd288c627dd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: localStorage & sessionStorage" + ] + }, + "no_lint": [], + "notification_emails": [ + "hsingh@mozilla.com", + "jvarga@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/localstorage/metrics.yaml#L60", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mathml_doc_count": { + "bugs": [ + "https://bugzil.la/1362187", + "https://bugzil.la/1538985", + "https://bugzil.la/1590350" + ], + "data_reviews": [ + "https://bugzil.la/1362187", + "https://bugzil.la/1538985", + "https://bugzil.la/1590350" + ], + "dates": { + "first": "2024-10-24 10:52:57", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of documents that contained enabled MathML elements. This metric was generated to correspond to the Legacy Telemetry scalar mathml.doc_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9c9981f0e34ea7672bc2d1302e55215436c75190", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "emilio@mozilla.com", + "fred.wang@free.fr", + "dev-tech-layout@lists.mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L583", + "telemetry_mirror": "MATHML_DOC_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_audible_play_time_percent": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1678373" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1678373" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Percentage of time spent playing media with an audible audio track, regardless of the volume. Keyed by audio-only or video presence.\nThis metric was generated to correspond to the Legacy Telemetry linear histogram AUDIBLE_PLAY_TIME_PERCENT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L391", + "telemetry_mirror": "AUDIBLE_PLAY_TIME_PERCENT", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_codec_used": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Count of use of audio/video codecs in HTMLMediaElements and WebAudio. Those with 'resource' prefix are approximate; report based on HTTP ContentType or sniffing. Those with 'webaudio' prefix are for WebAudio.\nThis metric was generated to correspond to the Legacy Telemetry count histogram MEDIA_CODEC_USED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L690", + "telemetry_mirror": "h#MEDIA_CODEC_USED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_decode_error_per_mime_type": { + "bugs": [ + "https://bugzil.la/1688775", + "https://bugzil.la/1804291" + ], + "data_reviews": [ + "https://bugzil.la/1688775", + "https://bugzil.la/1804291" + ], + "dates": { + "first": "2024-10-18 10:58:17", + "last": "2024-11-14 06:18:45" + }, + "description": "Count the number of times the media with a specific mime type (Eg. audio/vorbis, that would be used as the key) encounters a decode error during playback. This metric was generated to correspond to the Legacy Telemetry scalar media.decode_error_per_mime_type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "df692e9351ef8e8575ba93281bb82c12b65b14ae", + "last": "3fc737cf8e48371bafa4f2bc882981623ea0a471" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3fc737cf8e48371bafa4f2bc882981623ea0a471/dom/media/metrics.yaml#L260", + "telemetry_mirror": "MEDIA_DECODE_ERROR_PER_MIME_TYPE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_element_in_page_count": { + "bugs": [ + "https://bugzil.la/1476456", + "https://bugzil.la/1499803", + "https://bugzil.la/1570634", + "https://bugzil.la/1652108" + ], + "data_reviews": [ + "https://bugzil.la/1476456", + "https://bugzil.la/1499803", + "https://bugzil.la/1570634", + "https://bugzil.la/1652108" + ], + "dates": { + "first": "2024-10-18 10:58:17", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times a document hierarchy contained at least one HTMLMediaElement. In addition, the telemetry probe 'MIXED_CONTENT_UNBLOCK_COUNTER' records the total number of loaded top level content documents, which can help us calculate the result of the percentage of documents using media. This metric was generated to correspond to the Legacy Telemetry scalar media.element_in_page_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "df692e9351ef8e8575ba93281bb82c12b65b14ae", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L248", + "telemetry_mirror": "MEDIA_ELEMENT_IN_PAGE_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1929335" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1929335" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-14 06:18:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the error details happened on a media element.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "error_name": { + "description": "The name of the internal error.", + "type": "string" + }, + "error_type": { + "description": "The error type defined in MediaError.webidl.", + "type": "string" + }, + "key_system": { + "description": "The value indicates the key system in use when the error occurred. It will be null if the error is related to non-EME playback.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "faab35ba4eb2d97f40b1acf233cbe7f3476cde10", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L318", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_media_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1678373" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1678373" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing media in milliseconds, keyed by its content (Audio and video, audio only, video only, audio and video but audio inaudible, audio and video but audio muted).\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram MEDIA_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L372", + "telemetry_mirror": "MEDIA_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_mp4_parse_num_sample_description_entries": { + "bucket_count": 6, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513651" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513651" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of entries in the sample description box (stsd) for a track in an mp4. Recorded each time we process a track's metadata while parsing mp4s.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram MEDIA_MP4_PARSE_NUM_SAMPLE_DESCRIPTION_ENTRIES.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 5, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/mp4/metrics.yaml#L56", + "telemetry_mirror": "MEDIA_MP4_PARSE_NUM_SAMPLE_DESCRIPTION_ENTRIES", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_mp4_parse_sample_description_entries_have_multiple_codecs": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513651" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513651" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Records if multiple codecs are present in a track's sample description entries. Recorded each time we process a track's metadata while parsing mp4s.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram MEDIA_MP4_PARSE_SAMPLE_DESCRIPTION_ENTRIES_HAVE_MULTIPLE_CODECS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/mp4/metrics.yaml#L14", + "telemetry_mirror": "h#MEDIA_MP4_PARSE_SAMPLE_DESCRIPTION_ENTRIES_HAVE_MULTIPLE_CODECS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_mp4_parse_sample_description_entries_have_multiple_crypto": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513651" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513651" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Records if multiple sets of crypto info are present in a track's sample description entries. Recorded each time we process a track's metadata while parsing mp4s.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram MEDIA_MP4_PARSE_SAMPLE_DESCRIPTION_ENTRIES_HAVE_MULTIPLE_CRYPTO.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/mp4/metrics.yaml#L35", + "telemetry_mirror": "h#MEDIA_MP4_PARSE_SAMPLE_DESCRIPTION_ENTRIES_HAVE_MULTIPLE_CRYPTO", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_mse_source_buffer_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699249", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1848211" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1699249", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1848211" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Count the actual or possible (because we don't support some of them for now) usage amount for each media mime type used in MSE. We collect this data in MediaSource's `AddSourceBuffer()` and `IsTypeSupported()`.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram MSE_SOURCE_BUFFER_TYPE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "VideoHevc", + "VideoWebm", + "AudioWebm", + "VideoMp4", + "AudioMp4", + "VideoMp2t", + "AudioMp2t", + "AudioMpeg", + "AudioAac" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L708", + "telemetry_mirror": "h#MSE_SOURCE_BUFFER_TYPE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_muted_play_time_percent": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1678373" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1678373" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Percentage of time spent playing media that has an audio track, with the audio muted. Keyed by audio-only or video presence.\nThis metric was generated to correspond to the Legacy Telemetry linear histogram MUTED_PLAY_TIME_PERCENT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L412", + "telemetry_mirror": "MUTED_PLAY_TIME_PERCENT", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_playback_decode_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1929335" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1929335" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-15 14:44:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the decode error details.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "decoder_name": { + "description": "The name of the decoder when the error occurred.", + "type": "string" + }, + "error_name": { + "description": "The name of the error.", + "type": "string" + }, + "is_hardware_accelerated": { + "description": "True if the decoder used when the error occurred is a hardware decoder.", + "type": "boolean" + }, + "key_system": { + "description": "The value indicates the key system in use when the error occurred. It will be null if the error is related to non-EME playback.\n", + "type": "string" + }, + "mime_type": { + "description": "The mime type of the media track when the error occurred.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "937d8e66a5bfe2fc8eb9aa0080629ce7f8dd6cc6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L212", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_playback_device_hardware_decoder_support": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892516" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892516#c4" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-30 00:02:26", + "last": "2025-02-04 14:27:22" + }, + "description": "The results of hardware decoder support for different video codecs. True means that codec can be decoded by hardware on user's device.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e1eb3ce73cc8815a07c961865e39dadd88385085", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "h264", + "vp8", + "vp9", + "av1", + "hevc" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L176", + "telemetry_mirror": "MEDIA_DEVICE_HARDWARE_DECODING_SUPPORT", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_playback_first_frame_loaded": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882205" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882205" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The time that the media pipeline takes to load the first video frame.", + "disabled": false, + "expires": "never", + "extra_keys": { + "buffering_time": { + "description": "How long (in milliseconds) does the our media pipeline has been spent on the buffering state before the first frame is loaded.", + "type": "quantity" + }, + "decoder_name": { + "description": "The name of video decoder used for playback.", + "type": "string" + }, + "first_frame_loaded_time": { + "description": "How long (in milliseconds) does the our media pipeline take to load the first video frame from \"the creation of MDSM\" to \"the first frame loaded\".", + "type": "quantity" + }, + "hls_decoder": { + "description": "This value will only be set on Android. It tells that whether playback is performed by the HLS decoder, which utilizes the external player to play video.", + "type": "boolean" + }, + "is_hardware_decoding": { + "description": "True if the first frame is decoded by a hardware decoder.", + "type": "boolean" + }, + "is_hdr": { + "description": "True if the playback is from a HDR video content.", + "type": "boolean" + }, + "key_system": { + "description": "The key system used for the EME playback if exists", + "type": "string" + }, + "metadata_loaded_time": { + "description": "How long (in milliseconds) does the our media pipeline take to load the metadata, which happens before finishing loading the first frame.", + "type": "quantity" + }, + "playback_type": { + "description": "The type of the playback. The value could be one of following (1) Non-MSE playback (2) MSE playback (3) EME playback // Following are Windows-only (4) Non-MSE media-engine playback (5) MSE media-engine playback (6) EME media-engine playback", + "type": "string" + }, + "resolution": { + "description": "The video resolution used for playback", + "type": "string" + }, + "total_waiting_data_time": { + "description": "How long (in milliseconds) does the our media pipeline has been in a state of waiting video data due to lacking of data before the first frame is loaded.", + "type": "quantity" + }, + "video_codec": { + "description": "The video codec used for playback", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L101", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_playback_not_supported_video_per_mime_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1893523" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1893523#c9" + ], + "dates": { + "first": "2024-05-16 00:06:33", + "last": "2025-02-04 14:27:22" + }, + "description": "Count the amount of times where video playback is failed to start due to the mime type is not supported by Firefox. The result is accumulated per mime type, eg. video/hevc.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c17ebc98c24d19fdf32e101cdb3a7f7021d57bf3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L200", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_clearkey_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662212", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662212", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing Clearkey encrypted video in milliseconds.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_CLEARKEY_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L537", + "telemetry_mirror": "VIDEO_CLEARKEY_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_dropped_compositor_frames_proportion_exponential": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1761994" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1761994" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Ratio of compositor dropped frames per total decoded frames scaled by 10,000 between starting and stopping a video\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_DROPPED_COMPOSITOR_FRAMES_PROPORTION_EXPONENTIAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 10000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L668", + "telemetry_mirror": "VIDEO_DROPPED_COMPOSITOR_FRAMES_PROPORTION_EXPONENTIAL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_dropped_decoded_frames_proportion_exponential": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1761994" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1761994" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Ratio of decoder dropped frames per total decoded frames scaled by 10,000 between starting and stopping a video\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_DROPPED_DECODED_FRAMES_PROPORTION_EXPONENTIAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 10000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L626", + "telemetry_mirror": "VIDEO_DROPPED_DECODED_FRAMES_PROPORTION_EXPONENTIAL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_dropped_frames_proportion": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238433", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238433", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Percentage of frames decoded frames dropped between starting and stopping a video\nThis metric was generated to correspond to the Legacy Telemetry linear histogram VIDEO_DROPPED_FRAMES_PROPORTION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L575", + "telemetry_mirror": "VIDEO_DROPPED_FRAMES_PROPORTION", + "type": "custom_distribution", + "unit": "percentage", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_dropped_frames_proportion_exponential": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238433", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1752207", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1755363" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1238433", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1752207", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1755363" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Ratio of dropped frames per total decoded frames scaled by 10,000 between starting and stopping a video\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_DROPPED_FRAMES_PROPORTION_EXPONENTIAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 10000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L599", + "telemetry_mirror": "VIDEO_DROPPED_FRAMES_PROPORTION_EXPONENTIAL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_dropped_sink_frames_proportion_exponential": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1761994" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1761994" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Ratio of sink dropped frames per total decoded frames scaled by 10,000 between starting and stopping a video\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_DROPPED_SINK_FRAMES_PROPORTION_EXPONENTIAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 10000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L647", + "telemetry_mirror": "VIDEO_DROPPED_SINK_FRAMES_PROPORTION_EXPONENTIAL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_encrypted_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662212", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662212", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing encrypted video in milliseconds.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_ENCRYPTED_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L518", + "telemetry_mirror": "VIDEO_ENCRYPTED_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_hardware_decoding_support": { + "bugs": [ + "https://bugzil.la/1733722", + "https://bugzil.la/1754657", + "https://bugzil.la/1811157" + ], + "data_reviews": [ + "https://bugzil.la/1733722", + "https://bugzil.la/1754657", + "https://bugzil.la/1811157" + ], + "dates": { + "first": "2024-10-18 10:58:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Record whether hardware decoding is supported for the specific video codec. The key is the type of video codec, eg. video/vp9. This metric was generated to correspond to the Legacy Telemetry scalar media.video_hardware_decoding_support.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "df692e9351ef8e8575ba93281bb82c12b65b14ae", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "permit_non_commutative_operations_over_ipc": true, + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L273", + "telemetry_mirror": "MEDIA_VIDEO_HARDWARE_DECODING_SUPPORT", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_hd_hardware_decoding_support": { + "bugs": [ + "https://bugzil.la/1741286", + "https://bugzil.la/1754657", + "https://bugzil.la/1811157" + ], + "data_reviews": [ + "https://bugzil.la/1741286", + "https://bugzil.la/1754657", + "https://bugzil.la/1811157" + ], + "dates": { + "first": "2024-10-18 10:58:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Record whether hardware decoding is supported for the specific video codec, this only records video in HD (1280*720) or higher resultion. The key is the type of video codec, eg. video/vp9. This metric was generated to correspond to the Legacy Telemetry scalar media.video_hd_hardware_decoding_support.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "df692e9351ef8e8575ba93281bb82c12b65b14ae", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "permit_non_commutative_operations_over_ipc": true, + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L295", + "telemetry_mirror": "MEDIA_VIDEO_HD_HARDWARE_DECODING_SUPPORT", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_hdr_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1777264" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1777264" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing HDR video in milliseconds.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_HDR_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com", + "bwerth@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L500", + "telemetry_mirror": "VIDEO_HDR_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_hidden_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1285419", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1285419", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing video while element is hidden, in milliseconds.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_HIDDEN_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L450", + "telemetry_mirror": "VIDEO_HIDDEN_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_hidden_play_time_percentage": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1287987", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1287987", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Percentage of total time spent playing video while element is hidden. Keyed by audio presence and by height ranges (boundaries: 240. 480, 576, 720, 1080, 2160), e.g.: 'V,02160'; and 'All' will accumulate all percentages. This is reported whenever the decoder stops. (eg. pausing media, encountering an error, changing to a new resource, page goes to the bf-cached or page gets discarded)\nThis metric was generated to correspond to the Legacy Telemetry linear histogram VIDEO_HIDDEN_PLAY_TIME_PERCENTAGE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L471", + "telemetry_mirror": "VIDEO_HIDDEN_PLAY_TIME_PERCENTAGE", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1261955", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1127646", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1567604", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1261955", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1127646", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1570634", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1567604", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing video in milliseconds.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L347", + "telemetry_mirror": "VIDEO_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_visible_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1723799" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1723799" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing visible video in milliseconds.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_VISIBLE_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L433", + "telemetry_mirror": "VIDEO_VISIBLE_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "media_video_widevine_play_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662212", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1662212", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1685399" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total time spent playing Widevine encrypted video in milliseconds.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram VIDEO_WIDEVINE_PLAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/metrics.yaml#L556", + "telemetry_mirror": "VIDEO_WIDEVINE_PLAY_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mediadrm_decryption": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928183" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928183" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-07 00:25:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the statuses related with the media decryption.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f1c97ea3cc5c3a4638b7993c521f0814883689ce", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "has_hardware_decryption", + "has_hardware_clearlead", + "has_software_clearlead", + "has_hdcp22_plus", + "has_wmf" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/eme/metrics.yaml#L43", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mediadrm_eme_playback": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882567" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1882567#3" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-03 00:40:21", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the EME play time with the video codec and resolutions.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "key_system": { + "description": "The key system used for the EME playback", + "type": "string" + }, + "played_time": { + "description": "How many second the EME content has been played since last record", + "type": "quantity" + }, + "resolution": { + "description": "The video resolution used for EME playback", + "type": "string" + }, + "video_codec": { + "description": "The video codec used for EME playback", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "3ebcca1292df89ae7076ce5077aac39c638dcafa", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Audio/Video", + "Core :: Audio/Video: Playback" + ] + }, + "no_lint": [], + "notification_emails": [ + "media-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/eme/metrics.yaml#L14", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "memory_phc_slop": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829127", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892149" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829127", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892149" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Over-allocation due to PHC's rounding (aka internal fragmentation). Measured in bytes.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram MEMORY_PHC_SLOP.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8c8b3daafe5e299608021b7f8b10203b91793e3f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "memshrink-telemetry-alerts@mozilla.com", + "pbone@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L60", + "telemetry_mirror": "MEMORY_PHC_SLOP", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "memory_phc_slots_allocated": { + "bucket_count": 64, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829127", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892149" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829127", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892149" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of PHC slots currently allocated\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram MEMORY_PHC_SLOTS_ALLOCATED.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8c8b3daafe5e299608021b7f8b10203b91793e3f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "memshrink-telemetry-alerts@mozilla.com", + "pbone@mozilla.com" + ], + "range_max": 16384, + "range_min": 1, + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L81", + "telemetry_mirror": "MEMORY_PHC_SLOTS_ALLOCATED", + "type": "custom_distribution", + "unit": "PHC slots", + "version": 0, + "repos": [ + "gecko" + ] + }, + "memory_phc_slots_freed": { + "bucket_count": 64, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829127", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892149" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829127", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892149" + ], + "dates": { + "first": "2025-01-24 14:36:18", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of PHC slots allocated-then-freed\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram MEMORY_PHC_SLOTS_FREED.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8c8b3daafe5e299608021b7f8b10203b91793e3f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "memshrink-telemetry-alerts@mozilla.com", + "pbone@mozilla.com" + ], + "range_max": 16384, + "range_min": 1, + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L105", + "telemetry_mirror": "MEMORY_PHC_SLOTS_FREED", + "type": "custom_distribution", + "unit": "PHC slots", + "version": 0, + "repos": [ + "gecko" + ] + }, + "memory_watcher_on_high_memory_stats": { + "bugs": [ + "https://bugzil.la/1715858" + ], + "data_reviews": [ + "https://bugzil.la/1715858" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "This event is recorded when the memory situation is no longer low. The \"stats\" object consists of three numbers comma-delimited: 1) how many times a tab was unloaded 2) how many memory-pressure events were dispatched 3) how long we were in the low-memory situation in seconds This event was generated to correspond to the Legacy Telemetry event memory_watcher.on_high_memory#stats.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The stringified, comma-separated stats.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "tkikuchi@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L33", + "telemetry_mirror": "Memory_watcher_OnHighMemory_Stats", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_cfr": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#cfr.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L56", + "telemetry_mirror": "Messaging_experiments_Reach_Cfr", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_feature_callout": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#featureCallout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L133", + "telemetry_mirror": "Messaging_experiments_Reach_Featurecallout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_bmb_button": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_bmb_button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L149", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsBmbButton", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_1": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_1.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L165", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage1", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_10": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_10.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L309", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage10", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_11": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_11.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L325", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage11", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_2": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_2.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L181", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage2", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_3": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_3.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L197", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage3", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_4": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_4.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L213", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage4", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_5": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_5.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L229", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage5", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_6": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_6.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L245", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage6", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_7": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_7.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L261", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage7", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_8": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_8.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L277", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage8", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_fxms_message_9": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#fxms_message_9.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L293", + "telemetry_mirror": "Messaging_experiments_Reach_FxmsMessage9", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_infobar": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#infobar.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L101", + "telemetry_mirror": "Messaging_experiments_Reach_Infobar", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_moments_page": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#moments_page.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L85", + "telemetry_mirror": "Messaging_experiments_Reach_MomentsPage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_reach_spotlight": { + "bugs": [ + "https://bugzil.la/1471318" + ], + "data_reviews": [ + "https://bugzil.la/1471318" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records whether a branch's targeting is satisfied for Messaging System experiments. All qualified branch ID(s) will be recorded in the 'extra_keys' for each active experiment, and the event 'value' will be the experiment ID This event was generated to correspond to the Legacy Telemetry event messaging_experiments.reach#spotlight.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branches": { + "description": "A semicolon separated string for all the qualified branch ID(s). e.g. \"control;variant_01;treatment_02\".\n", + "type": "string" + }, + "value": { + "description": "The name of the experiment. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L117", + "telemetry_mirror": "Messaging_experiments_Reach_Spotlight", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_targeting_attribute_error": { + "bugs": [ + "https://bugzil.la/1644743" + ], + "data_reviews": [ + "https://bugzil.la/1644743" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Record generic JEXL errors that result from issues with experiment or message targeting expressions. The value field contains the namespace and attribute name that caused the error. This event was generated to correspond to the Legacy Telemetry event messaging_experiments.targeting#attribute_error.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "source": { + "description": "Source of targeting expression: experiment slug or message id\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L14", + "telemetry_mirror": "Messaging_experiments_Targeting_AttributeError", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "messaging_experiments_targeting_attribute_timeout": { + "bugs": [ + "https://bugzil.la/1644743" + ], + "data_reviews": [ + "https://bugzil.la/1644743" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Record generic JEXL errors that result from issues with experiment or message targeting expressions. The value field contains the namespace and attribute name that caused the error. This event was generated to correspond to the Legacy Telemetry event messaging_experiments.targeting#attribute_timeout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "source": { + "description": "Source of targeting expression: experiment slug or message id\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Messaging System" + ] + }, + "no_lint": [], + "notification_emails": [ + "ujet@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/messaging-system/metrics.yaml#L41", + "telemetry_mirror": "Messaging_experiments_Targeting_AttributeTimeout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mixed_content_audio": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1819336" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1819336" + ], + "dates": { + "first": "2025-02-03 14:48:14", + "last": "2025-02-04 14:27:22" + }, + "description": "How often audio loads fail in regular mode and in upgrading mode?\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram MIXED_CONTENT_AUDIO.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "475380b4fece05ef5f74245e1b7a06e99735eea7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "AudioUpSuccess", + "AudioUpFailure", + "AudioNoUpSuccess", + "AudioNoUpFailure" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L508", + "telemetry_mirror": "h#MIXED_CONTENT_AUDIO", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mixed_content_hsts": { + "bucket_count": 11, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-03 14:48:14", + "last": "2025-02-04 14:27:22" + }, + "description": "How often would blocked mixed content be allowed if HSTS upgrades were allowed? 0=display/no-HSTS, 1=display/HSTS, 2=active/no-HSTS, 3=active/HSTS\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram MIXED_CONTENT_HSTS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "475380b4fece05ef5f74245e1b7a06e99735eea7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 10, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L444", + "telemetry_mirror": "MIXED_CONTENT_HSTS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mixed_content_images": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1819336" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1819336" + ], + "dates": { + "first": "2025-02-03 14:48:14", + "last": "2025-02-04 14:27:22" + }, + "description": "How often image loads fail in regular mode and in upgrading mode?\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram MIXED_CONTENT_IMAGES.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "475380b4fece05ef5f74245e1b7a06e99735eea7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ImgUpSuccess", + "ImgUpFailure", + "ImgNoUpSuccess", + "ImgNoUpFailure" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L466", + "telemetry_mirror": "h#MIXED_CONTENT_IMAGES", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mixed_content_page_load": { + "bucket_count": 5, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-03 14:48:14", + "last": "2025-02-04 14:27:22" + }, + "description": "Accumulates type of content per page load (0=no mixed or non-secure page, 1=mixed passive, 2=mixed active, 3=mixed passive and mixed active)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram MIXED_CONTENT_PAGE_LOAD.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "475380b4fece05ef5f74245e1b7a06e99735eea7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 4, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L402", + "telemetry_mirror": "MIXED_CONTENT_PAGE_LOAD", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mixed_content_unblock_counter": { + "bucket_count": 4, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-03 14:48:14", + "last": "2025-02-04 14:27:22" + }, + "description": "A simple counter of daily mixed-content unblock operations and top documents loaded\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram MIXED_CONTENT_UNBLOCK_COUNTER.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "475380b4fece05ef5f74245e1b7a06e99735eea7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 3, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L423", + "telemetry_mirror": "MIXED_CONTENT_UNBLOCK_COUNTER", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "mixed_content_video": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1819336" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1819336" + ], + "dates": { + "first": "2025-02-03 14:48:14", + "last": "2025-02-04 14:27:22" + }, + "description": "How often video loads fail in regular mode and in upgrading mode?\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram MIXED_CONTENT_VIDEO.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "475380b4fece05ef5f74245e1b7a06e99735eea7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "VideoUpSuccess", + "VideoUpFailure", + "VideoNoUpSuccess", + "VideoNoUpFailure" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L487", + "telemetry_mirror": "h#MIXED_CONTENT_VIDEO", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_early_hints": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1772124" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1772124", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797695" + ], + "dates": { + "first": "2024-02-09 00:10:20", + "last": "2024-08-28 15:03:17" + }, + "description": "Counts the different type of resources that are sent for early hints.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d40ed7e466bea61b6319fa4918b224320a132d85", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "labels": [ + "stylesheet", + "fonts", + "scripts", + "fetch", + "image", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/netwerk/protocol/http/metrics.yaml#L15", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_eh_link_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797936" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1797936" + ], + "dates": { + "first": "2022-11-11 12:25:15", + "last": "2024-08-28 15:03:17" + }, + "description": "Counts different type of link headers that are sent in early hint\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cea283391a31799ea2d517b6b2f5789e4326def9", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "labels": [ + "dns-prefetch", + "icon", + "modulepreload", + "preconnect", + "prefetch", + "preload", + "prerender", + "stylesheet", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/netwerk/protocol/http/metrics.yaml#L35", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_eh_response_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1851437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1851437" + ], + "dates": { + "first": "2024-06-27 00:27:07", + "last": "2024-08-28 15:03:17" + }, + "description": "HTTP protocol version from Early Hints response\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "833bccd519cdefaadfc81e0c9a15f5fa1d6151d3", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "labels": [ + "unknown", + "http_1", + "http_2", + "http_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/netwerk/protocol/http/metrics.yaml#L70", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_http3_0rtt_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1688850", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "dates": { + "first": "2024-09-18 13:01:32", + "last": "2025-02-04 14:27:22" + }, + "description": "Gather the outcome of 0-RTT usage: - \"not_used\": 0RTT_NOT_USED - \"succeeded\": 0RTT_USED_SUCCESS - \"rejected\": 0RTT_USED_REJECT - \"conn_error\": 0RTT_USED_CONN_ERROR - \"conn_closed_by_necko\": 0RTT_CONN_CLOSED_BY_NECKO\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "not_used", + "succeeded", + "rejected", + "conn_error", + "conn_closed_by_necko" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L28", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_http3_0rtt_state_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1688850", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "dates": { + "first": "2024-09-18 13:01:32", + "last": "2025-02-04 14:27:22" + }, + "description": "The time a connection was in the 0-RTT state\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "succeeded", + "rejected", + "conn_error", + "conn_closed_by_necko", + "not_used" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L52", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_http3_ech_outcome_grease": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1822876", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "dates": { + "first": "2024-09-18 13:01:32", + "last": "2024-09-18 13:01:32" + }, + "description": "Success / Fail Rates for HTTP3 when a GREASE ECH Extension was sent\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d", + "last": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d" + }, + "labels": [ + "success", + "fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/685dded99402ab643d7b9407d9ab2f0a2cf34c2d/netwerk/protocol/http/metrics.yaml#L44", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_http3_ech_outcome_none": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1822876", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "dates": { + "first": "2024-09-18 13:01:32", + "last": "2024-09-18 13:01:32" + }, + "description": "Success / Fail Rates for HTTP3 when No ECH Extension was sent\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d", + "last": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d" + }, + "labels": [ + "success", + "fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/685dded99402ab643d7b9407d9ab2f0a2cf34c2d/netwerk/protocol/http/metrics.yaml#L27", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_http3_ech_outcome_real": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1822876", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905939" + ], + "dates": { + "first": "2024-09-18 13:01:32", + "last": "2024-09-18 13:01:32" + }, + "description": "Success / Fail Rates for HTTP3 when a 'real' ECH Extension was sent\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d", + "last": "685dded99402ab643d7b9407d9ab2f0a2cf34c2d" + }, + "labels": [ + "success", + "fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/685dded99402ab643d7b9407d9ab2f0a2cf34c2d/netwerk/protocol/http/metrics.yaml#L49", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_http3_time_to_reuse_idle_connection": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1655566", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906360" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1655566" + ], + "dates": { + "first": "2024-10-28 14:33:09", + "last": "2025-02-04 14:27:22" + }, + "description": "The time to reuse an idle connection in HTTP3 (ms); keyed by the transaction reusing an idle connection has succeeded or failed\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0143cb09e34a37f8d0f81a78fa58a97eaf2d476b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "succeeded", + "failed" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L72", + "telemetry_mirror": "HTTP3_TIME_TO_REUSE_IDLE_CONNECTTION_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "netwerk_parent_connect_timeout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813630" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1813630" + ], + "dates": { + "first": "2024-07-02 00:24:01", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often the parent-connect-timeout timer is necessary to clear up EarlyHintPreloader\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3589eace2e8b9bfc34c2a47743c965fd0e1bf719", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "manuel@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L15", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_alpn_mismatch_count": { + "bugs": [ + "https://bugzil.la/1943911" + ], + "data_reviews": [ + "https://bugzil.la/1943911" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times we encountered a mismatched ALPN token and needed to reset the connection. Keyed by the negotiated NPN.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L868", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_async_open_child_to_transaction_pending_exp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1789468" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1789468" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The time spent from HttpChannelChild::AsyncOpen to adding the transactionto the nsHttpConnectionMgr, in milliseconds, keyed by the classOfService flags\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_ASYNC_OPEN_CHILD_TO_TRANSACTION_PENDING_EXP_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1099", + "telemetry_mirror": "NETWORK_ASYNC_OPEN_CHILD_TO_TRANSACTION_PENDING_EXP_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_back_pressure_suspension_cp_type": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1487559", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1524552", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1616069", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668513", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1700824" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1487559", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1524552", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1616069", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668513", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1700824" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Collect the content policy when the resource is non-local and suspended by back pressure (0-44 from nsContentPolicyType in nsIContentPolicy.idl).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram NETWORK_BACK_PRESSURE_SUSPENSION_CP_TYPE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1045", + "telemetry_mirror": "NETWORK_BACK_PRESSURE_SUSPENSION_CP_TYPE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_back_pressure_suspension_delay_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1498434", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1524552", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1616069", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668513", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1700824" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1498434", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1524552", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1616069", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668513", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1700824" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The delay caused by the e10s back pressure suspension(ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_BACK_PRESSURE_SUSPENSION_DELAY_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1074", + "telemetry_mirror": "NETWORK_BACK_PRESSURE_SUSPENSION_DELAY_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_back_pressure_suspension_rate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1280629", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1494133", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1524552", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1616069", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668513", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1700824" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1280629", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1494133", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1524552", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1616069", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1668513", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1700824" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Collect whether the resource is suspended by back pressure. And split by local-ness.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram NETWORK_BACK_PRESSURE_SUSPENSION_RATE_V2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "Suspended", + "NotSuspended", + "SuspendedLocal", + "NotSuspendedLocal" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1013", + "telemetry_mirror": "h#NETWORK_BACK_PRESSURE_SUSPENSION_RATE_V2", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_byte_range_request": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898737" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898737" + ], + "dates": { + "first": "2024-06-12 12:09:28", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts of cacheable/non-cacheable byte-range requests\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "37be22e529880989e51cb1606b1776bb17b9a12f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cacheable", + "not_cacheable" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L91", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_entry_count": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of entries in the cache keyed by cache capacity calculation type. Numbers are sampled periodically, every time 2GB of data is written to the cache.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_CACHE_ENTRY_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 100000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L111", + "telemetry_mirror": "NETWORK_CACHE_ENTRY_COUNT", + "type": "labeled_custom_distribution", + "unit": "cache entries", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_entry_count_share": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Percentage of the entries with the given content type. Numbers are sampled periodically, every time 2GB of data is written to the cache.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram NETWORK_CACHE_ENTRY_COUNT_SHARE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 99, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L155", + "telemetry_mirror": "NETWORK_CACHE_ENTRY_COUNT_SHARE", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_hit_miss_stat_per_cache_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1131600", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922661" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1131600" + ], + "dates": { + "first": "2024-11-06 00:11:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Hit/Miss count split by cache size in file count Hit 0-5000, Miss 0-5000, Hit 5001-10000, ...\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8dbb719424945e7111784c3d2ff6b9f3db865316", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L223", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_hit_rate_per_cache_size": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1131600", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922661" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1131600" + ], + "dates": { + "first": "2024-11-06 00:11:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Hit rate for a specific cache size in file count. The hit rate is split into 20 buckets. The key is the cacheSize (20 buckets) and the value is between 0 and 100.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8dbb719424945e7111784c3d2ff6b9f3db865316", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L236", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_miss_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1489524", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922661" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1580077#c10" + ], + "dates": { + "first": "2024-11-06 00:11:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent to find out a cache entry file is missing. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8dbb719424945e7111784c3d2ff6b9f3db865316", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L206", + "telemetry_mirror": "NETWORK_CACHE_V2_MISS_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_read_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP page channel, time from connection cache read start to cache read end. Corresponds to Legacy histogram HTTP_PAGE_CACHE_READ_TIME_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L106", + "telemetry_mirror": "HTTP_PAGE_CACHE_READ_TIME_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Cache size in megabytes keyed by cache capacity calculation type. Numbers are sampled periodically, every time 2GB of data is written to the cache.\nThis metric was generated to correspond to the Legacy Telemetry linear histogram NETWORK_CACHE_SIZE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "memory_unit": "megabyte", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L93", + "telemetry_mirror": "NETWORK_CACHE_SIZE", + "type": "labeled_memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_size_share": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1548472" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Percentage of the cache size occupied by given content type. Numbers are sampled periodically, every time 2GB of data is written to the cache.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram NETWORK_CACHE_SIZE_SHARE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 99, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L134", + "telemetry_mirror": "NETWORK_CACHE_SIZE_SHARE", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_v2_input_stream_status": { + "bucket_count": 8, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Final status of the CacheFileInputStream (0=ok, 1=other error, 2=out of memory, 3=disk full, 4=file corrupted, 5=file not found, 6=binding aborted)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram NETWORK_CACHE_V2_INPUT_STREAM_STATUS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 7, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L71", + "telemetry_mirror": "NETWORK_CACHE_V2_INPUT_STREAM_STATUS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cache_v2_output_stream_status": { + "bucket_count": 8, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Final status of the CacheFileOutputStream (0=ok, 1=other error, 2=out of memory, 3=disk full, 4=file corrupted, 5=file not found, 6=binding aborted)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram NETWORK_CACHE_V2_OUTPUT_STREAM_STATUS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 7, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L49", + "telemetry_mirror": "NETWORK_CACHE_V2_OUTPUT_STREAM_STATUS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_complete_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP page channel, time from connection open to complete load (cache read end/until the last byte received) Corresponds to Legacy histogram HTTP_PAGE_COMPLETE_LOAD_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L122", + "telemetry_mirror": "HTTP_PAGE_COMPLETE_LOAD_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_complete_load_cached": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP page channel, time from connection open to cache read end. Corresponds to Legacy histogram HTTP_PAGE_COMPLETE_LOAD_CACHED_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L138", + "telemetry_mirror": "HTTP_PAGE_COMPLETE_LOAD_CACHED_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_complete_load_net": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP page channel, time from connection open to the last byte received. Corresponds to Legacy histogram HTTP_PAGE_COMPLETE_LOAD_NET_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L154", + "telemetry_mirror": "HTTP_PAGE_COMPLETE_LOAD_NET_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_cors_authorization_header": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687364", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902182" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1687364" + ], + "dates": { + "first": "2024-06-14 00:15:44", + "last": "2025-02-04 14:27:22" + }, + "description": "Count how many times we see `Authorization` header in `Access-Control-Request-Headers` header and the possible outcomes.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "9e46b7e834f0f7d54fb252c8a987d1790122c0db", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "allowed", + "disallowed", + "covered_by_wildcard" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L170", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_data_size_pb_per_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808695" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808695" + ], + "dates": { + "first": "2023-02-10 11:04:42", + "last": "2024-06-20 00:21:16" + }, + "description": "Number of KB we transferred keyed by \"contentType\"\n", + "disabled": false, + "expires": 130, + "gecko_datapoint": "", + "git-commits": { + "first": "c7079f0816fe5f8efd4498052e22cad359ddc1a6", + "last": "4c320abfc0b7ffcdd1fd78247e1851d8819c72f7" + }, + "labels": [ + "text_html", + "text_css", + "text_json", + "text_plain", + "text_javascript", + "text_other", + "audio", + "video", + "multipart", + "icon", + "image", + "ocsp", + "xpinstall", + "wasm", + "pdf", + "octet_stream", + "proxy", + "compressed", + "x509", + "application_other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "necko@mozilla.com", + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/4c320abfc0b7ffcdd1fd78247e1851d8819c72f7/netwerk/protocol/http/metrics.yaml#L111", + "telemetry_mirror": "NETWORKING_DATA_TRANSFERRED_PB_PER_CONTENT_TYPE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_data_size_per_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808695" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808695" + ], + "dates": { + "first": "2023-02-10 11:04:42", + "last": "2024-06-20 00:21:16" + }, + "description": "Number of KB we transferred keyed by \"contentType\"\n", + "disabled": false, + "expires": 130, + "gecko_datapoint": "", + "git-commits": { + "first": "c7079f0816fe5f8efd4498052e22cad359ddc1a6", + "last": "4c320abfc0b7ffcdd1fd78247e1851d8819c72f7" + }, + "labels": [ + "text_html", + "text_css", + "text_json", + "text_plain", + "text_javascript", + "text_other", + "audio", + "video", + "multipart", + "icon", + "image", + "ocsp", + "xpinstall", + "wasm", + "pdf", + "octet_stream", + "proxy", + "compressed", + "x509", + "application_other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "necko@mozilla.com", + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/4c320abfc0b7ffcdd1fd78247e1851d8819c72f7/netwerk/protocol/http/metrics.yaml#L74", + "telemetry_mirror": "NETWORKING_DATA_TRANSFERRED_PER_CONTENT_TYPE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_disk_cache2_shutdown_clear_private": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent (ms) during shutdown deleting disk cache v2 for 'clear private data' option\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_DISK_CACHE2_SHUTDOWN_CLEAR_PRIVATE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L31", + "telemetry_mirror": "NETWORK_DISK_CACHE2_SHUTDOWN_CLEAR_PRIVATE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_disk_cache_shutdown_v2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Total Time spent (ms) during disk cache shutdown [cache2]\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_DISK_CACHE_SHUTDOWN_V2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L14", + "telemetry_mirror": "NETWORK_DISK_CACHE_SHUTDOWN_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_dns_trr_confirmation_context": { + "bugs": [ + "https://bugzil.la/1691408", + "https://bugzil.la/1694949" + ], + "data_reviews": [ + "https://bugzil.la/1691408", + "https://bugzil.la/1694949" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "This telemetry records the status of the TRR confirmation across. The value of the event is one of: \"ok\" \"trying\" This event was generated to correspond to the Legacy Telemetry event network.dns.trrConfirmation#context.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "attemptCount": { + "description": "The number of NS requests that were issued for this confirmation.\n", + "type": "quantity" + }, + "captivePortal": { + "description": "One of [unknown, not_captive, unlocked, locked]\n", + "type": "string" + }, + "contextReason": { + "description": "The cause of the current confirmation context. Values: [success, pref-change, network-change, shutdown]\n", + "type": "string" + }, + "failedLookups": { + "description": "When the trigger is failed-lookups, this contains the string representation of the failures that triggered the confirmation.\n", + "type": "string" + }, + "networkID": { + "description": "The network ID for the recorded confirmation attempts\n", + "type": "string" + }, + "results": { + "description": "String representation of the last 32 confirmation results. Example: nnnnnnttttttttt indicates a number of network (n) failures followed by timeouts (t).\n", + "type": "string" + }, + "time": { + "description": "Time from first confirmation attempt to event being recorded\n", + "type": "string" + }, + "trigger": { + "description": "The reason why this confirmation was triggered. Values: [cp-connectivity, pref-change, context-init, retry, failed-lookups]\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The `ConfirmationState`.\n", + "type": "quantity" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "vgosu@mozilla.com", + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2020", + "telemetry_mirror": "NetworkDns_Trrconfirmation_Context", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_dns_end_to_connect_start_exp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1791077" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1791077" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The time spent from dns resolution to connect start, in milliseconds, keyed by protocol version and the classOfService flags\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_DNS_END_TO_CONNECT_START_EXP_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1140", + "telemetry_mirror": "NETWORK_DNS_END_TO_CONNECT_START_EXP_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_first_sent_to_last_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP page channel, time from first byte of request sent to the last byte received. Corresponds to Legacy histogram HTTP_PAGE_FIRST_SENT_TO_LAST_RECEIVED in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L362", + "telemetry_mirror": "HTTP_PAGE_FIRST_SENT_TO_LAST_RECEIVED", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http3_avg_read_interval": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902931" + ], + "dates": { + "first": "2024-11-13 13:01:46", + "last": "2025-01-02 14:27:46" + }, + "description": "The average time between read operations in a HTTP/3 connection, keyed by the server header\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3472780dfd4f4abd745f16b2302570ebf89a8616", + "last": "d816941cb362ad2669de8425b6d208f6c142a621" + }, + "labels": [ + "cloudflare", + "others" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/d816941cb362ad2669de8425b6d208f6c142a621/netwerk/protocol/http/metrics.yaml#L789", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http3_complete_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907418" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "dates": { + "first": "2024-09-03 12:56:05", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP channel (keys: uses_http3_page, uses_http3_sub, supports_http3_page, supports_http3_sub), overall load time\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ea546fa59eb6c73af8c0965a84ae8fc7596016be", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "uses_http3_page", + "uses_http3_sub", + "supports_http3_page", + "supports_http3_sub" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L777", + "telemetry_mirror": "HTTP3_COMPLETE_LOAD", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http3_first_sent_to_last_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907418" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "dates": { + "first": "2024-09-03 12:56:05", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP channel (keys: uses_http3_page, uses_http3_sub, supports_http3_page, supports_http3_sub), time from first byte of request sent to last byte of response received\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ea546fa59eb6c73af8c0965a84ae8fc7596016be", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "uses_http3_page", + "uses_http3_sub", + "supports_http3_page", + "supports_http3_sub" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L753", + "telemetry_mirror": "HTTP3_FIRST_SENT_TO_LAST_RECEIVED", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http3_open_to_first_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907418" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "dates": { + "first": "2024-09-03 12:56:05", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP channel (keys: uses_http3_page, uses_http3_sub, supports_http3_page, supports_http3_sub), time from open to first byte of reply received\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ea546fa59eb6c73af8c0965a84ae8fc7596016be", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "uses_http3_page", + "uses_http3_sub", + "supports_http3_page", + "supports_http3_sub" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L765", + "telemetry_mirror": "HTTP3_OPEN_TO_FIRST_RECEIVED", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http3_open_to_first_sent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907418" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "dates": { + "first": "2024-09-03 12:56:05", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP channel (keys: uses_http3_page, uses_http3_sub, supports_http3_page, supports_http3_sub), time from open to first byte of request\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ea546fa59eb6c73af8c0965a84ae8fc7596016be", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "uses_http3_page", + "uses_http3_sub", + "supports_http3_page", + "supports_http3_sub" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L741", + "telemetry_mirror": "HTTP3_OPEN_TO_FIRST_SENT", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http3_tls_handshake": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907418" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "dates": { + "first": "2024-09-03 12:56:05", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP channel (keys: uses_http3_page, uses_http3_sub, supports_http3_page, supports_http3_sub), time from secure connection start (after TCP SYN) to ready for HTTP\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ea546fa59eb6c73af8c0965a84ae8fc7596016be", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "uses_http3_page", + "uses_http3_sub", + "supports_http3_page", + "supports_http3_sub" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L710", + "telemetry_mirror": "HTTP3_TLS_HANDSHAKE", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http_cache_entry_alive_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for which an HTTP cache entry is kept warmed in memory\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_CACHE_ENTRY_ALIVE_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L193", + "telemetry_mirror": "HTTP_CACHE_ENTRY_ALIVE_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http_cache_entry_reload_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time before we reload an HTTP cache entry again to memory\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram HTTP_CACHE_ENTRY_RELOAD_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L176", + "telemetry_mirror": "HTTP_CACHE_ENTRY_RELOAD_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http_cache_entry_reuse_count": { + "bucket_count": 19, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Reuse count of an HTTP cache entry warmed in memory\nThis metric was generated to correspond to the Legacy Telemetry linear histogram HTTP_CACHE_ENTRY_REUSE_COUNT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: Cache" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 20, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/cache2/metrics.yaml#L210", + "telemetry_mirror": "HTTP_CACHE_ENTRY_REUSE_COUNT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http_fetch_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902931", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935196" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902931" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between requestStart and responseEnd, keyed by the server header\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "h3_cloudflare", + "h3_others", + "h2_cloudflare", + "h2_others", + "h1_cloudflare", + "h1_others" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L789", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_http_revalidation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP page channel, time for positive cache validation Corresponds to Legacy histogram HTTP_PAGE_REVALIDATION in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L346", + "telemetry_mirror": "HTTP_PAGE_REVALIDATION", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_open_to_first_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel,time from connection open to the first byte received. Corresponds to Legacy histogram HTTP_PAGE_OPEN_TO_FIRST_RECEIVED in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L396", + "telemetry_mirror": "HTTP_PAGE_OPEN_TO_FIRST_RECEIVED", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_open_to_first_sent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP page channel, time from connection open to the first byte of requst sent. Corresponds to Legacy histogram HTTP_PAGE_OPEN_TO_FIRST_SENT in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L379", + "telemetry_mirror": "HTTP_PAGE_OPEN_TO_FIRST_SENT", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_open_to_transaction_pending": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1789468" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1789468" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-09-22 12:32:02", + "last": "2022-09-22 12:32:02" + }, + "description": "The time spent from HttpChannelChild::AsyncOpen to adding the transaction to the nsHttpConnectionMgr\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e8a5f6e8d280cdc103d4b3f137654c7d922bcb5f", + "last": "e8a5f6e8d280cdc103d4b3f137654c7d922bcb5f" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e8a5f6e8d280cdc103d4b3f137654c7d922bcb5f/netwerk/metrics.yaml#L14", + "telemetry_mirror": "NETWORK_ASYNC_OPEN_TO_TRANSACTION_PENDING_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_race_cache_bandwidth_not_race": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354405" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354405" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of bytes received when we decide not to race cache with network.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_RACE_CACHE_BANDWIDTH_NOT_RACE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L976", + "telemetry_mirror": "NETWORK_RACE_CACHE_BANDWIDTH_NOT_RACE", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_race_cache_bandwidth_race_cache_win": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354405" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354405" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of bytes received when we decide to race cache with network and cache wins.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_RACE_CACHE_BANDWIDTH_RACE_CACHE_WIN.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L958", + "telemetry_mirror": "NETWORK_RACE_CACHE_BANDWIDTH_RACE_CACHE_WIN", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_race_cache_bandwidth_race_network_win": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354405" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354405" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of bytes received when we decide to race cache with network and network wins.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_RACE_CACHE_BANDWIDTH_RACE_NETWORK_WIN.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L940", + "telemetry_mirror": "NETWORK_RACE_CACHE_BANDWIDTH_RACE_NETWORK_WIN", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_race_cache_validation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1377223" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1377223" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Stats for validation requests when cache won the race.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram NETWORK_RACE_CACHE_VALIDATION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "NotSent", + "CachedContentUsed", + "CachedContentNotUsed" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L993", + "telemetry_mirror": "h#NETWORK_RACE_CACHE_VALIDATION", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_race_cache_with_network_ocec_on_start_diff": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354407" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354407" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in milliseconds between onStartRequest from the cache and onCacheEntryCheck. Report only when net wins and OCEC is before onStartRequest from net.\nThis metric was generated to correspond to the Legacy Telemetry linear histogram NETWORK_RACE_CACHE_WITH_NETWORK_OCEC_ON_START_DIFF.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L921", + "telemetry_mirror": "NETWORK_RACE_CACHE_WITH_NETWORK_OCEC_ON_START_DIFF", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_race_cache_with_network_saved_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354407" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1354407" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in milliseconds that we saved when we race cache with network.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_RACE_CACHE_WITH_NETWORK_SAVED_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L904", + "telemetry_mirror": "NETWORK_RACE_CACHE_WITH_NETWORK_SAVED_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_race_cache_with_network_usage": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1377340" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1377340" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether we raced network with the cache.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram NETWORK_RACE_CACHE_WITH_NETWORK_USAGE_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "NetworkNoRace", + "CacheNoRace", + "NetworkRace", + "CacheRace", + "NetworkDelayedRace", + "CacheDelayedRace" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L881", + "telemetry_mirror": "h#NETWORK_RACE_CACHE_WITH_NETWORK_USAGE_2", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_response_end_parent_to_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1795775" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1795775" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The time spent relaying response completion from the socket thread of the parent process to the content process, in milliseconds, keyed by the classOfService flags\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_RESPONSE_END_PARENT_TO_CONTENT_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1159", + "telemetry_mirror": "NETWORK_RESPONSE_END_PARENT_TO_CONTENT_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_response_start_parent_to_content_exp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1793975" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1793975" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The time spent relaying response start from the socket thread of the parent process to the content process, in milliseconds, keyed by the classOfService flags\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram NETWORK_RESPONSE_START_PARENT_TO_CONTENT_EXP_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1120", + "telemetry_mirror": "NETWORK_RESPONSE_START_PARENT_TO_CONTENT_EXP_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sso_entra_success": { + "bugs": [ + "https://bugzilla.mozilla.org/1930742" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1930742" + ], + "dates": { + "first": "2024-11-15 16:27:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often Entra SSO succeeded/failed (macOS only). Labels are ordered in reverse chronological relation to SSO success, meaning the labels higher up are closer to the SSO success. device_headers_missing: only device_headers is missing in the SSO cookie. prt_headers_missing: only prt_headers is missing in the SSO cookie. both_headers_missing: both prt_headers and device_headers are missing in the SSO cookie. invalid_cookie: Failed to parse SSO cookie (could be a null cookie/format is incorrect). no_credential: ASAuthorizationSingleSignOnCredential is not present broker_error: An error from Microsoft's broker. invalid_controller_setup: ASAuthorizationController is setup incorrectly.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2a39a1cee2de266e8def5558c7c3bf79c6b8c2f9", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "success", + "device_headers_missing", + "prt_headers_missing", + "both_headers_missing", + "invalid_cookie", + "no_credential", + "broker_error", + "invalid_controller_setup" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2079", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sso_total_entra_uses": { + "bugs": [ + "https://bugzilla.mozilla.org/1930742" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1930742" + ], + "dates": { + "first": "2024-11-15 16:27:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often Entra SSO is used (macOS only).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2a39a1cee2de266e8def5558c7c3bf79c6b8c2f9", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2107", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_cache_read_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection cache read start to cache read end. Corresponds to Legacy histogram HTTP_SUB_CACHE_READ_TIME_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L413", + "telemetry_mirror": "HTTP_SUB_CACHE_READ_TIME_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_complete_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection open to complete load (cache read end/until the last byte received) Corresponds to Legacy histogram HTTP_SUB_COMPLETE_LOAD_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L429", + "telemetry_mirror": "HTTP_SUB_COMPLETE_LOAD_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_complete_load_cached": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection open to cache read end. Corresponds to Legacy histogram HTTP_SUB_COMPLETE_LOAD_CACHED_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L445", + "telemetry_mirror": "HTTP_SUB_COMPLETE_LOAD_CACHED_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_complete_load_net": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection open to the last byte received. Corresponds to Legacy histogram HTTP_SUB_COMPLETE_LOAD_NET_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L461", + "telemetry_mirror": "HTTP_SUB_COMPLETE_LOAD_NET_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_dns_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from the DNS request being issued to the response. Corresponds to Legacy histogram HTTP_SUB_DNS_LOOKUP_TIME in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L494", + "telemetry_mirror": "HTTP_SUB_DNS_LOOKUP_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_dns_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection open to the DNS request being issued. Corresponds to Legacy histogram HTTP_SUB_DNS_ISSUE_TIME in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L477", + "telemetry_mirror": "HTTP_SUB_DNS_ISSUE_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_first_from_cache": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection open to cache read start. Corresponds to Legacy histogram HTTP_SUB_OPEN_TO_FIRST_FROM_CACHE_V2 in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L511", + "telemetry_mirror": "HTTP_SUB_OPEN_TO_FIRST_FROM_CACHE_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_first_sent_to_last_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from first byte of request sent to the last byte received. Corresponds to Legacy histogram HTTP_SUB_FIRST_SENT_TO_LAST_RECEIVED in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L527", + "telemetry_mirror": "HTTP_SUB_FIRST_SENT_TO_LAST_RECEIVED", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_http_revalidation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1877839" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time for positive cache validation Corresponds to Legacy histogram HTTP_SUB_REVALIDATION in Desktop.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L544", + "telemetry_mirror": "HTTP_SUB_REVALIDATION", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_open_to_first_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection open to the first byte received. Corresponds to Legacy histogram HTTP_SUB_OPEN_TO_FIRST_RECEIVED in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L577", + "telemetry_mirror": "HTTP_SUB_OPEN_TO_FIRST_RECEIVED", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_open_to_first_sent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from connection open to the first byte of requst sent. Corresponds to Legacy histogram HTTP_SUB_OPEN_TO_FIRST_SENT in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L560", + "telemetry_mirror": "HTTP_SUB_OPEN_TO_FIRST_SENT", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_tcp_connection": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=772589", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from the TCP SYN packet is received to the connection is established and ready for HTTP. Corresponds to Legacy histogram HTTP_SUB_TCP_CONNECTION_2 in Desktop (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L612", + "telemetry_mirror": "HTTP_SUB_TCP_CONNECTION_2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sub_tls_handshake": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=772589", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898247" + ], + "dates": { + "first": "2024-10-19 00:00:11", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP subitem channel, time from after the TCP SYN packet is received to the secure connection is established and ready for HTTP. Corresponds to Legacy histogram HTTP_SUB_TLS_HANDSHAKE in Desktop. (Migrated from the geckoview metric of the same name).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "516e378fe96ffbc9f6a4dc3d42961ff60851bd25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L594", + "telemetry_mirror": "HTTP_SUB_TLS_HANDSHAKE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_sup_http3_tcp_connection": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1907418" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675500" + ], + "dates": { + "first": "2024-09-03 12:56:05", + "last": "2025-02-04 14:27:22" + }, + "description": "In the HTTP channel (keys: supports_http3_page, supports_http3_sub), time from TCP SYN to ready for HTTP\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ea546fa59eb6c73af8c0965a84ae8fc7596016be", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "supports_http3_page", + "supports_http3_sub" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L731", + "telemetry_mirror": "SUP_HTTP3_TCP_CONNECTION", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_system_channel_addon_status": { + "bugs": [ + "https://bugzilla.mozilla.org/1914129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914129" + ], + "dates": { + "first": "2024-08-29 08:46:34", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the status of succeeded and failed requests to addons.mozilla.org\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "406ca241f97be0c98c360fa5a8d6383aaff05ec6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ok", + "offline", + "connectivity", + "dns", + "connect_fail", + "tls_fail", + "http_status", + "cancel", + "timeout", + "reset", + "refused", + "partial", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L848", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_system_channel_addonversion_status": { + "bugs": [ + "https://bugzilla.mozilla.org/1914129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914129" + ], + "dates": { + "first": "2024-08-29 08:46:34", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the status of succeeded and failed requests to *.addons.mozilla.org\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "406ca241f97be0c98c360fa5a8d6383aaff05ec6", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ok", + "offline", + "connectivity", + "dns", + "connect_fail", + "tls_fail", + "http_status", + "cancel", + "timeout", + "reset", + "refused", + "partial", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L843", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_system_channel_other_status": { + "bugs": [ + "https://bugzilla.mozilla.org/1914129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914129" + ], + "dates": { + "first": "2024-10-18 10:58:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the status of succeeded and failed requests to other mozilla.org domains\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f52b609435c3ecdb0ce115de9119e4038b74121c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ok", + "offline", + "connectivity", + "dns", + "connect_fail", + "tls_fail", + "http_status", + "cancel", + "timeout", + "reset", + "refused", + "partial", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L863", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_system_channel_remote_settings_status": { + "bugs": [ + "https://bugzilla.mozilla.org/1914129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914129" + ], + "dates": { + "first": "2024-08-23 11:18:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the status of succeeded and failed requests to firefox.settings.services.mozilla.com\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fcee79d28c4afcf2c019ebdd0ccfc4c3e1281288", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ok", + "offline", + "connectivity", + "dns", + "connect_fail", + "tls_fail", + "http_status", + "cancel", + "timeout", + "reset", + "refused", + "partial", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L853", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_system_channel_success_or_failure": { + "bugs": [ + "https://bugzilla.mozilla.org/1914129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914129" + ], + "dates": { + "first": "2024-08-23 11:18:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of succeeded and failed channels with a system principal to a mozilla domain. Label contains ok or failure reason.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fcee79d28c4afcf2c019ebdd0ccfc4c3e1281288", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ok", + "offline", + "connectivity", + "dns", + "connect_fail", + "tls_fail", + "http_status", + "cancel", + "timeout", + "reset", + "refused", + "partial", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L810", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_system_channel_telemetry_status": { + "bugs": [ + "https://bugzilla.mozilla.org/1914129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914129" + ], + "dates": { + "first": "2024-08-23 11:18:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the status of succeeded and failed requests to incoming.telemetry.mozilla.org\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fcee79d28c4afcf2c019ebdd0ccfc4c3e1281288", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ok", + "offline", + "connectivity", + "dns", + "connect_fail", + "tls_fail", + "http_status", + "cancel", + "timeout", + "reset", + "refused", + "partial", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L858", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_system_channel_update_status": { + "bugs": [ + "https://bugzilla.mozilla.org/1914129" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914129" + ], + "dates": { + "first": "2024-08-23 11:18:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the status of succeeded and failed requests to aus5.mozilla.org\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "fcee79d28c4afcf2c019ebdd0ccfc4c3e1281288", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ok", + "offline", + "connectivity", + "dns", + "connect_fail", + "tls_fail", + "http_status", + "cancel", + "timeout", + "reset", + "refused", + "partial", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L838", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_tls_early_data_accepted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296288", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1654309", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1749881", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898018" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898018" + ], + "dates": { + "first": "2024-05-30 14:03:19", + "last": "2025-02-04 14:27:22" + }, + "description": "TLS early data was used and it was accepted or rejected by the remote host.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9279e748feba8a6676429a38c0b632efb997e05d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "accepted", + "rejected" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L650", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_tls_early_data_bytes_written": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296288", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1654309", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1749881", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898018" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898018" + ], + "dates": { + "first": "2024-05-30 14:03:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of bytes sent using TLS early data at the start of a TLS connection for a given channel.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9279e748feba8a6676429a38c0b632efb997e05d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 60000, + "range_min": 0, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L669", + "telemetry_mirror": "TLS_EARLY_DATA_BYTES_WRITTEN", + "type": "custom_distribution", + "unit": "byte", + "version": 0, + "repos": [ + "gecko" + ] + }, + "network_tls_early_data_negotiated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1296288", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1654309", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1749881", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898018" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898018" + ], + "dates": { + "first": "2024-05-30 14:03:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Sending TLS early data was not possible, possible and used, or possible but not used.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9279e748feba8a6676429a38c0b632efb997e05d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "not_available", + "available_and_used", + "available_but_not_used" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L630", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cache_metadata_first_read_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908994" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908994" + ], + "dates": { + "first": "2024-07-26 00:02:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent to read the first part of the metadata from the cache entry file.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "594b0acaa5de6bde8d095cfa435ee1701bc2a1b2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1441", + "telemetry_mirror": "NETWORK_CACHE_METADATA_FIRST_READ_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cache_metadata_second_read_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908994" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908994" + ], + "dates": { + "first": "2024-07-26 00:02:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent to read the missing part of the metadata from the cache entry file.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "594b0acaa5de6bde8d095cfa435ee1701bc2a1b2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1456", + "telemetry_mirror": "NETWORK_CACHE_METADATA_SECOND_READ_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cache_metadata_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1133739", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1495336", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908994" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1908994" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-26 00:02:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Size of the metadata in bytes parsed from the disk.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "594b0acaa5de6bde8d095cfa435ee1701bc2a1b2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1462", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cache_purge_due_to_memory_limit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1941935" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1941935" + ], + "dates": { + "first": "2025-01-17 11:25:48", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often we purge cache entries from memory due to memory limits.\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "c46a90aaa2ded2d4889c128ce0102a22fda86cbd", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "meta_data_file_size_limit", + "cache_memory_limit" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1508", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_captive_portal_banner_display_time": { + "bugs": [ + "https://bugzil.la/1868145" + ], + "data_reviews": [ + "https://bugzil.la/1868145" + ], + "dates": { + "first": "2024-11-15 00:21:58", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of seconds the captive portal banner was displayed for, keyed by close reason:\n \"success\" - the portal login was completed\n \"abort\" - the portal login was aborted (e.g. loss of network)\n \"dismiss\" - the user dismissed the banner\nThis metric was generated to correspond to the Legacy Telemetry scalar networking.captive_portal_banner_display_time.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "658c0f52c31bdcf6a76648d40eee21add7689e7e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "success", + "abort", + "dismiss" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L469", + "telemetry_mirror": "NETWORKING_CAPTIVE_PORTAL_BANNER_DISPLAY_TIME", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_captive_portal_banner_displayed": { + "bugs": [ + "https://bugzil.la/1868145" + ], + "data_reviews": [ + "https://bugzil.la/1868145" + ], + "dates": { + "first": "2024-11-15 00:21:58", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times the captive portal banner was displayed in this session. This metric was generated to correspond to the Legacy Telemetry scalar networking.captive_portal_banner_displayed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "658c0f52c31bdcf6a76648d40eee21add7689e7e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L453", + "telemetry_mirror": "NETWORKING_CAPTIVE_PORTAL_BANNER_DISPLAYED", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_access_fixup_diff": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828126" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828126#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-04-27 12:59:12", + "last": "2025-02-04 14:27:22" + }, + "description": "If we fix up a cookie lastAccessed timestamp that is in the future this metric records the number of seconds that timestamp was off from NOW.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "90caf4fa952a528cf00704f597ae24826c6384a7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 315360000000, + "range_min": 0, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L75", + "type": "custom_distribution", + "unit": "second", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_chips_partition_limit_overflow": { + "bucket_count": 22, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1878391", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1878391", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of cookie bytes exceeding chips partition limit capacity for a single partition\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 16000000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L300", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_count_invalid_first_party_partitioned_in_db": { + "bugs": [ + "https://bugzilla.mozilla.org/1922193" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1922193" + ], + "dates": { + "first": "2024-10-22 14:20:32", + "last": "2025-02-04 14:27:22" + }, + "description": "This counts the number of invalid first-party partitioned cookies that don't have the partitioned cookie attribution(CHIPS).\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "466d4fe62564c21c37a626ed91d0b8c67fee4290", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "bvandersloot@mozilla.com", + "tihuang@mozilla.com", + "edgul@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L218", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_count_part_by_key": { + "bucket_count": 10, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942#TDB", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "A distribution of the partitioned cookies in storage belonging to a particular cookie key (host + origin attributes)\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 220, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L168", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_count_partitioned": { + "bucket_count": 22, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942#TDB", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Reports the number of partitioned cookies in storage\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 4000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L120", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_count_total": { + "bucket_count": 22, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942#TDB", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Reports the total number of cookies in storage\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 4000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L96", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_count_unpart_by_key": { + "bucket_count": 10, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942#TDB", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "A distribution of the unpartitioned cookies in storage belonging to a particular cookie key (host + origin attributes)\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 220, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L193", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_count_unpartitioned": { + "bucket_count": 22, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942#TDB", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Reports the number of unpartitioned cookies in storage\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 4000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L144", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_creation_fixup_diff": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828126" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828126#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-04-27 12:59:12", + "last": "2025-02-04 14:27:22" + }, + "description": "If we fix up a cookie creation timestamp that is in the future this metric records the number of seconds that timestamp was off from NOW.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "90caf4fa952a528cf00704f597ae24826c6384a7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "range_max": 315360000000, + "range_min": 0, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L54", + "type": "custom_distribution", + "unit": "second", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_purge_entry_max": { + "bucket_count": 10, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942#TDB", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "A distribution of the number of cookies purged for a single host + OA entry as a result of exceeding the maximum threshold for the given host + OA (single purge)\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 220, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L274", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_purge_max": { + "bucket_count": 22, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828942#TDB", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892158", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922606" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-10-17 10:25:29", + "last": "2025-02-04 14:27:22" + }, + "description": "A distribution of the number of cookies purged across all host + OAs as a result of exceeding the cookie maximum threshold (single purge)\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "94b3814b405f677718d6c91e4170ffc1e0689d46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "edgul@mozilla.com" + ], + "range_max": 4000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L248", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_cookie_timestamp_fixed_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828126" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1828126#c5" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-04-27 12:59:12", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times a cookie's invalid timestamp was fixed when reading it from the DB.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "90caf4fa952a528cf00704f597ae24826c6384a7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "creationTime", + "lastAccessed" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L35", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_data_transferred_v3_kb": { + "bugs": [ + "https://bugzil.la/1533363", + "https://bugzil.la/1546903", + "https://bugzil.la/1546796", + "https://bugzil.la/1546906", + "https://bugzil.la/1550756", + "https://bugzil.la/1572666", + "https://bugzil.la/1590124", + "https://bugzil.la/1621800", + "https://bugzil.la/1668604", + "https://bugzil.la/1706842" + ], + "data_reviews": [ + "https://bugzil.la/1533363", + "https://bugzil.la/1546903", + "https://bugzil.la/1546796", + "https://bugzil.la/1546906", + "https://bugzil.la/1550756", + "https://bugzil.la/1572666", + "https://bugzil.la/1590124", + "https://bugzil.la/1621800", + "https://bugzil.la/1668604", + "https://bugzil.la/1706842" + ], + "dates": { + "first": "2024-10-18 10:58:19", + "last": "2025-02-04 14:27:22" + }, + "description": "How many KB of HTTP data transferred by type, there are some categories separated by keys based on 5 parameters:\n 1. normal browsing or private browsing\n 2. system principal or not\n 3. first party or third party\n 4. class of service (Leader/Background/Others)\n 5. tracking classification (Basic/Content/FingerprintingContent)\n\nAvailable keys are:\n \"Y0_N1Sys\",\n \"Y1_N1\",\n \"Y2_N3Oth\",\n \"Y3_N3BasicLead\",\n \"Y4_N3BasicBg\",\n \"Y5_N3BasicOth\",\n \"Y6_N3ContentLead\",\n \"Y7_N3ContentBg\",\n \"Y8_N3ContentOth\",\n \"Y9_N3FpLead\",\n \"Y10_N3FpBg\",\n \"Y11_N3FpOth\",\n \"Y12_P1Sys\",\n \"Y13_P1\",\n \"Y14_P3Oth\",\n \"Y15_P3BasicLead\",\n \"Y16_P3BasicBg\",\n \"Y17_P3BasicOth\",\n \"Y18_P3ContentLead\",\n \"Y19_P3ContentBg\",\n \"Y20_P3ContentOth\",\n \"Y21_P3FpLead\",\n \"Y22_P3FpBg\",\n \"Y23_P3FpOth\"\n\nThis metric was generated to correspond to the Legacy Telemetry scalar networking.data_transferred_v3_kb.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f52b609435c3ecdb0ce115de9119e4038b74121c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "arthur@mozilla.com", + "tanvi@mozilla.com", + "tihuang@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1233", + "telemetry_mirror": "NETWORKING_DATA_TRANSFERRED_V3_KB", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_dns_failed_lookup_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240#c6" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-06-22 16:02:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for an unsuccessful DNS OS resolution (msec) | Migrated from Firefox Telemetry's `DNS_FAILED_LOOKUP_TIME`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2cca592c2df8b587873dc1eb1cb95c5145aefc42", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L585", + "telemetry_mirror": "DNS_FAILED_LOOKUP_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_dns_lookup_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240#c6" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-06-22 16:02:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a successful DNS resolution (msec) | Migrated from Firefox Telemetry's `DNS_LOOKUP_TIME`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2cca592c2df8b587873dc1eb1cb95c5145aefc42", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L431", + "telemetry_mirror": "DNS_LOOKUP_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_dns_native_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879165" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879165" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-02-09 09:55:22", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of calls to the native DNS APIs\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "65d6adf8f747f19428a1dd35924cfd68b3037189", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "regular", + "private", + "https_regular", + "https_private" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "vgosu@mozilla.com", + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L619", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_dns_native_https_call_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1885529" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1885529" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-04-16 12:06:39", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent in the call to the native OS DNS resolution.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bf6deef14788c6d31fe274fb9f43e43f0407a18d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L603", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_dns_renewal_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240#c6" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-06-22 16:02:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a renewed DNS OS resolution (msec) | Migrated from Firefox Telemetry's `DNS_RENEWAL_TIME`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2cca592c2df8b587873dc1eb1cb95c5145aefc42", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L549", + "telemetry_mirror": "DNS_RENEWAL_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_dns_renewal_time_for_ttl": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1838240#c6" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-06-22 16:02:57", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a DNS OS resolution (msec) used to get TTL | Migrated from Firefox Telemetry's `DNS_RENEWAL_TIME_FOR_TTL`.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2cca592c2df8b587873dc1eb1cb95c5145aefc42", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L567", + "telemetry_mirror": "DNS_RENEWAL_TIME_FOR_TTL", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_fetch_keepalive_discard_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873551" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873551" + ], + "dates": { + "first": "2024-08-14 09:51:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how many fetch keepalive requests are dropped due to configured resource limits.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "79dd4d2e30aec4b3814556225fc7dafed9d50440", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "total_keepalive_limit", + "per_origin_limit" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "smayya@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L639", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_fetch_keepalive_request_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873551" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1873551" + ], + "dates": { + "first": "2024-08-14 09:51:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how many fetch keepalive requests are made. This counter helps us to understand the adoption of fetch keepalive for firefox.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "79dd4d2e30aec4b3814556225fc7dafed9d50440", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "worker", + "main" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "smayya@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L655", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http3_enabled": { + "bugs": [ + "https://bugzil.la/1652104" + ], + "data_reviews": [ + "https://bugzil.la/1652104" + ], + "dates": { + "first": "2024-10-18 10:58:19", + "last": "2025-02-04 14:27:22" + }, + "description": "True if HTTP3 is enabled at the start of a session. This metric was generated to correspond to the Legacy Telemetry scalar networking.http3_enabled.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f52b609435c3ecdb0ce115de9119e4038b74121c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "ddamjanovic@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1180", + "telemetry_mirror": "NETWORKING_HTTP3_ENABLED", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_download_throughput": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846798" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846798#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-08-21 12:48:54", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/1.0, http/1.1 requests larger than 10MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "db575a9e751df58f60e841316a5ef560d492c975", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L847", + "telemetry_mirror": "NETWORKING_DOWNLOAD_THROUGHPUT_HTTP_1", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_download_throughput_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-30 14:32:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/1.0 and http/1.1 requests size larger than 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6f1e035b0b7c1505fe9f92fc94d9998023b64994", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L892", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_download_throughput_10_50": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-30 14:32:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/1.0 and http/1.1 requests between 10MB and 50MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6f1e035b0b7c1505fe9f92fc94d9998023b64994", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L867", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_download_throughput_50_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-30 14:32:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/1.0 and http/1.1 requests between 50MB and 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6f1e035b0b7c1505fe9f92fc94d9998023b64994", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L887", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_upload_throughput": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-14 00:37:11", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/1.0, http/1.1 requests larger than 10MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0edb062880301a54cb6553b19bfa4edfb09398c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L997", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_1", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_upload_throughput_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/1.0, http/1.1 request size larger than 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1102", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_1_100", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_upload_throughput_10_50": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/1.0, http/1.1 request size between 10MB and 50MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1060", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_1_10_50", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_1_upload_throughput_50_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/1.0, http/1.1 request size between 50MB and 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1081", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_1_50_100", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_download_throughput": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846798" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846798#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-08-12 14:34:50", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/2 requests larger than 10MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d2f3c74ba2b9b7b21a3327ba7d20741f2eaaf59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L897", + "telemetry_mirror": "NETWORKING_HTTP_2_DOWNLOAD_THROUGHPUT", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_download_throughput_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-30 14:32:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/2 requests size larger than 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6f1e035b0b7c1505fe9f92fc94d9998023b64994", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L942", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_download_throughput_10_50": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-30 14:32:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/2 requests between 10MB and 50MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6f1e035b0b7c1505fe9f92fc94d9998023b64994", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L917", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_download_throughput_50_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909931" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-30 14:32:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/2 requests between 50MB and 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "6f1e035b0b7c1505fe9f92fc94d9998023b64994", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L937", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_upload_throughput": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-14 00:37:11", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/2 requests larger than 10MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0edb062880301a54cb6553b19bfa4edfb09398c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1018", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_2", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_upload_throughput_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/2 request size larger than 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1165", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_2_100", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_upload_throughput_10_50": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/2 request size between 10MB and 50MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1123", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_2_10_50", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_2_upload_throughput_50_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/2 request size between 50MB and 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1144", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_2_50_100", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_connection_close_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1926258" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1926258" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-06 08:21:25", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of HTTP3 connections closed, labeled by reason.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "72924760ab39eba1dadbd32d98ab2bc08451b4d2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "Application", + "NoError", + "InternalError", + "ConnectionRefused", + "FlowControlError", + "StreamLimitError", + "StreamStateError", + "FinalSizeError", + "FrameEncodingError", + "TransportParameterError", + "ProtocolViolation", + "InvalidToken", + "ApplicationError", + "CryptoBufferExceeded", + "CryptoError", + "QlogError", + "CryptoAlert", + "EchRetry", + "AckedUnsentPacket", + "ConnectionIdLimitExceeded", + "ConnectionIdsExhausted", + "ConnectionState", + "DecodingFrame", + "DecryptError", + "DisabledVersion", + "IdleTimeout", + "IntegerOverflow", + "InvalidInput", + "InvalidMigration", + "InvalidPacket", + "InvalidResumptionToken", + "InvalidRetry", + "InvalidStreamId", + "KeysDiscarded", + "KeysExhausted", + "KeysPending", + "KeyUpdateBlocked", + "NoAvailablePath", + "NoMoreData", + "NotAvailable", + "NotConnected", + "PacketNumberOverlap", + "PeerApplicationError", + "PeerError", + "StatelessReset", + "TooMuchData", + "UnexpectedMessage", + "UnknownConnectionId", + "UnknownFrameType", + "VersionNegotiation", + "WrongRole" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1312", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_download_throughput": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846798" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1846798#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-08-12 14:34:50", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/3 requests larger than 10MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d2f3c74ba2b9b7b21a3327ba7d20741f2eaaf59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L947", + "telemetry_mirror": "NETWORKING_HTTP_3_DOWNLOAD_THROUGHPUT", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_download_throughput_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909663" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909663" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-25 12:17:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/3 requests size larger than 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7fc891f97cd2f2e505a30089d62cf279579be132", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L992", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_download_throughput_10_50": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909663" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909663" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-25 12:17:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/3 requests between 10MB and 50MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7fc891f97cd2f2e505a30089d62cf279579be132", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L967", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_download_throughput_50_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909663" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909663" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-25 12:17:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The download throughput for http/3 requests between 50MB and 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7fc891f97cd2f2e505a30089d62cf279579be132", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 10000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L987", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_ecn_ce_ect0_ratio": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-11 08:22:13", + "last": "2024-09-27 00:21:51" + }, + "description": "HTTP3: ECN CE to ECT0 ratio (multiply by 10000).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "36dc3888a170f91479d0ea13806ef7e82cc98ec3", + "last": "0fd526033bf85d13391a789503d37ef30d67b81e" + }, + "histogram_type": "exponential", + "labels": [ + "tx", + "rx" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "range_max": 2000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/0fd526033bf85d13391a789503d37ef30d67b81e/netwerk/metrics.yaml#L1000", + "type": "labeled_custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_ecn_ce_ect0_ratio_received": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-27 12:06:14", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c0ce7b63ee393db41667a03bfcd9be56b11dd62", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "range_max": 2000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1269", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_ecn_ce_ect0_ratio_sent": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-27 12:06:14", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP3: ECN CE to ECT0 ratio (multiply by 10000) sent.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0c0ce7b63ee393db41667a03bfcd9be56b11dd62", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "range_max": 2000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1248", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_ecn_path_capability": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902065" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-30 09:16:28", + "last": "2025-01-30 09:16:28" + }, + "description": "Number of paths known to be ECN capable or not-capable.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "112b2068a3aea9cc8c13466af21f3945b76b7f67", + "last": "112b2068a3aea9cc8c13466af21f3945b76b7f67" + }, + "labels": [ + "capable", + "black-hole", + "bleaching", + "received-unsent-ect-1" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/112b2068a3aea9cc8c13466af21f3945b76b7f67/netwerk/metrics.yaml#L1274", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_loss_ratio": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917778" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1917778" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-26 09:12:18", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP3: packet loss ratio (multiply by 10000).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3cbe91eabcee3c1c61284246adb4813106f98840", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "range_max": 2000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1292", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_quic_frame_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1929818" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1929818" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-12 10:10:35", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of QUIC frames send and received by type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e9b29c8c0b8f94971cd0b08bb4f08d66d7211664", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ack_tx", + "ack_rx", + "crypto_tx", + "crypto_rx", + "stream_tx", + "stream_rx", + "reset_stream_tx", + "reset_stream_rx", + "stop_sending_tx", + "stop_sending_rx", + "ping_tx", + "ping_rx", + "padding_tx", + "padding_rx", + "max_streams_tx", + "max_streams_rx", + "streams_blocked_tx", + "streams_blocked_rx", + "max_data_tx", + "max_data_rx", + "data_blocked_tx", + "data_blocked_rx", + "max_stream_data_tx", + "max_stream_data_rx", + "stream_data_blocked_tx", + "stream_data_blocked_rx", + "new_connection_id_tx", + "new_connection_id_rx", + "retire_connection_id_tx", + "retire_connection_id_rx", + "path_challenge_tx", + "path_challenge_rx", + "path_response_tx", + "path_response_rx", + "connection_close_tx", + "connection_close_rx", + "handshake_done_tx", + "handshake_done_rx", + "new_token_tx", + "new_token_rx", + "ack_frequency_tx", + "ack_frequency_rx", + "datagram_tx", + "datagram_rx" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1381", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_udp_datagram_segment_size_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-16 09:58:42", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP3 UDP datagram size received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4a42f945c6ff0d42153619dc6eeaf08055210e00", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1964", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_udp_datagram_segment_size_sent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-16 09:58:42", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP3 UDP datagram segment size sent.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4a42f945c6ff0d42153619dc6eeaf08055210e00", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1948", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_udp_datagram_segments_received": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-16 09:58:42", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP3 UDP number of segments per datagram received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4a42f945c6ff0d42153619dc6eeaf08055210e00", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "range_max": 128, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1996", + "type": "custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_udp_datagram_size_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1906853" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-16 09:58:42", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP3 UDP datagram size received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4a42f945c6ff0d42153619dc6eeaf08055210e00", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "minden@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1980", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_upload_throughput": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-14 00:37:11", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/3 requests larger than 10MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0edb062880301a54cb6553b19bfa4edfb09398c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1039", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_3", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_upload_throughput_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/3 request size larger than 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1228", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_3_100", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_upload_throughput_10_50": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/3 request size between 10MB and 50MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1186", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_3_10_50", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_3_upload_throughput_50_100": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866739" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1858256#c2" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-12-09 02:02:34", + "last": "2025-02-04 14:27:22" + }, + "description": "The upload throughput for http/3 request size between 50MB and 100MB. Measured in megabits per second, Mbps.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5c75a81cb3fda4496f7a977ad20835a3cef47a98", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "range_max": 5000, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1207", + "telemetry_mirror": "HTTP_UPLOAD_THROUGHPUT_MBPS_HTTP_3_50_100", + "type": "custom_distribution", + "unit": "mbps", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_disposition": { + "bugs": [ + "https://bugzilla.mozilla.org/1341128", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Channel Disposition for HTTP and HTTPS: cancel, disk, net_ok, net_early_fail, and net_late_fail\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "http_cancelled", + "http_disk", + "http_net_ok", + "http_net_early_fail", + "http_net_late_fail", + "https_cancelled", + "https_disk", + "https_net_ok", + "https_net_early_fail", + "https_net_late_fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1659", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_disposition_disabled_no_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/1440701", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Upgrading display content Channel Disposition (key: disabled_no_reason)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cancel", + "disk", + "net_ok", + "net_early_fail", + "net_late_fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1719", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_disposition_disabled_upgrade": { + "bugs": [ + "https://bugzilla.mozilla.org/1440701", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Upgrading display content Channel Disposition (key: disable_upgrade)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cancel", + "disk", + "net_ok", + "net_early_fail", + "net_late_fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1714", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_disposition_disabled_wont": { + "bugs": [ + "https://bugzilla.mozilla.org/1440701", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Upgrading display content Channel Disposition (key: disabled_wont)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cancel", + "disk", + "net_ok", + "net_early_fail", + "net_late_fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1724", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_disposition_enabled_no_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/1440701", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Upgrading display content Channel Disposition (key: enabled_no_reason)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cancel", + "disk", + "net_ok", + "net_early_fail", + "net_late_fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1704", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_disposition_enabled_upgrade": { + "bugs": [ + "https://bugzilla.mozilla.org/1440701", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Upgrading display content Channel Disposition (key: enable_upgrade)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cancel", + "disk", + "net_ok", + "net_early_fail", + "net_late_fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1683", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_disposition_enabled_wont": { + "bugs": [ + "https://bugzilla.mozilla.org/1440701", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Upgrading display content Channel Disposition (key: enabled_wont)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "cancel", + "disk", + "net_ok", + "net_early_fail", + "net_late_fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1709", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_onstart_status": { + "bugs": [ + "https://bugzilla.mozilla.org/1473333", + "https://bugzilla.mozilla.org/1587226", + "https://bugzilla.mozilla.org/1898248" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898248" + ], + "dates": { + "first": "2024-06-17 09:55:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether successfully started HTTP channels\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c199cf697b1e4b6bb41ce503327b9ab84cd1b743", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "successful", + "fail" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1729", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_onstart_success_https_rr": { + "bugs": [ + "https://bugzilla.mozilla.org/1682552" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1682552" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "Successfully started HTTP channels when HTTPS RR is used\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "success", + "failure", + "success_ech_used", + "failure_ech_used" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1641", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_page_open_to_first_sent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in milliseconds from AsyncOpen to first byte of request sent, applicable for page loads without HTTPS RR\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1746", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_page_open_to_first_sent_https_rr": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in milliseconds from AsyncOpen to first byte of request sent, applicable for page loads with HTTPS RR\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1780", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_sub_open_to_first_sent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in milliseconds from AsyncOpen to first byte of request sent, applicable for sub-resource loads without HTTPS RR\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1763", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_channel_sub_open_to_first_sent_https_rr": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in milliseconds from AsyncOpen to first byte of request sent, applicable for sub-resource loads with HTTPS RR\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1851", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_cssloader_ondatafinished_to_onstop_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1883391", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902186" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1883391" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-04 10:46:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between processing OnDataFinished and processing OnStopRequest for CSSLoader in the content process\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "e965799809784ec3bd518e0652bf7071365afa8c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L782", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_html5parser_ondatafinished_to_onstop_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-04 10:46:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between processing OnDataFinished and processing OnStopRequest (if OnDataFinished comes first)\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "e965799809784ec3bd518e0652bf7071365afa8c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "rjesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L764", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_html5parser_ondatafinished_to_onstop_delay_negative": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-30 03:03:42", + "last": "2024-03-28 02:03:07" + }, + "description": "The time between processing OnStopRequest and processing OnDataFinished (if OnStopRequest comes first)\n", + "disabled": false, + "expires": 130, + "gecko_datapoint": "", + "git-commits": { + "first": "da20da46fa28b1b9fee9a305aa04d5911ccf639a", + "last": "28cc363411d2029aed04c969c8f98785cae110db" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "rjesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/28cc363411d2029aed04c969c8f98785cae110db/netwerk/metrics.yaml#L487", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_ondatafinished_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615#c", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-04 10:46:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between dispatching OnDataFinished from the socket thread and processing it on main/background thread.\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "e965799809784ec3bd518e0652bf7071365afa8c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "rjesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L707", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_ondatafinished_delay_2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913140" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615#c", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-04 10:46:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between dispatching OnDataFinished from the socket thread and processing it on the background thread.\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "e965799809784ec3bd518e0652bf7071365afa8c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "jesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L726", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_ondatafinished_to_onstop_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615#c", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-04 10:46:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between processing OnDataFinished and processing OnStopRequest (if OnDataFinished comes first)\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "e965799809784ec3bd518e0652bf7071365afa8c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "rjesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L746", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_ondatafinished_to_onstop_delay_negative": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857615#c" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-10-30 03:03:42", + "last": "2024-03-28 02:03:07" + }, + "description": "The time between processing OnStopRequest and processing OnDataFinished (if OnStopRequest comes first)\n", + "disabled": false, + "expires": 130, + "gecko_datapoint": "", + "git-commits": { + "first": "da20da46fa28b1b9fee9a305aa04d5911ccf639a", + "last": "28cc363411d2029aed04c969c8f98785cae110db" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "rjesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/28cc363411d2029aed04c969c8f98785cae110db/netwerk/metrics.yaml#L455", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_onstart_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926#c", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-04 10:46:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between dispatching OnStartRequest from the socket thread and processing it on the main thread (content process).\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "e965799809784ec3bd518e0652bf7071365afa8c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "rjesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L671", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_content_onstop_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1857926#c", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-04 10:46:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between dispatching OnStopRequest from the socket thread and processing it on the main thread (content process).\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "e965799809784ec3bd518e0652bf7071365afa8c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "rjesup@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L689", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_ip_addr_any_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914583" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1914583" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-09-26 04:39:23", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times we see the IP address 0.0.0.0 or its IPv6 equivalent.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "74dad80c2a3da0199aac91ae2cb6a8201375c22d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "not_blocked_requests", + "blocked_requests" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L798", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_ip_addr_any_hostnames": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1937743" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1937743" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-12-18 14:54:52", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times we see the IP address 0.0.0.0 or its IPv6 equivalent used as hostnames\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "fb94d43401648798def0d525cc207637b4f19f51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "success", + "failure" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L815", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_onstart_suspend_total_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897209", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1347948" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897209" + ], + "dates": { + "first": "2024-05-23 01:13:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Time in milliseconds that http channel spent suspended between AsyncOpen and OnStartRequest.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "38a03e28364af24ae10768bcb4b629465a0f727c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L832", + "telemetry_mirror": "HTTP_ONSTART_SUSPEND_TOTAL_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_redirect_to_scheme_subresource": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1413512", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1567462", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897290" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897290" + ], + "dates": { + "first": "2024-05-30 14:04:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Count of the HTTP redirection that triggered by subresource, keyed by the URL scheme redirected to\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7715a55a47857bf3fec7a9f514a3513c659e1d60", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1571", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_redirect_to_scheme_top_level": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1413512", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1567462", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897290" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1897290" + ], + "dates": { + "first": "2024-05-30 14:04:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Count of the HTTP redirection that triggered by top-level document, keyed by the URL scheme redirected to\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7715a55a47857bf3fec7a9f514a3513c659e1d60", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1556", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_response_status_code": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896350", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903410" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1896350" + ], + "dates": { + "first": "2024-06-24 11:39:59", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP Response Status Code (200, 301, 302, 304, 307, 308, 400, 401, 403, 404, 421, 425, 429, other 400 and 500)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f064507b8f0131de3ec55db7d226bd9fdc962f1f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "200_ok", + "301_moved_permanently", + "302_found", + "304_not_modified", + "307_temporary_redirect", + "308_permanent_redirect", + "400_bad_request", + "401_unauthorized", + "403_forbidden", + "404_not_found", + "421_misdirected_request", + "425_too_early", + "429_too_many_requests", + "other_4xx", + "other_5xx", + "other" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "smayya@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1593", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_response_version": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876776" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876776#c2" + ], + "dates": { + "first": "2024-02-09 00:10:20", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTP protocol version used on response from nsHttp.h\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d40ed7e466bea61b6319fa4918b224320a132d85", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "unknown", + "http_1", + "http_2", + "http_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1576", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_http_to_https_upgrade_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1883954", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922559" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1883954" + ], + "dates": { + "first": "2024-10-18 07:52:58", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a top-level HTTP request gets upgraded to HTTPS and the reason for it\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "055d8c7ec774783830607cd17c30231c1d934802", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "not_initialized", + "not_initialized_https", + "no_upgrade", + "no_upgrade_https", + "already_https", + "hsts", + "https_only_upgrade", + "https_only_upgrade_downgrade", + "https_first_upgrade", + "https_first_upgrade_downgrade", + "https_first_schemeless_upgrade", + "https_first_schemeless_upgrade_downgrade", + "csp_uir", + "https_rr", + "web_extension_upgrade", + "upgrade_exception", + "skip_upgrade" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "ckerschb@mozilla.com", + "freddyb@mozilla.com", + "kershaw@mozilla.com", + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1797", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_https_http_or_local": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1933672" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1933672" + ], + "dates": { + "first": "2024-12-04 00:15:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a top-level request is HTTPS, HTTP, or HTTP for local domain\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "25140a06a912954c940da5918485ef8e0188df28", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "load_is_https", + "load_is_http", + "load_is_http_for_local_domain" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "ckerschb@mozilla.com", + "kershaw@mozilla.com", + "necko@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1832", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_https_record_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1931349" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1931349" + ], + "dates": { + "first": "2024-11-18 15:29:01", + "last": "2025-02-04 14:27:22" + }, + "description": "Gather the outcome of checking if a HTTPS record can be used: - \"invalid\" - \"succeeded\" - \"unmatched_cname\" - \"all_excluded\" - \"no_default_alpn\" - \"others\"\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3fa8710146e92c7adf17822cd8c4c557c6121393", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "invalid", + "succeeded", + "unmatched_cname", + "all_excluded", + "no_default_alpn", + "others" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1301", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_https_rr_prefs_usage": { + "bugs": [ + "https://bugzil.la/1686421" + ], + "data_reviews": [ + "https://bugzil.la/1686421" + ], + "dates": { + "first": "2024-10-18 10:58:19", + "last": "2025-02-04 14:27:22" + }, + "description": "A bitfield representation for the usage of HTTPS RR prefs. bit 0: network.dns.upgrade_with_https_rr is enabled or not. bit 1: network.dns.use_https_rr_as_altsvc is enabled or not. bit 2: network.dns.echconfig.enabled is enabled or not. This metric was generated to correspond to the Legacy Telemetry scalar networking.https_rr_prefs_usage.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f52b609435c3ecdb0ce115de9119e4038b74121c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1196", + "telemetry_mirror": "NETWORKING_HTTPS_RR_PREFS_USAGE", + "type": "quantity", + "unit": "bitfield", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_https_rr_presented": { + "bugs": [ + "https://bugzilla.mozilla.org/1686421" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1686421" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "HTTPS RR is presented or not\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "presented", + "presented_with_http3", + "none" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1624", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_https_upgrade_with_https_rr": { + "bugs": [ + "https://bugzilla.mozilla.org/1686421" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1686421" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2024-06-24 11:39:59" + }, + "description": "Whether an HTTP request gets upgraded to HTTPS because of HTTPS RR\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "f064507b8f0131de3ec55db7d226bd9fdc962f1f" + }, + "labels": [ + "https_rr", + "others" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 1 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f064507b8f0131de3ec55db7d226bd9fdc962f1f/netwerk/metrics.yaml#L967", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_loading_certs_task": { + "bugs": [ + "https://bugzil.la/1628734" + ], + "data_reviews": [ + "https://bugzil.la/1628734" + ], + "dates": { + "first": "2024-10-30 00:16:42", + "last": "2025-02-04 14:27:22" + }, + "description": "The time in milliseconds to load any external certificates. This occurs off of the main-thread, but can block main-thread operations. This metric was generated to correspond to the Legacy Telemetry scalar networking.loading_certs_task.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "009200073cb54f0b94cc66569d233c967b8bd514", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "mconley@mozilla.com", + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L347", + "telemetry_mirror": "NETWORKING_LOADING_CERTS_TASK", + "type": "quantity", + "unit": "millisecond", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_nss_initialization": { + "bugs": [ + "https://bugzil.la/1628734" + ], + "data_reviews": [ + "https://bugzil.la/1628734" + ], + "dates": { + "first": "2024-10-30 00:16:42", + "last": "2025-02-04 14:27:22" + }, + "description": "The time in milliseconds to initialize the NSS component in the parent process. This metric was generated to correspond to the Legacy Telemetry scalar networking.nss_initialization.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "009200073cb54f0b94cc66569d233c967b8bd514", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "mconley@mozilla.com", + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L329", + "telemetry_mirror": "NETWORKING_NSS_INITIALIZATION", + "type": "quantity", + "unit": "millisecond", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_os_socket_limit_reached": { + "bugs": [ + "https://bugzilla.mozilla.org/1901855" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901855#c1" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-07-10 14:20:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the os socket limit was reached. i.e. CanAttachSocket() returned false.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c94a178124c16f355d8fe9b4becc384729f0d57e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1933", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_proxy_info_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879848", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928273" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1879848", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1928273" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-21 10:17:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The proxies configurations created in the browser session (SOCKSv4, SOCKSv5, HTTP, HTTPS)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d520427cc0bf2ab958fe3047f5309c987865219d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "http", + "https", + "socks4", + "socks4a", + "socks5", + "socks5h", + "direct", + "unknown" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1884", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_residual_cache_folder_count": { + "bugs": [ + "https://bugzilla.mozilla.org/1848542" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1848542" + ], + "dates": { + "first": "2024-12-02 12:41:30", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often we find a cache folder that wasn't purged at shutdown by a background task process.\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "02d58839263c2b165c7cb833a3fde406fcff444a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1479", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_residual_cache_folder_removal": { + "bugs": [ + "https://bugzilla.mozilla.org/1848542" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1848542" + ], + "dates": { + "first": "2024-12-02 12:41:30", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts how often succeed/fail in removing cache folder that wasn't purged at shutdown\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "02d58839263c2b165c7cb833a3fde406fcff444a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "success", + "failure" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "vgosu@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1492", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_set_cookie": { + "bugs": [ + "https://bugzilla.mozilla.org/1865199", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1865199#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184#c7" + ], + "dates": { + "first": "2024-08-27 16:03:18", + "last": "2025-02-04 14:27:22" + }, + "description": "This counts the number of times we set a cookie. Introduced as a denomenator for measuring CHIPS adoption.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "1e8a1a416bb3f3e683f8933f1ac005b17b939d5e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "bvandersloot@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L350", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_set_cookie_expired_without_server_time": { + "bugs": [ + "https://bugzilla.mozilla.org/1909980", + "https://bugzilla.mozilla.org/1916532" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909980#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1916532#c7" + ], + "dates": { + "first": "2024-09-11 00:19:07", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "networking.set_cookie", + "description": "This counts the number of times a cookie is set already expires but it would not if we considered the server time.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "0b5004fff04d74cb2ad848cf37601d927ea62b46", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "baku@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L415", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_set_cookie_foreign": { + "bugs": [ + "https://bugzilla.mozilla.org/1865199", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1865199#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184#c7" + ], + "dates": { + "first": "2024-08-27 16:03:18", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "networking.set_cookie", + "description": "This counts the number of times we set a cookie from a foreign (not same-site) context. Introduced as a denomenator for measuring CHIPS adoption.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "1e8a1a416bb3f3e683f8933f1ac005b17b939d5e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "bvandersloot@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L365", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_set_cookie_foreign_partitioned": { + "bugs": [ + "https://bugzilla.mozilla.org/1865199", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1865199#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184#c7" + ], + "dates": { + "first": "2024-08-27 16:03:18", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "networking.set_cookie", + "description": "This counts the number of times we set a cookie that has the Partitioned attribute in a foreign (not same-site) context. This tracks the adoption of CHIPS.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "1e8a1a416bb3f3e683f8933f1ac005b17b939d5e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "bvandersloot@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L398", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_set_cookie_partitioned": { + "bugs": [ + "https://bugzilla.mozilla.org/1865199", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1865199#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912184#c7" + ], + "dates": { + "first": "2024-08-27 16:03:18", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "networking.set_cookie", + "description": "This counts the number of times we set a cookie that has the Partitioned attribute. This tracks the adoption of CHIPS.\n", + "disabled": false, + "expires": 138, + "gecko_datapoint": "", + "git-commits": { + "first": "1e8a1a416bb3f3e683f8933f1ac005b17b939d5e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "bvandersloot@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L382", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_set_invalid_first_party_partitioned_cookie": { + "bugs": [ + "https://bugzilla.mozilla.org/1922193" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1922193" + ], + "dates": { + "first": "2024-10-22 14:20:32", + "last": "2025-02-04 14:27:22" + }, + "description": "This counts the number of times we set an invalid first-party partitioned cookie.\n", + "disabled": false, + "expires": 146, + "gecko_datapoint": "", + "git-commits": { + "first": "466d4fe62564c21c37a626ed91d0b8c67fee4290", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "bvandersloot@mozilla.com", + "tihuang@mozilla.com", + "edgul@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L233", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_speculative_connect_outcome": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=909865" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=909865" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-03-16 00:14:02", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the occurrence of each outcome of a speculative connection\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "703b1846fd63045669a8716af48b3d33fb36452c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "successful", + "aborted_socket_limit", + "aborted_socket_fail", + "aborted_https_not_enabled" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L14", + "telemetry_mirror": "NETWORKING_SPECULATIVE_CONNECT_OUTCOME", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_speculative_connection_outcome": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=909865" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=909865" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-03-09 00:52:54", + "last": "2023-03-09 00:52:54" + }, + "description": "Counts the occurrence of each outcome of a speculative connection\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cb6b23ff4fc95fd6ba59270d8b7cffc9f9bbb842", + "last": "cb6b23ff4fc95fd6ba59270d8b7cffc9f9bbb842" + }, + "labels": [ + "successful", + "aborted_socket_limit", + "aborted_socket_fail", + "aborted_https_not_enabled" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "acreskey@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/cb6b23ff4fc95fd6ba59270d8b7cffc9f9bbb842/netwerk/metrics.yaml#L14", + "telemetry_mirror": "NETWORKING_SPECULATIVE_CONNECTION_OUTCOME", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_sqlite_cookies_block_main_thread": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=870460" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=870460" + ], + "dates": { + "first": "2024-10-10 13:36:16", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent on blocking main thread by startup cookie database read (in milliseconds), only for blocking case\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9407ddb9a97ab0c7b4d60efc036cbca5fc9eab7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L322", + "telemetry_mirror": "MOZ_SQLITE_COOKIES_BLOCK_MAIN_THREAD_MS_V2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_sqlite_cookies_time_to_block_main_thread": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1413839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1413839" + ], + "dates": { + "first": "2024-10-10 13:36:16", + "last": "2025-02-04 14:27:22" + }, + "description": "How long (in milliseconds) after we finished reading the cookie db until the first cookie request came in (0 implies we blocked the main thread)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a9407ddb9a97ab0c7b4d60efc036cbca5fc9eab7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L336", + "telemetry_mirror": "MOZ_SQLITE_COOKIES_TIME_TO_BLOCK_MAIN_THREAD_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_transaction_wait_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from submission to dispatch of transaction without HTTPS RR (ms)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1917", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_transaction_wait_time_https_rr": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1697480" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-01-24 00:09:06", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from submission to dispatch of transaction when HTTPS RR is used (ms)\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a0bacae980781143a73374705e16710049dc592c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1868", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_complete_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, overall load time.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L543", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_connection_cycle_count": { + "bugs": [ + "https://bugzil.la/1737198" + ], + "data_reviews": [ + "https://bugzil.la/1737198" + ], + "dates": { + "first": "2024-10-18 10:58:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times we cycled the TRR connection during a subsession. Keyed by TRR provider URL. This metric was generated to correspond to the Legacy Telemetry scalar networking.trr_connection_cycle_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f52b609435c3ecdb0ce115de9119e4038b74121c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "nhnt11@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1216", + "telemetry_mirror": "NETWORKING_TRR_CONNECTION_CYCLE_COUNT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_dns_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, time from the DNS request being issued to the response.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L503", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_dns_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, time from connection open to the DNS request being issued.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L468", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_fetch_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922235" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922235" + ], + "dates": { + "first": "2024-10-09 13:21:56", + "last": "2025-02-04 14:27:22" + }, + "description": "Time for a successful DoH request, from AsyncOpen to ReturnData\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f9a0dc88e8bddb2a5c936a61fb85b724e1ec648d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "h1", + "h1_network_only", + "h2", + "h2_network_only", + "h3", + "h3_network_only" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L449", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_first_sent_to_last_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, time from first byte of request sent to last byte of response received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L530", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_open_to_first_received": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, time from open to first byte of reply received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L537", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_open_to_first_sent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, time from open to first byte of request.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L524", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_request_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866245", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1902190" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866245" + ], + "dates": { + "first": "2024-06-14 00:15:44", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of successful TRR requests keyed by regular/private browsing\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "9e46b7e834f0f7d54fb252c8a987d1790122c0db", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "regular", + "private" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "vgosu@mozilla.com", + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1523", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_request_count_per_conn": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1916352" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1916352" + ], + "dates": { + "first": "2024-09-05 08:48:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of DOH requests per connection keyed by HTTP version\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e3faf386b805b9e9b606aaf202b82833e109a916", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "h1", + "h2", + "h3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "kershaw@mozilla.com", + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L1540", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_tcp_connection": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, time from the TCP SYN packet is received to the connection is established and ready for HTTP.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L510", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "networking_trr_tls_handshake": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1922238" + ], + "dates": { + "first": "2024-11-27 15:28:48", + "last": "2025-02-04 14:27:22" + }, + "description": "In TRR channel, time from after the TCP SYN packet is received to the secure connection is established and ready for HTTP.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bd625f6ed4db368383766fca2afa7ecf02411314", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "mozilla.cloudflare-dns.com", + "firefox.dns.nextdns.io", + "private.canadianshield.cira.ca", + "doh.xfinity.com", + "dns.shaw.ca", + "dooh.cloudflare-dns.com", + "mozilla.cloudflare-dns.com_2", + "firefox.dns.nextdns.io_2", + "private.canadianshield.cira.ca_2", + "doh.xfinity.com_2", + "dns.shaw.ca_2", + "dooh.cloudflare-dns.com_2", + "mozilla.cloudflare-dns.com_3", + "firefox.dns.nextdns.io_3", + "private.canadianshield.cira.ca_3", + "doh.xfinity.com_3", + "dns.shaw.ca_3", + "dooh.cloudflare-dns.com_3" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L517", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_addon_rollout": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has succeeded. This event was generated to correspond to the Legacy Telemetry event normandy.enroll#addon_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was installed.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The slug of the branch that was chosen for this client.\n", + "type": "string" + }, + "experimentType": { + "description": "For preference_study and nimbus_experiment recipes, the type of experiment this is (\"exp\" or \"exp-highpop\").\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L82", + "telemetry_mirror": "Normandy_Enroll_AddonRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_addon_study": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has succeeded. This event was generated to correspond to the Legacy Telemetry event normandy.enroll#addon_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was installed.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The slug of the branch that was chosen for this client.\n", + "type": "string" + }, + "experimentType": { + "description": "For preference_study and nimbus_experiment recipes, the type of experiment this is (\"exp\" or \"exp-highpop\").\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L54", + "telemetry_mirror": "Normandy_Enroll_AddonStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_failed_addon_rollout": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has failed. This event was generated to correspond to the Legacy Telemetry event normandy.enrollFailed#addon_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "The ID of the addon for the rollout when reason=conflict.\n", + "type": "string" + }, + "branch": { + "description": "The branch that failed to enroll.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "The slug for the conflicting rollout.\n", + "type": "string" + }, + "detail": { + "description": "For addon_study and branched_addon study, extra text describing the failure.\n", + "type": "string" + }, + "enrollmentId": { + "description": "The enrollment ID of the conflicting rollout.\n", + "type": "string" + }, + "prefBranch": { + "description": "For preference_study when reason=invalid-branch, the branch that was invalid.\n", + "type": "string" + }, + "preference": { + "description": "For preference_rollout when reason=conflict, the name of the preference that was going to be modified.\n", + "type": "string" + }, + "reason": { + "description": "An error code describing the failure.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L192", + "telemetry_mirror": "Normandy_Enrollfailed_AddonRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_failed_addon_study": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has failed. This event was generated to correspond to the Legacy Telemetry event normandy.enrollFailed#addon_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "The ID of the addon for the rollout when reason=conflict.\n", + "type": "string" + }, + "branch": { + "description": "The branch that failed to enroll.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "The slug for the conflicting rollout.\n", + "type": "string" + }, + "detail": { + "description": "For addon_study and branched_addon study, extra text describing the failure.\n", + "type": "string" + }, + "enrollmentId": { + "description": "The enrollment ID of the conflicting rollout.\n", + "type": "string" + }, + "prefBranch": { + "description": "For preference_study when reason=invalid-branch, the branch that was invalid.\n", + "type": "string" + }, + "preference": { + "description": "For preference_rollout when reason=conflict, the name of the preference that was going to be modified.\n", + "type": "string" + }, + "reason": { + "description": "An error code describing the failure.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L110", + "telemetry_mirror": "Normandy_Enrollfailed_AddonStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_failed_nimbus_experiment": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has failed. This event was generated to correspond to the Legacy Telemetry event normandy.enrollFailed#nimbus_experiment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "The ID of the addon for the rollout when reason=conflict.\n", + "type": "string" + }, + "branch": { + "description": "The branch that failed to enroll.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "The slug for the conflicting rollout.\n", + "type": "string" + }, + "detail": { + "description": "For addon_study and branched_addon study, extra text describing the failure.\n", + "type": "string" + }, + "enrollmentId": { + "description": "The enrollment ID of the conflicting rollout.\n", + "type": "string" + }, + "prefBranch": { + "description": "For preference_study when reason=invalid-branch, the branch that was invalid.\n", + "type": "string" + }, + "preference": { + "description": "For preference_rollout when reason=conflict, the name of the preference that was going to be modified.\n", + "type": "string" + }, + "reason": { + "description": "An error code describing the failure.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L205", + "telemetry_mirror": "Normandy_Enrollfailed_NimbusExperiment", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_failed_preference_rollout": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has failed. This event was generated to correspond to the Legacy Telemetry event normandy.enrollFailed#preference_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "The ID of the addon for the rollout when reason=conflict.\n", + "type": "string" + }, + "branch": { + "description": "The branch that failed to enroll.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "The slug for the conflicting rollout.\n", + "type": "string" + }, + "detail": { + "description": "For addon_study and branched_addon study, extra text describing the failure.\n", + "type": "string" + }, + "enrollmentId": { + "description": "The enrollment ID of the conflicting rollout.\n", + "type": "string" + }, + "prefBranch": { + "description": "For preference_study when reason=invalid-branch, the branch that was invalid.\n", + "type": "string" + }, + "preference": { + "description": "For preference_rollout when reason=conflict, the name of the preference that was going to be modified.\n", + "type": "string" + }, + "reason": { + "description": "An error code describing the failure.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L166", + "telemetry_mirror": "Normandy_Enrollfailed_PreferenceRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_failed_preference_study": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has failed. This event was generated to correspond to the Legacy Telemetry event normandy.enrollFailed#preference_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "The ID of the addon for the rollout when reason=conflict.\n", + "type": "string" + }, + "branch": { + "description": "The branch that failed to enroll.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "The slug for the conflicting rollout.\n", + "type": "string" + }, + "detail": { + "description": "For addon_study and branched_addon study, extra text describing the failure.\n", + "type": "string" + }, + "enrollmentId": { + "description": "The enrollment ID of the conflicting rollout.\n", + "type": "string" + }, + "prefBranch": { + "description": "For preference_study when reason=invalid-branch, the branch that was invalid.\n", + "type": "string" + }, + "preference": { + "description": "For preference_rollout when reason=conflict, the name of the preference that was going to be modified.\n", + "type": "string" + }, + "reason": { + "description": "An error code describing the failure.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L179", + "telemetry_mirror": "Normandy_Enrollfailed_PreferenceStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_nimbus_experiment": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has succeeded. This event was generated to correspond to the Legacy Telemetry event normandy.enroll#nimbus_experiment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was installed.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The slug of the branch that was chosen for this client.\n", + "type": "string" + }, + "experimentType": { + "description": "For preference_study and nimbus_experiment recipes, the type of experiment this is (\"exp\" or \"exp-highpop\").\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L96", + "telemetry_mirror": "Normandy_Enroll_NimbusExperiment", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_preference_rollout": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has succeeded. This event was generated to correspond to the Legacy Telemetry event normandy.enroll#preference_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was installed.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The slug of the branch that was chosen for this client.\n", + "type": "string" + }, + "experimentType": { + "description": "For preference_study and nimbus_experiment recipes, the type of experiment this is (\"exp\" or \"exp-highpop\").\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L68", + "telemetry_mirror": "Normandy_Enroll_PreferenceRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_enroll_preference_study": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a Normandy recipe of the above types has succeeded. This event was generated to correspond to the Legacy Telemetry event normandy.enroll#preference_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was installed.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The slug of the branch that was chosen for this client.\n", + "type": "string" + }, + "experimentType": { + "description": "For preference_study and nimbus_experiment recipes, the type of experiment this is (\"exp\" or \"exp-highpop\").\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L14", + "telemetry_mirror": "Normandy_Enroll_PreferenceStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_exp_pref_changed_preference_study": { + "bugs": [ + "https://bugzil.la/1698684" + ], + "data_reviews": [ + "https://bugzil.la/1698684" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records that a preference that was set by an experiment has been changed away from its experimental value. This can be triggered by a user changing a preference at runtime, by the preference being changed on disk when Firefox is not running, or by the preference already having a user-set value when a user has enrolls in a default branch experiment. This event was generated to correspond to the Legacy Telemetry event normandy.expPrefChanged#preference_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "preferenceName": { + "description": "The preference that changed\n", + "type": "string" + }, + "reason": { + "description": "The way that the preference change was detected (\"observer\", \"sideload\", or \"onEnroll\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "mcooper@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L615", + "telemetry_mirror": "Normandy_Expprefchanged_PreferenceStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_graduate_preference_rollout": { + "bugs": [ + "https://bugzil.la/1443560" + ], + "data_reviews": [ + "https://bugzil.la/1443560" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when a preference rollout ends due to the rolled-out preference becoming a new default. This event was generated to correspond to the Legacy Telemetry event normandy.graduate#preference_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "reason": { + "description": "The reason the rollout graduated\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L585", + "telemetry_mirror": "Normandy_Graduate_PreferenceRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_recipe_freshness": { + "bugs": [ + "https://bugzil.la/1530508" + ], + "data_reviews": [ + "https://bugzil.la/1530508" + ], + "dates": { + "first": "2024-11-15 15:56:05", + "last": "2025-02-04 14:27:22" + }, + "description": "For each recipe ID seen by the Normandy client, its last_modified. This metric was generated to correspond to the Legacy Telemetry scalar normandy.recipe_freshness.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2883978598f787c3f779bcaca649a46e4169881c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "product-delivery@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L696", + "telemetry_mirror": "NORMANDY_RECIPE_FRESHNESS", + "type": "labeled_quantity", + "unit": "revision id", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_addon_rollback": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when a Normandy recipe of certain types \"ends\". N.B. For preference_rollback, this is fired when the recipe is fired (the recipe that \"ends\" is a corresponding preference_rollout). This event was generated to correspond to the Legacy Telemetry event normandy.unenroll#addon_rollback.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study, the ID of the addon that ended.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study, the version of the addon for which the recipe ended.\n", + "type": "string" + }, + "branch": { + "description": "The branch of the experiment that this client was on.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study or nimbus_experiment, the preference that was detected to change that caused the unenrollment.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "For nimbus_experiment, if reason == \"prefFlips-conflict\", the conflicting experiment that caused the unenrollment.\n", + "type": "string" + }, + "didResetValue": { + "description": "For preference_study, \"true\" or \"false\" according to whether we put the preference back the way it was.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "prefName": { + "description": "For nimbus_experiment, if reason == \"prefFlips-failed\", the name of the pref that failed to set.\n", + "type": "string" + }, + "prefType": { + "description": "For nimbus_experiment, if reason = \"prefFlips-failed\", the type of the existing pref value (one of \"bool\", \"string\", \"int\", or \"invalid\").\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason why the recipe ended.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L473", + "telemetry_mirror": "Normandy_Unenroll_AddonRollback", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_addon_study": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when a Normandy recipe of certain types \"ends\". N.B. For preference_rollback, this is fired when the recipe is fired (the recipe that \"ends\" is a corresponding preference_rollout). This event was generated to correspond to the Legacy Telemetry event normandy.unenroll#addon_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study, the ID of the addon that ended.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study, the version of the addon for which the recipe ended.\n", + "type": "string" + }, + "branch": { + "description": "The branch of the experiment that this client was on.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study or nimbus_experiment, the preference that was detected to change that caused the unenrollment.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "For nimbus_experiment, if reason == \"prefFlips-conflict\", the conflicting experiment that caused the unenrollment.\n", + "type": "string" + }, + "didResetValue": { + "description": "For preference_study, \"true\" or \"false\" according to whether we put the preference back the way it was.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "prefName": { + "description": "For nimbus_experiment, if reason == \"prefFlips-failed\", the name of the pref that failed to set.\n", + "type": "string" + }, + "prefType": { + "description": "For nimbus_experiment, if reason = \"prefFlips-failed\", the type of the existing pref value (one of \"bool\", \"string\", \"int\", or \"invalid\").\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason why the recipe ended.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L443", + "telemetry_mirror": "Normandy_Unenroll_AddonStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_failed_addon_rollback": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when unenrolling a user fails (see the unenroll event). This event was generated to correspond to the Legacy Telemetry event normandy.unenrollFailed#addon_rollback.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "caller": { + "description": "The function that caused the stop to happen, included on Nightly to aid debugging.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study, the preference that was detected to change that caused the attempted unenrollment.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "originalReason": { + "description": "The code that would had been used for the unenrollment, had it not failed.\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason the unenroll failed.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L559", + "telemetry_mirror": "Normandy_Unenrollfailed_AddonRollback", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_failed_nimbus_experiment": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when unenrolling a user fails (see the unenroll event). This event was generated to correspond to the Legacy Telemetry event normandy.unenrollFailed#nimbus_experiment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "caller": { + "description": "The function that caused the stop to happen, included on Nightly to aid debugging.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study, the preference that was detected to change that caused the attempted unenrollment.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "originalReason": { + "description": "The code that would had been used for the unenrollment, had it not failed.\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason the unenroll failed.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L572", + "telemetry_mirror": "Normandy_Unenrollfailed_NimbusExperiment", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_failed_preference_rollback": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when unenrolling a user fails (see the unenroll event). This event was generated to correspond to the Legacy Telemetry event normandy.unenrollFailed#preference_rollback.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "caller": { + "description": "The function that caused the stop to happen, included on Nightly to aid debugging.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study, the preference that was detected to change that caused the attempted unenrollment.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "originalReason": { + "description": "The code that would had been used for the unenrollment, had it not failed.\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason the unenroll failed.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L503", + "telemetry_mirror": "Normandy_Unenrollfailed_PreferenceRollback", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_failed_preference_study": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1693402" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when unenrolling a user fails (see the unenroll event). This event was generated to correspond to the Legacy Telemetry event normandy.unenrollFailed#preference_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "caller": { + "description": "The function that caused the stop to happen, included on Nightly to aid debugging.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study, the preference that was detected to change that caused the attempted unenrollment.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "originalReason": { + "description": "The code that would had been used for the unenrollment, had it not failed.\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason the unenroll failed.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L546", + "telemetry_mirror": "Normandy_Unenrollfailed_PreferenceStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_nimbus_experiment": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when a Normandy recipe of certain types \"ends\". N.B. For preference_rollback, this is fired when the recipe is fired (the recipe that \"ends\" is a corresponding preference_rollout). This event was generated to correspond to the Legacy Telemetry event normandy.unenroll#nimbus_experiment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study, the ID of the addon that ended.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study, the version of the addon for which the recipe ended.\n", + "type": "string" + }, + "branch": { + "description": "The branch of the experiment that this client was on.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study or nimbus_experiment, the preference that was detected to change that caused the unenrollment.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "For nimbus_experiment, if reason == \"prefFlips-conflict\", the conflicting experiment that caused the unenrollment.\n", + "type": "string" + }, + "didResetValue": { + "description": "For preference_study, \"true\" or \"false\" according to whether we put the preference back the way it was.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "prefName": { + "description": "For nimbus_experiment, if reason == \"prefFlips-failed\", the name of the pref that failed to set.\n", + "type": "string" + }, + "prefType": { + "description": "For nimbus_experiment, if reason = \"prefFlips-failed\", the type of the existing pref value (one of \"bool\", \"string\", \"int\", or \"invalid\").\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason why the recipe ended.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L488", + "telemetry_mirror": "Normandy_Unenroll_NimbusExperiment", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_preference_rollback": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when a Normandy recipe of certain types \"ends\". N.B. For preference_rollback, this is fired when the recipe is fired (the recipe that \"ends\" is a corresponding preference_rollout). This event was generated to correspond to the Legacy Telemetry event normandy.unenroll#preference_rollback.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study, the ID of the addon that ended.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study, the version of the addon for which the recipe ended.\n", + "type": "string" + }, + "branch": { + "description": "The branch of the experiment that this client was on.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study or nimbus_experiment, the preference that was detected to change that caused the unenrollment.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "For nimbus_experiment, if reason == \"prefFlips-conflict\", the conflicting experiment that caused the unenrollment.\n", + "type": "string" + }, + "didResetValue": { + "description": "For preference_study, \"true\" or \"false\" according to whether we put the preference back the way it was.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "prefName": { + "description": "For nimbus_experiment, if reason == \"prefFlips-failed\", the name of the pref that failed to set.\n", + "type": "string" + }, + "prefType": { + "description": "For nimbus_experiment, if reason = \"prefFlips-failed\", the type of the existing pref value (one of \"bool\", \"string\", \"int\", or \"invalid\").\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason why the recipe ended.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L458", + "telemetry_mirror": "Normandy_Unenroll_PreferenceRollback", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_unenroll_preference_study": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1843126", + "https://bugzil.la/1896718", + "https://bugzil.la/1907649" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when a Normandy recipe of certain types \"ends\". N.B. For preference_rollback, this is fired when the recipe is fired (the recipe that \"ends\" is a corresponding preference_rollout). This event was generated to correspond to the Legacy Telemetry event normandy.unenroll#preference_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study, the ID of the addon that ended.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study, the version of the addon for which the recipe ended.\n", + "type": "string" + }, + "branch": { + "description": "The branch of the experiment that this client was on.\n", + "type": "string" + }, + "changedPref": { + "description": "For preference_study or nimbus_experiment, the preference that was detected to change that caused the unenrollment.\n", + "type": "string" + }, + "conflictingSlug": { + "description": "For nimbus_experiment, if reason == \"prefFlips-conflict\", the conflicting experiment that caused the unenrollment.\n", + "type": "string" + }, + "didResetValue": { + "description": "For preference_study, \"true\" or \"false\" according to whether we put the preference back the way it was.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "prefName": { + "description": "For nimbus_experiment, if reason == \"prefFlips-failed\", the name of the pref that failed to set.\n", + "type": "string" + }, + "prefType": { + "description": "For nimbus_experiment, if reason = \"prefFlips-failed\", the type of the existing pref value (one of \"bool\", \"string\", \"int\", or \"invalid\").\n", + "type": "string" + }, + "reason": { + "description": "A code describing the reason why the recipe ended.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com", + "nimbus-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L368", + "telemetry_mirror": "Normandy_Unenroll_PreferenceStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_update_addon_rollout": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This event is fired when a client detects that a recipe of the ahove types has changed on the server, and the new version of the recipe is being applied over an existing, older version previously fetched from the server. This event was generated to correspond to the Legacy Telemetry event normandy.update#addon_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was updated.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The branch that was updated.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "previousState": { + "description": "For preference_rollout recipes, the state of the rollout that had been applied previously.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L281", + "telemetry_mirror": "Normandy_Update_AddonRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_update_addon_study": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This event is fired when a client detects that a recipe of the ahove types has changed on the server, and the new version of the recipe is being applied over an existing, older version previously fetched from the server. This event was generated to correspond to the Legacy Telemetry event normandy.update#addon_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was updated.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The branch that was updated.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "previousState": { + "description": "For preference_rollout recipes, the state of the rollout that had been applied previously.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L218", + "telemetry_mirror": "Normandy_Update_AddonStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_update_failed_addon_rollout": { + "bugs": [ + "https://bugzil.la/1474413" + ], + "data_reviews": [ + "https://bugzil.la/1474413" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a new version of a Normandy recipe of the above types (over an existing, older version previously fetched from the server) has failed. This event was generated to correspond to the Legacy Telemetry event normandy.updateFailed#addon_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch that failed to update.\n", + "type": "string" + }, + "detail": { + "description": "Extra text describing the failure. Currently only provided for addon_study.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "reason": { + "description": "An error code describing the failure.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L353", + "telemetry_mirror": "Normandy_Updatefailed_AddonRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_update_failed_addon_study": { + "bugs": [ + "https://bugzil.la/1474413" + ], + "data_reviews": [ + "https://bugzil.la/1474413" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when applying a new version of a Normandy recipe of the above types (over an existing, older version previously fetched from the server) has failed. This event was generated to correspond to the Legacy Telemetry event normandy.updateFailed#addon_study.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "The branch that failed to update.\n", + "type": "string" + }, + "detail": { + "description": "Extra text describing the failure. Currently only provided for addon_study.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "reason": { + "description": "An error code describing the failure.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L313", + "telemetry_mirror": "Normandy_Updatefailed_AddonStudy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_update_nimbus_experiment": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This event is fired when a client detects that a recipe of the ahove types has changed on the server, and the new version of the recipe is being applied over an existing, older version previously fetched from the server. This event was generated to correspond to the Legacy Telemetry event normandy.update#nimbus_experiment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was updated.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The branch that was updated.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "previousState": { + "description": "For preference_rollout recipes, the state of the rollout that had been applied previously.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L297", + "telemetry_mirror": "Normandy_Update_NimbusExperiment", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_update_preference_rollout": { + "bugs": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "data_reviews": [ + "https://bugzil.la/1443560", + "https://bugzil.la/1474413" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This event is fired when a client detects that a recipe of the ahove types has changed on the server, and the new version of the recipe is being applied over an existing, older version previously fetched from the server. This event was generated to correspond to the Legacy Telemetry event normandy.update#preference_rollout.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "addonId": { + "description": "For addon_study recipes, the ID of the addon that was updated.\n", + "type": "string" + }, + "addonVersion": { + "description": "For addon_study recipes, the version of the addon that was installed.\n", + "type": "string" + }, + "branch": { + "description": "The branch that was updated.\n", + "type": "string" + }, + "enrollmentId": { + "description": "A unique ID for this enrollment that will be included in all related Telemetry.\n", + "type": "string" + }, + "previousState": { + "description": "For preference_rollout recipes, the state of the rollout that had been applied previously.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "normandy-notifications@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L265", + "telemetry_mirror": "Normandy_Update_PreferenceRollout", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "normandy_validation_failed_nimbus_experiment": { + "bugs": [ + "https://bugzil.la/1762652" + ], + "data_reviews": [ + "https://bugzil.la/1762652" + ], + "dates": { + "first": "2024-10-06 00:22:26", + "last": "2025-02-04 14:27:22" + }, + "description": "This records when validation of a recipe fails. This event was generated to correspond to the Legacy Telemetry event normandy.validationFailed#nimbus_experiment.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "branch": { + "description": "If reason == invalid-branch, the branch that failed validation.\n", + "type": "string" + }, + "feature": { + "description": "If reason == invalid-feature, the invalid feature ID.\n", + "type": "string" + }, + "l10n_ids": { + "description": "If reason == missing-l10n-entry, a comma-separated list of missing localization entries.\n", + "type": "string" + }, + "locale": { + "description": "If reason == missing-locale, the locale that was missing from the localization table. If reason == missing-l10n-entry, the locale that was missing the localization entries.\n", + "type": "string" + }, + "reason": { + "description": "Why validation failed (one of \"invalid-recipe\", \"invalid-branch\", or \"invalid-reason\").\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "906cf04e249dd79ee496f01f9ed79cc16b1ff78c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Normandy Client" + ] + }, + "no_lint": [], + "notification_emails": [ + "beth@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/normandy/metrics.yaml#L653", + "telemetry_mirror": "Normandy_Validationfailed_NimbusExperiment", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ocsp_request_time_cancel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-20 00:16:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The time it takes to make an OCSP request that was cancelled.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b73eea3619ae1536a91a3f72568e77e7db7368b8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L310", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ocsp_request_time_failure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-20 00:16:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The time it takes to make an OCSP request that failed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b73eea3619ae1536a91a3f72568e77e7db7368b8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L292", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ocsp_request_time_success": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913794" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-20 00:16:20", + "last": "2025-02-04 14:27:22" + }, + "description": "The time it takes to make an OCSP request that succeeded.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b73eea3619ae1536a91a3f72568e77e7db7368b8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L274", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "opaque_response_blocking_cross_origin_opaque_response_count": { + "bugs": [ + "https://bugzil.la/1804638" + ], + "data_reviews": [ + "https://bugzil.la/1804638" + ], + "dates": { + "first": "2024-10-18 10:58:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of loads of cross origin opaque resources. This metric was generated to correspond to the Legacy Telemetry scalar opaque.response.blocking.cross_origin_opaque_response_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f52b609435c3ecdb0ce115de9119e4038b74121c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "farre@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1343", + "telemetry_mirror": "OPAQUE_RESPONSE_BLOCKING_CROSS_ORIGIN_OPAQUE_RESPONSE_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "opaque_response_blocking_javascript_validation_count": { + "bugs": [ + "https://bugzil.la/1804638" + ], + "data_reviews": [ + "https://bugzil.la/1804638" + ], + "dates": { + "first": "2024-10-18 10:58:19", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of times we run the JS validator. This metric was generated to correspond to the Legacy Telemetry scalar opaque.response.blocking.javascript_validation_count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f52b609435c3ecdb0ce115de9119e4038b74121c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "farre@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1328", + "telemetry_mirror": "OPAQUE_RESPONSE_BLOCKING_JAVASCRIPT_VALIDATION_COUNT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "orb_block_initiator": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833216" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833216" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The initiator of this ORB blocked request.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram ORB_BLOCK_INITIATOR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "INVALID", + "OTHER", + "FILTERED_FETCH", + "BLOCKED_FETCH", + "JSON", + "SCRIPT", + "IMAGE", + "STYLESHEET", + "XMLHTTPREQUEST", + "DTD", + "FONT", + "MEDIA", + "CSP_REPORT", + "XSLT", + "IMAGESET", + "WEB_MANIFEST", + "SPECULATIVE", + "UA_FONT", + "PROXIED_WEBRTC_MEDIA", + "PING", + "BEACON", + "WEB_TRANSPORT", + "EXCLUDED" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "sefeng@mozilla.com", + "afarre@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1443", + "telemetry_mirror": "h#ORB_BLOCK_INITIATOR", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "orb_block_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833216" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833216" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The reason of why this request was blocked by ORB\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram ORB_BLOCK_REASON.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "MIME_NEVER_SNIFFED", + "RESP_206_BLCLISTED", + "NOSNIFF_BLC_OR_TEXTP", + "RESP_206_NO_FIRST", + "AFTER_SNIFF_MEDIA", + "AFTER_SNIFF_NOSNIFF", + "AFTER_SNIFF_STA_CODE", + "AFTER_SNIFF_CT_FAIL", + "MEDIA_NOT_INITIAL", + "MEDIA_INCORRECT_RESP", + "JS_VALIDATION_FAILED" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "sefeng@mozilla.com", + "afarre@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1414", + "telemetry_mirror": "h#ORB_BLOCK_REASON", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "orb_did_ever_block_response": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1812051" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1812051" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "If any opaque response was blocked for a given top-level window context.\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram ORB_DID_EVER_BLOCK_RESPONSE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "farre@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1395", + "telemetry_mirror": "h#ORB_DID_EVER_BLOCK_RESPONSE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "orb_javascript_validation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1804638" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1804638" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time (in ms) that it takes for a ORB JavaScript validator to complete a validation, including IPC to the validator actor.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram ORB_JAVASCRIPT_VALIDATION_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "farre@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1359", + "telemetry_mirror": "ORB_JAVASCRIPT_VALIDATION_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "orb_receive_data_for_validation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1804638" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1804638" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time (in ms) that it takes to receive data for ORB JavaScript validation, including IPC to the validator actor.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram ORB_RECEIVE_DATA_FOR_VALIDATION_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "farre@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1377", + "telemetry_mirror": "ORB_RECEIVE_DATA_FOR_VALIDATION_MS", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "os_environment_is_admin_without_uac": { + "bugs": [ + "https://bugzil.la/1567219" + ], + "data_reviews": [ + "https://bugzil.la/1567219" + ], + "dates": { + "first": "2024-10-19 07:54:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Indicates that the process is lauched with Admin privileges but without UAC. This metric was generated to correspond to the Legacy Telemetry scalar os.environment.is_admin_without_uac.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "87baf63d1764334f9682f3360596f21a6ddc7b4a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "tkikuchi@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/xre/metrics.yaml#L53", + "telemetry_mirror": "OS_ENVIRONMENT_IS_ADMIN_WITHOUT_UAC", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "oskeystore_self_test": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855759" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1855759" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-10-19 00:33:17", + "last": "2024-03-04 18:21:36" + }, + "description": "Whether or not each step of the OSKeyStore self test succeeded.", + "disabled": false, + "expires": 126, + "gecko_datapoint": "", + "git-commits": { + "first": "54f3613ea5f4885ced33b8a2d89654e1428cdced", + "last": "172e503b01303c153b0dfe39827acb2bc9ede1b9" + }, + "labels": [ + "generate", + "available", + "encrypt", + "decrypt" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/172e503b01303c153b0dfe39827acb2bc9ede1b9/security/manager/ssl/metrics.yaml#L57", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "paint_build_displaylist_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1728423" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1728423" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "The time to build a Gecko display list.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Graphics" + ] + }, + "no_lint": [], + "notification_emails": [ + "gfx-telemetry-alerts@mozilla.com", + "mwoodrow@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/gfx/metrics.yaml#L14", + "telemetry_mirror": "PAINT_BUILD_DISPLAYLIST_TIME", + "time_unit": "nanosecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "parsing_svg_unusual_pcdata": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1913382" + ], + "data_reviews": [ + "https://phabricator.services.mozilla.com/D219290#7592177" + ], + "dates": { + "first": "2024-12-06 09:38:09", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": null, + "description": "The rate of svg elements that have child elements during parsing, where their HTML counterpart would not have children.\n", + "disabled": false, + "expires": 150, + "gecko_datapoint": "", + "git-commits": { + "first": "01bffa3e9f932e045759b9bf60b43413a7161eac", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: HTML Parser" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/parser/html/metrics.yaml#L14", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_buttons": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1789883" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1789883#2" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-02-24 17:08:59", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times some actions are executed in the PDF viewer.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "4970db252462707092cd3141639a9ec0d0b315e3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "presentation_mode", + "presentation_mode_keyboard", + "view_bookmark", + "first_page", + "last_page", + "page_rotate_cw", + "page_rotate_ccw", + "cursor_select_tool", + "cursor_hand_tool", + "scroll_page", + "scroll_vertical", + "scroll_horizontal", + "scroll_wrapped", + "spread_none", + "spread_odd", + "spread_even", + "document_properties" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "cdenizet@mozilla.com", + "mcastelluccio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L58", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1782254" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1782254#c4" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-07-11 08:18:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times some PDF editing features are used.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74f2a0678bca65f801a9e411f9c8ecbc28d1b018", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ink", + "freetext", + "stamp", + "save", + "print" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "cdenizet@mozilla.com", + "mcastelluccio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L15", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times a given color is used to highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "yellow", + "green", + "blue", + "pink", + "red" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L179", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_color_changed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the user changes the color of a highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L199", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_deleted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the user deletes highlights.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L308", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_edited": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the user edits highlights.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L294", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_kind": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times a given kind is used to highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "free_highlight", + "highlight" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L144", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_method": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times a given method is used to highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "context_menu", + "main_toolbar", + "floating_button" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L161", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_number_of_colors": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of different colors used to highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "one", + "two", + "three", + "four", + "five" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L213", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_print": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the user prints a PDF with highlights.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L280", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_save": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the user saves a PDF with highlights.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L266", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_thickness": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "The thickness used to draw a free highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "range_max": 24, + "range_min": 8, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L233", + "type": "custom_distribution", + "unit": "pixels", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_thickness_changed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the user changes the thickness of a free highlight.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L252", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_editing_highlight_toggle_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1866437#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-02-29 12:42:29", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times the user toggles the visibility of highlights.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0b85cfc1d81c9ce207bf4692483ea0bd6269d945", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L322", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_geckoview": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829216" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1829216#2" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-05-23 00:20:38", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times some actions are executed in the PDF viewer.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "86a49d4b2721f50876a4b59b589745a9c2fdc5c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "download_tapped", + "open_in_app_tapped", + "open_in_app_just_once", + "open_in_app_always", + "download_failed", + "download_succeeded", + "save_as_pdf_tapped" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "cdenizet@mozilla.com", + "mcastelluccio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L90", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_add_image_click": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the Add Image label is clicked.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L674", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_added": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of images added with/without alt text.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "with_alt_text", + "without_alt_text" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L750", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_ai_generation_check": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915434" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915434#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-08-30 08:12:42", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user interacts with the alt text setting in the alt text modal to create alt text with AI.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "status": { + "description": "true (resp. false) if the user enables (resp. disables) the AI generation.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "2a5f7f2742dc906146b2526788aeb38af3beae3c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L385", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_callout_dismissed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the callout describing automatic alt text generation is dismissed.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L351", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_callout_displayed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the callout describing automatic alt text generation is displayed.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L336", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_dismiss": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user clicks Not now or Cancel on the alt text modal.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "alt_text_type": { + "description": "present, empty.", + "type": "string" + }, + "flow": { + "description": "image_add, alt_text_edit.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L482", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_image_status_label_clicked": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user clicks on the alt text status button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "label": { + "description": "added, review, missing.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L640", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_image_status_label_displayed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the alt text status button on an image is shown .\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "label": { + "description": "added, review, missing.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L620", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_info": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded on the alt text modal when the user clicks on \"i\" to learn about alt text or \"Learn More\" to learn about AI generation.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "topic": { + "description": "alt_text, ai_generation.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L366", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_model_deleted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user clicks to delete the model from the alt text settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L553", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_model_download_complete": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when download completes for the alt text generation model.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L519", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_model_download_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when an error occurs during the download for the alt text generation model.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "error": { + "description": "Error message.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L534", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_model_download_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when download starts for the alt text generation model.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L504", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_model_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Records how long it takes to generate the alt text and what is the length of the result.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "length": { + "description": "number of characters of generated text.\n", + "type": "quantity" + }, + "time": { + "description": "time in ms to generate result.\n", + "type": "quantity" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L568", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_save": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user clicks Save on the alt text modal.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "alt_text_type": { + "description": "present, empty.", + "type": "string" + }, + "flow": { + "description": "image_add, alt_text_edit.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L460", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_settings_ai_generation_check": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user interacts with the alt text setting to create alt text with AI.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "status": { + "description": "true (resp. false) if the user enables (resp. disables) the AI generation.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L420", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_settings_displayed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when alt text settings dialog is displayed to a user.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L405", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_settings_edit_alt_text_check": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user interacts with the alt text modal setting to edit alt text on this pdf.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "status": { + "description": "true if the user edits the generated text.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L440", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_user_edit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded once the alt text is confirmed, when the user makes changes to the alt text generated. By comparing the initially generated text with the final version, quantifies how many words were changed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "total_words": { + "description": "total number of words in the generated text.\n", + "type": "quantity" + }, + "words_added": { + "description": "number of words added.\n", + "type": "quantity" + }, + "words_removed": { + "description": "number of words removed.\n", + "type": "quantity" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L592", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_alt_text_edit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Stores alt text modal settings for the user.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ask_to_edit", + "ai_generation" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L732", + "type": "labeled_boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_icon_click": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the image toolbar icon is clicked.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L659", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_image_added": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-08-28 00:21:11", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded once the image is added to the pdf.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "alt_text_modal": { + "description": "Indicates if the alt text modal was displayed and the user clicked save, or if it was skipped and the image was added directly after selection.\n", + "type": "boolean" + }, + "alt_text_type": { + "description": "present, empty, skipped.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d45866c7759bcda6c87c17747dd15defa02a671b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L709", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_image_image_selected": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909325#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-25 00:14:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when the user selects an image file from their computer.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "alt_text_modal": { + "description": "Indicates if the alt text modal was displayed and the user clicked save, or if it was skipped and the image was added directly after selection.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "749056ce397e836e358d102cb388200596311ae7", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "pdfjs-team@mozilla.com", + "asafko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L689", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_stamp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1853960" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1853960#c1" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-10-24 16:35:56", + "last": "2025-02-04 14:27:22" + }, + "description": "Counts the number of times some PDF editing features are used.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "44cd70dd74e629ff6d82481a65510faf92a59992", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "inserted_image", + "alt_text_save", + "alt_text_cancel", + "alt_text_tooltip", + "alt_text_edit", + "alt_text_description", + "alt_text_decorative", + "alt_text_keyboard" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "cdenizet@mozilla.com", + "mcastelluccio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L35", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_time_to_view": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1566882" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1566882#c2" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2022-11-28 14:57:09", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent to display first page in PDF Viewer (ms).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "41cf749e457ff3ba0df813f5688b858dabe0b582", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "cdenizet@mozilla.com", + "mcastelluccio@mozilla.com" + ], + "range_max": 10000, + "range_min": 1, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L124", + "type": "custom_distribution", + "unit": "ms", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pdfjs_used": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1566882" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1566882#c2" + ], + "dates": { + "first": "2022-11-28 14:57:09", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times PDF Viewer was used.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "41cf749e457ff3ba0df813f5688b858dabe0b582", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: PDF Viewer" + ] + }, + "no_lint": [], + "notification_emails": [ + "cdenizet@mozilla.com", + "mcastelluccio@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/pdfjs/metrics.yaml#L112", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "perf_largest_contentful_paint": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862939" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862939#c5" + ], + "dates": { + "first": "2023-11-07 00:07:38", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from navigation start to largest contentful paint.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8432b2e96da35e3dcfd351a44677f179034086e5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L14", + "telemetry_mirror": "PERF_LARGEST_CONTENTFUL_PAINT_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "perf_largest_contentful_paint_from_response_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862939" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862939#c5" + ], + "dates": { + "first": "2023-11-07 00:07:38", + "last": "2025-02-04 14:27:22" + }, + "description": "Time from response start to largest contentful paint.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "8432b2e96da35e3dcfd351a44677f179034086e5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L27", + "telemetry_mirror": "PERF_LARGEST_CONTENTFUL_PAINT_FROM_RESPONSE_START_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "perf_page_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1759744", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1799727", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834774", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862939", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892231", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1923894" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1759744#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1799727#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1834774#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862939#c5", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892231#c3" + ], + "dates": { + "first": "2024-10-16 00:21:46", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a top level content document has been loaded.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "dns_lookup_time": { + "description": "Time taken to perform dns lookup of the top level document, in ms.", + "type": "quantity", + "unit": "ms" + }, + "fcp_time": { + "description": "Time between firstContentfulPaint and navigationStart, in ms.", + "type": "quantity", + "unit": "ms" + }, + "features": { + "description": "Bitfield of features in use within this document: 1 - fetchpriority applied to images", + "type": "quantity", + "unit": "integer" + }, + "http_ver": { + "description": "Version of HTTP protocol used.", + "type": "quantity", + "unit": "integer" + }, + "js_exec_time": { + "description": "Time spent executing JS during page load, in ms.", + "type": "quantity", + "unit": "ms" + }, + "lcp_time": { + "description": "Time between largestContentfulPaint and navigationStart, at the point of onLoad firing, in ms. This may differ from the final LCP value as reported through the LCP histogram.", + "type": "quantity", + "unit": "ms" + }, + "load_time": { + "description": "Time between loadEventStart and navigationStart, in ms.", + "type": "quantity", + "unit": "ms" + }, + "load_type": { + "description": "One of normal,reload,stop,link,history,error or other.", + "type": "string" + }, + "redirect_count": { + "description": "Number of redirections for the top level document.", + "type": "quantity", + "unit": "integer" + }, + "redirect_time": { + "description": "Time spent in redirections for the top level document.", + "type": "quantity", + "unit": "ms" + }, + "response_time": { + "description": "Time between responseStart and navigationStart, in ms.", + "type": "quantity", + "unit": "ms" + }, + "same_origin_nav": { + "description": "If true, a normal navigation was performed on the same origin.", + "type": "boolean" + }, + "time_to_request_start": { + "description": "Time between requestStart and navigationStart, in ms.", + "type": "quantity", + "unit": "ms" + }, + "trr_domain": { + "description": "TRR domain used.", + "type": "string" + }, + "using_webdriver": { + "description": "If true, a webdriver is running on the client.", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "b47be15d7e2444693af2ed088572fcd3b5e31769", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "dpalmeiro@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "pageload" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L40", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_async_sheet_load": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892660", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912186" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1892660", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912186" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-11-19 14:12:53", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent in milliseconds since a style sheet started loading async until it finished.\n", + "disabled": false, + "expires": 141, + "gecko_datapoint": "", + "git-commits": { + "first": "452110a546f0c68d336bef0a829833414c4d7943", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Layout" + ] + }, + "no_lint": [], + "notification_emails": [ + "emilio@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/layout/base/metrics.yaml#L14", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_eh_fcp_preconnect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808323", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2024-08-28 15:03:17" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected only on page load where the main document uses preconnect but did not use Early Hints preload.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/dom/metrics.yaml#L294", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_eh_fcp_preconnect_preload_with_eh": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808323", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2024-08-28 15:03:17" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected on early page load where the main document uses preconnect and supports Early Hints preload.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/dom/metrics.yaml#L304", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_eh_fcp_preconnect_preload_without_eh": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808323", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2024-08-28 15:03:17" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected on early page load where the preconnected main document uses preconnect and preload without Early Hints.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/dom/metrics.yaml#L314", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_eh_fcp_preload_with_eh": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808323", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2024-08-28 15:03:17" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected only on page load where the main document uses or supports Early Hints preload.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/dom/metrics.yaml#L262", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_eh_fcp_preload_without_eh": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1808323", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2024-08-28 15:03:17" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected only on page load where the main document uses preload without Early Hints.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "261005fcc4d6f8b64189946958211259fb45e9e1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/261005fcc4d6f8b64189946958211259fb45e9e1/dom/metrics.yaml#L284", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_h3p_fcp_with_priority": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1743965", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1796398", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected only on page load where the main document uses HTTP3. A \"priority\" header has been received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L243", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_http3_fcp_http3": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675503", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected only on page load where the main document uses or suppports HTTP3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L215", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_http3_fcp_supports_http3": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1675503", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected only on page load where the main document supports but is not using HTTP3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L235", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "performance_pageload_http3_fcp_without_priority": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1743965", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1796398", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898245" + ], + "dates": { + "first": "2024-06-17 09:54:15", + "last": "2025-02-04 14:27:22" + }, + "description": "The time between navigationStart and the first contentful paint of a foreground http or https root content document, in milliseconds. The contentful paint timestamp is taken during display list building and does not include rasterization or compositing of that paint. This is collected only on page load where the main document uses HTTP3. A \"priority\" header has not been received.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1ee82825bddd25c26ee54afecd1e367da5541bc3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L265", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pkcs11_built_in_roots_module": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876435" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876435" + ], + "dates": { + "first": "2024-07-03 00:44:32", + "last": "2024-07-03 00:44:32" + }, + "denominator_metric": "tls.certificate_verifications", + "description": "How many successfully-built certificate chains used a certificate from the built-in roots module.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d783eff1607f6e241e11504341aafc8e92efb9a", + "last": "3d783eff1607f6e241e11504341aafc8e92efb9a" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 3 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3d783eff1607f6e241e11504341aafc8e92efb9a/security/manager/ssl/metrics.yaml#L253", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pkcs11_nss_cert_db": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876435" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876435" + ], + "dates": { + "first": "2024-07-03 00:44:32", + "last": "2024-07-03 00:44:32" + }, + "denominator_metric": "tls.certificate_verifications", + "description": "How many successfully-built certificate chains used a certificate from the NSS cert DB.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d783eff1607f6e241e11504341aafc8e92efb9a", + "last": "3d783eff1607f6e241e11504341aafc8e92efb9a" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 3 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3d783eff1607f6e241e11504341aafc8e92efb9a/security/manager/ssl/metrics.yaml#L241", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pkcs11_third_party_modules_loaded": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905453" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1905453" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-07-03 00:44:32", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of third-party PKCS#11 modules loaded.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d783eff1607f6e241e11504341aafc8e92efb9a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 3, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L221", + "type": "quantity", + "unit": "modules", + "version": 0, + "repos": [ + "gecko" + ] + }, + "policies_count": { + "bugs": [ + "https://bugzil.la/1432897" + ], + "data_reviews": [ + "https://bugzil.la/1432897" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A uint with the number of active enterprise policies, collected once at startup. This metric was generated to correspond to the Legacy Telemetry scalar policies.count.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Enterprise Policies" + ] + }, + "no_lint": [], + "notification_emails": [ + "mkaply@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/enterprisepolicies/metrics.yaml#L14", + "telemetry_mirror": "POLICIES_COUNT", + "type": "quantity", + "unit": "enterprise policies", + "version": 0, + "repos": [ + "gecko" + ] + }, + "policies_is_enterprise": { + "bugs": [ + "https://bugzil.la/1803804" + ], + "data_reviews": [ + "https://bugzil.la/1803804" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "Attempt to determine if the user is an enterprise user based on various signals. This metric was generated to correspond to the Legacy Telemetry scalar policies.is_enterprise.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Enterprise Policies" + ] + }, + "no_lint": [], + "notification_emails": [ + "mkaply@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/enterprisepolicies/metrics.yaml#L31", + "telemetry_mirror": "POLICIES_IS_ENTERPRISE", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_battery_percentage_when_user_active": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1769255" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1769255" + ], + "data_sensitivity": [ + "interaction", + "technical" + ], + "dates": { + "first": "2022-05-15 21:52:03", + "last": "2025-02-04 14:27:22" + }, + "description": "Records how many percent of battery was available for each period of user activity.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5a63863b537002bbf726c2f11049c9c2ee5f167a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L347", + "type": "custom_distribution", + "unit": "percent", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_ms_per_thread_content_background": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many miliseconds of CPU time were used. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L323", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_ms_per_thread_content_foreground": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many miliseconds of CPU time were used. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L323", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_ms_per_thread_gpu_process": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many miliseconds of CPU time were used. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L323", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_ms_per_thread_parent_active": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many miliseconds of CPU time were used. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L323", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_ms_per_thread_parent_inactive": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many miliseconds of CPU time were used. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L323", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_time_bogus_values": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1755733" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1755733" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-04 14:16:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Impossibly large CPU time values that were discarded.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "94867a6ae6a8b79c99a55db69d98b19844069d4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L14", + "telemetry_mirror": "POWER_CPU_TIME_BOGUS_VALUES", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_time_per_process_type_ms": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1747138" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1747138" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-04 14:16:19", + "last": "2025-02-04 14:27:22" + }, + "description": "CPU time used by each process type in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "94867a6ae6a8b79c99a55db69d98b19844069d4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "parent.active", + "parent.active.playing-audio", + "parent.active.playing-video", + "parent.inactive", + "parent.inactive.playing-audio", + "parent.inactive.playing-video", + "prealloc", + "privilegedabout", + "rdd", + "socket", + "web.background", + "web.background-perceivable", + "web.foreground", + "extension", + "gpu", + "gmplugin", + "utility" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L29", + "telemetry_mirror": "POWER_CPU_TIME_PER_PROCESS_TYPE_MS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_cpu_time_per_tracker_type_ms": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1802361" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1802361" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-11-30 08:41:15", + "last": "2025-02-04 14:27:22" + }, + "description": "CPU time used by content processes used only for tracking resources, labeled by the category of the tracker.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9913b426cfb191d8ceb782c0cb3e07b22eb9b321", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "ad", + "analytics", + "cryptomining", + "fingerprinting", + "social", + "unknown" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L62", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_energy_per_process_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898057" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1898057" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-05-22 06:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "How much energy (in \u00b5Wh) has been used, broken down by process type. Only available on Apple Silicon.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "810c0053f1d40159ffa34cf3031710939001f558", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "parent.active", + "parent.active.playing-audio", + "parent.active.playing-video", + "parent.inactive", + "parent.inactive.playing-audio", + "parent.inactive.playing-video", + "prealloc", + "privilegedabout", + "rdd", + "socket", + "web.background", + "web.background-perceivable", + "web.foreground", + "extension", + "gpu", + "gmplugin", + "utility" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L115", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_gpu_time_bogus_values": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1755733" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1755733" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-04 14:16:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Impossibly large GPU time values that were discarded.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "94867a6ae6a8b79c99a55db69d98b19844069d4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L100", + "telemetry_mirror": "POWER_GPU_TIME_BOGUS_VALUES", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_gpu_time_per_process_type_ms": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1747138" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1747138" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-04 14:16:19", + "last": "2025-02-04 14:27:22" + }, + "description": "GPU time used by each process type in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "94867a6ae6a8b79c99a55db69d98b19844069d4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "parent.active", + "parent.active.playing-audio", + "parent.active.playing-video", + "parent.inactive", + "parent.inactive.playing-audio", + "parent.inactive.playing-video", + "prealloc", + "privilegedabout", + "rdd", + "socket", + "web.background", + "web.background-perceivable", + "web.foreground", + "extension", + "gpu", + "gmplugin", + "utility" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L84", + "telemetry_mirror": "POWER_GPU_TIME_PER_PROCESS_TYPE_MS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_total_cpu_time_ms": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1736040" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1736040" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Total CPU time used by all processes in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L148", + "telemetry_mirror": "POWER_TOTAL_CPU_TIME_MS", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_total_gpu_time_ms": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1743176" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1743176" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-01-14 16:43:08", + "last": "2025-02-04 14:27:22" + }, + "description": "Total GPU time used by all processes in ms.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "cf406dbbc98af4ebf97625449eebe9b052d55400", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 30, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L163", + "telemetry_mirror": "POWER_TOTAL_GPU_TIME_MS", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_total_thread_wakeups": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1759535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1759535" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-04 14:16:19", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times threads woke up and could have woken up a CPU core.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "94867a6ae6a8b79c99a55db69d98b19844069d4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L178", + "telemetry_mirror": "POWER_TOTAL_THREAD_WAKEUPS", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_wakeups_per_process_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1759535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1759535" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-05-04 14:16:19", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times threads woke up and could have woken up a CPU core. Broken down by process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "94867a6ae6a8b79c99a55db69d98b19844069d4f", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "parent.active", + "parent.active.playing-audio", + "parent.active.playing-video", + "parent.inactive", + "parent.inactive.playing-audio", + "parent.inactive.playing-video", + "prealloc", + "privilegedabout", + "rdd", + "socket", + "web.background", + "web.background-perceivable", + "web.foreground", + "extension", + "gpu", + "gmplugin", + "utility" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L131", + "telemetry_mirror": "POWER_WAKEUPS_PER_PROCESS_TYPE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_wakeups_per_thread_content_background": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times threads woke up and could have woken up a CPU core. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L193", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_wakeups_per_thread_content_foreground": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times threads woke up and could have woken up a CPU core. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L193", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_wakeups_per_thread_gpu_process": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times threads woke up and could have woken up a CPU core. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L193", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_wakeups_per_thread_parent_active": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times threads woke up and could have woken up a CPU core. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L193", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "power_wakeups_per_thread_parent_inactive": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1901535" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1763474" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-12 16:05:25", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times threads woke up and could have woken up a CPU core. Broken down by thread name for a given process type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ae0ed821959cc6b5b255b0774becd34c317e53f8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "androidui", + "asynclogger", + "audioipc", + "audioipc_callback_rpc", + "audioipc_client_callback", + "audioipc_client_rpc", + "audioipc_devicecollection_rpc", + "audioipc_server_callback", + "audioipc_server_rpc", + "backgroundthreadpool", + "bgiothreadpool", + "bgreadurls", + "bhmgr_monitor", + "bhmgr_processor", + "cameras_ipc", + "canvasrenderer", + "capturethread", + "classifier_update", + "com_mta", + "compositor", + "convolverworker", + "cookie", + "cubeboperation", + "datachannel_io", + "dns_resolver", + "dom_worker", + "dom_worklet", + "domcachethread", + "extensionprotocolhandler", + "font_loader", + "fontenumthread", + "fs_broker", + "geckomain", + "gmpthread", + "graphrunner", + "hrtfdatabaseldr", + "html5_parser", + "imagebridgechld", + "imageio", + "indexeddb", + "initfontlist", + "inotifyeventthread", + "indexeddb_io", + "ipc_i_o_child", + "ipc_i_o_parent", + "ipc_launch", + "ipdl_background", + "js_watchdog", + "jump_list", + "libwebrtcmodulethread", + "link_monitor", + "ls_thread", + "mdns_service", + "mediacache", + "mediadecoderstatemachine", + "mediapdecoder", + "mediasupervisor", + "mediatimer", + "mediatrackgrph", + "memorypoller", + "mozstorage", + "mtransport", + "netlink_monitor", + "pacerthread", + "permission", + "playeventsound", + "processhangmon", + "profilerchild", + "proxyresolution", + "quotamanager_io", + "registerfonts", + "remotebackbuffer", + "remotelzystream", + "remvidchild", + "renderer", + "sandboxreporter", + "savescripts", + "socket_thread", + "softwarevsyncthread", + "sqldb_content-prefs_sqlite", + "sqldb_cookies_sqlite", + "sqldb_formhistory_sqlite", + "ssl_cert", + "startupcache", + "streamtrans", + "stylethread", + "swcomposite", + "taskcontroller", + "timer", + "toastbgthread", + "trr_background", + "untrusted_modules", + "url_classifier", + "videocapture", + "vsynciothread", + "webrtccallthread", + "webrtcworker", + "wincompositor", + "windowsvsyncthread", + "winwindowocclusioncalc", + "wifi_tickler", + "worker_launcher", + "wrrenderbackend", + "wrscenebuilder", + "wrscenebuilderlp", + "wrworker", + "wrworkerlp" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Content Processes" + ] + }, + "no_lint": [], + "notification_emails": [ + "florian@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/processtools/metrics.yaml#L193", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_base_confidence": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The base confidence calculated for a subresource\nThis metric was generated to correspond to the Legacy Telemetry linear histogram PREDICTOR_BASE_CONFIDENCE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2376", + "telemetry_mirror": "PREDICTOR_BASE_CONFIDENCE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_confidence": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The final confidence calculated for a subresource\nThis metric was generated to correspond to the Legacy Telemetry linear histogram PREDICTOR_CONFIDENCE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2396", + "telemetry_mirror": "PREDICTOR_CONFIDENCE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_global_degradation": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The global degradation calculated\nThis metric was generated to correspond to the Legacy Telemetry linear histogram PREDICTOR_GLOBAL_DEGRADATION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2336", + "telemetry_mirror": "PREDICTOR_GLOBAL_DEGRADATION", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_learn_attempts": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of times nsINetworkPredictor::Learn is called and attempts to learn\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_LEARN_ATTEMPTS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2120", + "telemetry_mirror": "PREDICTOR_LEARN_ATTEMPTS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_learn_work_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time spent doing the work for learn (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_LEARN_WORK_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2174", + "telemetry_mirror": "PREDICTOR_LEARN_WORK_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_predict_time_to_action": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How long it takes from the time Predict() is called to the time we take action\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_PREDICT_TIME_TO_ACTION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2416", + "telemetry_mirror": "PREDICTOR_PREDICT_TIME_TO_ACTION", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_predict_time_to_inaction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How long it takes from the time Predict() is called to the time we figure out there's nothing to do\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_PREDICT_TIME_TO_INACTION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2434", + "telemetry_mirror": "PREDICTOR_PREDICT_TIME_TO_INACTION", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_predict_work_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time spent doing the work for predict (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_PREDICT_WORK_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2157", + "telemetry_mirror": "PREDICTOR_PREDICT_WORK_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_predictions_calculated": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many prediction calculations are performed\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_PREDICTIONS_CALCULATED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2315", + "telemetry_mirror": "PREDICTOR_PREDICTIONS_CALCULATED", + "type": "custom_distribution", + "unit": "calculations", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_prefetch_decision_reason": { + "bucket_count": 16, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1409542", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1430322", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1312057" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1409542", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1430322", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1312057" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Why the predictor determined a particular resource was eligible for future prefetch (or not). See PrefetchDecisionReason in Predictor.cpp for value meanings\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram PREDICTOR_PREFETCH_DECISION_REASON.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 15, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2452", + "telemetry_mirror": "PREDICTOR_PREFETCH_DECISION_REASON", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_prefetch_ignore_reason": { + "bucket_count": 16, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1409542", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1430322", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1312057" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1409542", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1430322", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1312057" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Why the predictor determined a particular resource that was marked eligible for prefetch should not be prefetched. See PrefetchIgnoreReason in Predictor.cpp for value meanings\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram PREDICTOR_PREFETCH_IGNORE_REASON.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 15, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2478", + "telemetry_mirror": "PREDICTOR_PREFETCH_IGNORE_REASON", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_prefetch_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1016628" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1016628" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How long it takes from OnStartRequest to OnStopRequest for a prefetch\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_PREFETCH_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2258", + "telemetry_mirror": "PREDICTOR_PREFETCH_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_prefetch_use_status": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1016628", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1312057" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1016628", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1312057" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "If and why prefetches are used/unused.\nThis metric was generated to correspond to the Legacy Telemetry categorical histogram PREDICTOR_PREFETCH_USE_STATUS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "Used", + "Not200", + "Expired", + "WouldVary", + "WaitedTooLong", + "Etag", + "Auth", + "Redirect" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2231", + "telemetry_mirror": "h#PREDICTOR_PREFETCH_USE_STATUS", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_subresource_degradation": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The degradation calculated for a subresource\nThis metric was generated to correspond to the Legacy Telemetry linear histogram PREDICTOR_SUBRESOURCE_DEGRADATION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2356", + "telemetry_mirror": "PREDICTOR_SUBRESOURCE_DEGRADATION", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_total_preconnects": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many actual preconnects happen\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_TOTAL_PRECONNECTS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2275", + "telemetry_mirror": "PREDICTOR_TOTAL_PRECONNECTS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_total_predictions": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many actual predictions (preresolves, preconnects, ...) happen\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_TOTAL_PREDICTIONS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2191", + "telemetry_mirror": "PREDICTOR_TOTAL_PREDICTIONS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_total_prefetches": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1016628" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1016628" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many actual prefetches happen\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_TOTAL_PREFETCHES.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2211", + "telemetry_mirror": "PREDICTOR_TOTAL_PREFETCHES", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_total_preresolves": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many actual preresolves happen\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_TOTAL_PRERESOLVES.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2295", + "telemetry_mirror": "PREDICTOR_TOTAL_PRERESOLVES", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "predictor_wait_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=881804" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Amount of time a predictor event waits in the queue (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram PREDICTOR_WAIT_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2140", + "telemetry_mirror": "PREDICTOR_WAIT_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "preferences_prefs_file_was_invalid": { + "bugs": [ + "https://bugzil.la/1367813", + "https://bugzil.la/1682571" + ], + "data_reviews": [ + "https://bugzil.la/1367813", + "https://bugzil.la/1682571" + ], + "dates": { + "first": "2024-10-17 00:04:19", + "last": "2025-02-04 14:27:22" + }, + "description": "Set to true if a failure occurred reading profile/prefs.js. This metric was generated to correspond to the Legacy Telemetry scalar preferences.prefs_file_was_invalid.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "bc0f7c10528a29091887358beb7d31fa13572d73", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Preferences: Backend" + ] + }, + "no_lint": [], + "notification_emails": [ + "kwright@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/modules/libpref/metrics.yaml#L43", + "telemetry_mirror": "PREFERENCES_PREFS_FILE_WAS_INVALID", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_dialog_opened_via_preview_tm": { + "bugs": [ + "https://bugzil.la/1657220" + ], + "data_reviews": [ + "https://bugzil.la/1657220" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A counter incremented every time a user opens the system print dialog from the print preview interface. This metric was generated to correspond to the Legacy Telemetry scalar printing.dialog_opened_via_preview_tm.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "jwatt@jwatt.org", + "emalysz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L14", + "telemetry_mirror": "PRINTING_DIALOG_OPENED_VIA_PREVIEW_TM", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_dialog_via_preview_cancelled_tm": { + "bugs": [ + "https://bugzil.la/1657220" + ], + "data_reviews": [ + "https://bugzil.la/1657220" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A counter incremented every time a user cancels a system print dialog that they opened from the print preview interface. This metric was generated to correspond to the Legacy Telemetry scalar printing.dialog_via_preview_cancelled_tm.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "jwatt@jwatt.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L31", + "telemetry_mirror": "PRINTING_DIALOG_VIA_PREVIEW_CANCELLED_TM", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_error": { + "bugs": [ + "https://bugzil.la/1630105" + ], + "data_reviews": [ + "https://bugzil.la/1630105" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A counter incremented every time the user encounters an error printing. The result is split into keys which represent the values of error codes related to printing. Possible values are listed in 'keys'. \"FAILURE\" is a catch-all code for an error we don't recognize. This metric was generated to correspond to the Legacy Telemetry scalar printing.error.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "GFX_PRINTER_NO_PRINTER_AVAILABLE", + "GFX_PRINTER_NAME_NOT_FOUND", + "GFX_PRINTER_COULD_NOT_OPEN_FILE", + "GFX_PRINTER_STARTDOC", + "GFX_PRINTER_ENDDOC", + "GFX_PRINTER_STARTPAGE", + "GFX_PRINTER_DOC_IS_BUSY", + "ABORT", + "NOT_AVAILABLE", + "NOT_IMPLEMENTED", + "OUT_OF_MEMORY", + "UNEXPECTED", + "FAILURE", + "FALLBACK_PAPER_LIST", + "LAST_USED_PRINTER", + "PAPER_MARGINS", + "PRINT_DESTINATIONS", + "PRINT_PREVIEW", + "PRINTER_LIST", + "PRINTER_PROPERTIES", + "PRINTER_SETTINGS", + "UNWRITEABLE_MARGIN" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "jaws@mozilla.com", + "jwatt@jwatt.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L47", + "telemetry_mirror": "PRINTING_ERROR", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_preview_cancelled_tm": { + "bugs": [ + "https://bugzil.la/1657220" + ], + "data_reviews": [ + "https://bugzil.la/1657220" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A counter incremented every time a user exits print preview without printing. This metric was generated to correspond to the Legacy Telemetry scalar printing.preview_cancelled_tm.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "jwatt@jwatt.org", + "emalysz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L106", + "telemetry_mirror": "PRINTING_PREVIEW_CANCELLED_TM", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_preview_opened_tm": { + "bugs": [ + "https://bugzil.la/1657220" + ], + "data_reviews": [ + "https://bugzil.la/1657220" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A counter incremented every time a user opens print preview. This metric was generated to correspond to the Legacy Telemetry scalar printing.preview_opened_tm.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "jwatt@jwatt.org", + "emalysz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L90", + "telemetry_mirror": "PRINTING_PREVIEW_OPENED_TM", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_settings_changed": { + "bugs": [ + "https://bugzil.la/1653386" + ], + "data_reviews": [ + "https://bugzil.la/1653386" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of how many times the user changed a setting in print preview, broken down per setting. This metric was generated to correspond to the Legacy Telemetry scalar printing.settings_changed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "emalysz@mozilla.com", + "rtestard@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L123", + "telemetry_mirror": "PRINTING_SETTINGS_CHANGED", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_silent_print": { + "bugs": [ + "https://bugzil.la/1600623" + ], + "data_reviews": [ + "https://bugzil.la/1600623" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A counter incremented every time a silent print (a print without a print settings dialog being opened) is initiated. This happens when extensions invoke ExtensionAPI.tabs.saveAsPDF, for example, or when the print.always_print_silent pref is set. This metric was generated to correspond to the Legacy Telemetry scalar printing.silent_print.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "jwatt@jwatt.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L140", + "telemetry_mirror": "PRINTING_SILENT_PRINT", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "printing_target_type": { + "bugs": [ + "https://bugzil.la/1600623" + ], + "data_reviews": [ + "https://bugzil.la/1600623" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "A counter incremented every time the user prints to a certain target type. The 'pdf_unknown' count is for printers with names that we don't know about/check for, but that have 'pdf' in their name, and is mainly a sanity check that we're not missing significant counts in 'pdf_file'. For the most part, the 'unknown' count will be prints to a physical printer, but we can't know for sure since third party drivers could also be print to file drivers that we don't otherwise catch in the other counts. This metric was generated to correspond to the Legacy Telemetry scalar printing.target_type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "pdf_file", + "pdf_unknown", + "xps_file", + "unknown" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Printing" + ] + }, + "no_lint": [], + "notification_emails": [ + "jwatt@jwatt.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/printing/metrics.yaml#L158", + "telemetry_mirror": "PRINTING_TARGET_TYPE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "privacy_sanitize_clear": { + "bugs": [ + "https://bugzilla.mozilla.org/1856417", + "https://bugzilla.mozilla.org/1922608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1856417#c4" + ], + "dates": { + "first": "2025-01-09 12:52:46", + "last": "2025-02-04 14:27:22" + }, + "description": "Dispatched when the dialog is accepted (to clear)\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "cache": { + "description": "true if cache is selected to be cleared", + "type": "boolean" + }, + "context": { + "description": "string representing which context the dialog was opened in, one of [\"browser\", \"clearSiteData\", \"clearHistory\"]\n", + "type": "string" + }, + "cookies_and_storage": { + "description": "true if cookies and storage is selected to be cleared", + "type": "boolean" + }, + "form_data": { + "description": "true if form data is selected to be cleared", + "type": "boolean" + }, + "history_and_downloads": { + "description": "true if browsing history and downloads is selected to be cleared", + "type": "boolean" + }, + "site_settings": { + "description": "true if site settings is selected to be cleared", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9e34a5f1be48246069028cf7ff7972e182060fb4", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "wwen@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L33", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "privacy_sanitize_clearing_time_span_selected": { + "bugs": [ + "https://bugzilla.mozilla.org/1856417", + "https://bugzilla.mozilla.org/1922608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1856417#c4" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "The time span range selected to sanitize\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "time_span": { + "description": "The timespan that was selected corresponding to one of Sanitizer.TIMESPAN_*'s value", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "wwen@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L67", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "privacy_sanitize_dialog_open": { + "bugs": [ + "https://bugzilla.mozilla.org/1856417", + "https://bugzilla.mozilla.org/1922608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1856417#c4" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Dispatched when one of the sanitize dialogs opens\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "context": { + "description": "string representing which context the dialog was opened in, one of [\"browser\", \"clearSiteData\", \"clearHistory\"]\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "wwen@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L14", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "privacy_sanitize_load_time": { + "bugs": [ + "https://bugzilla.mozilla.org/1856417", + "https://bugzilla.mozilla.org/1922608" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1856417#c4" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "How much time was spent to open the dialog, including loading data sizes\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "wwen@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L85", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "protocolhandler_mailto_visit": { + "bugs": [ + "https://bugzilla.mozilla.org/1864216" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1864216#c8" + ], + "dates": { + "first": "2024-12-14 00:13:38", + "last": "2025-02-04 14:27:22" + }, + "description": "a URI of type mailto was visited. Furthermore we want to know if from within the browser.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "triggered_externally": { + "description": "If Firefox was invoked to handle the link this value is true and if the callee comes from within Firefox, this value is false\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a46036fa11f7edcb1335681ecee65a8f2f6eb711", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "install-update@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events", + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/mozapps/handling/metrics.yaml#L16", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_autocomplete_field_generatedpassword": { + "bugs": [ + "https://bugzil.la/1548878", + "https://bugzil.la/1616356" + ], + "data_reviews": [ + "https://bugzil.la/1548878", + "https://bugzil.la/1616356" + ], + "dates": { + "first": "2024-09-25 07:19:04", + "last": "2025-02-04 14:27:22" + }, + "description": "\"autocomplete_field\": The first time each unique generated password is used to fill a login field - i.e. the user selects it from from the autocomplete dropdown on a password input \"autocomplete_shown\": The first time the password generation option is shown in the autocomplete dropdown on a password input for a site per session This event was generated to correspond to the Legacy Telemetry event pwmgr.autocomplete_field#generatedpassword.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "b0c0c4846bc1b81f6daa3adb45894e658787ee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 10, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L43", + "telemetry_mirror": "Pwmgr_AutocompleteField_Generatedpassword", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_autocomplete_shown_generatedpassword": { + "bugs": [ + "https://bugzil.la/1548878", + "https://bugzil.la/1616356" + ], + "data_reviews": [ + "https://bugzil.la/1548878", + "https://bugzil.la/1616356" + ], + "dates": { + "first": "2024-09-25 07:19:04", + "last": "2025-02-04 14:27:22" + }, + "description": "\"autocomplete_field\": The first time each unique generated password is used to fill a login field - i.e. the user selects it from from the autocomplete dropdown on a password input \"autocomplete_shown\": The first time the password generation option is shown in the autocomplete dropdown on a password input for a site per session This event was generated to correspond to the Legacy Telemetry event pwmgr.autocomplete_shown#generatedpassword.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "b0c0c4846bc1b81f6daa3adb45894e658787ee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 10, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L66", + "telemetry_mirror": "Pwmgr_AutocompleteShown_Generatedpassword", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_cancel_existing_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.cancel#existing_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L561", + "telemetry_mirror": "Pwmgr_Cancel_ExistingLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_cancel_new_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.cancel#new_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L593", + "telemetry_mirror": "Pwmgr_Cancel_NewLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_copy_password": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.copy#password.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L606", + "telemetry_mirror": "Pwmgr_Copy_Password", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_copy_username": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.copy#username.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L619", + "telemetry_mirror": "Pwmgr_Copy_Username", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_delete_existing_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 10:00:41", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.delete#existing_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9aa79879eb3e40d4b24caeba6f9c24642e923ab3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L632", + "telemetry_mirror": "Pwmgr_Delete_ExistingLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_delete_new_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.delete#new_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L645", + "telemetry_mirror": "Pwmgr_Delete_NewLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_doorhanger_submitted_save": { + "bugs": [ + "https://bugzil.la/1650929", + "https://bugzil.la/1650941", + "https://bugzil.la/1678200", + "https://bugzil.la/1714252", + "https://bugzil.la/1754637", + "https://bugzil.la/1850872" + ], + "data_reviews": [ + "https://bugzil.la/1650929", + "https://bugzil.la/1650941", + "https://bugzil.la/1678200", + "https://bugzil.la/1714252", + "https://bugzil.la/1754637", + "https://bugzil.la/1850872" + ], + "dates": { + "first": "2024-09-25 07:19:04", + "last": "2025-02-04 14:27:22" + }, + "description": "A login is saved or updated via the capture doorhanger. Carries information about whether the username and password _that were saved/updated by the user_ were modified in the doorhanger, selected from the suggestion autocomplete, or neither. `did_edit_X` and `did_select_X` will never both be true in the same event. The `object` describes the type of doorhanger when it was originally created. Note that user updates to the doorhanger may change whether a login is actually saved or updated, but will not impact the sent object. This event was generated to correspond to the Legacy Telemetry event pwmgr.doorhanger_submitted#save.\n", + "disabled": false, + "expires": 142, + "extra_keys": { + "did_edit_pw": { + "description": "Whether or not the saved/updated password was modified by the user typing into the password field.\n", + "type": "boolean" + }, + "did_edit_un": { + "description": "Whether or not the saved/updated username was modified by the user typing into the username field.\n", + "type": "boolean" + }, + "did_select_pw": { + "description": "Whether or not the saved/updated password was selected by the user choosing a suggested value from the autocomplete popup.\n", + "type": "boolean" + }, + "did_select_un": { + "description": "Whether or not the saved/updated username was selected by the user choosing a suggested value from the autocomplete popup.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "daa82fbe46ad1ca1f61a192990971e80e52ea03b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 9, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L99", + "telemetry_mirror": "Pwmgr_DoorhangerSubmitted_Save", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_doorhanger_submitted_update": { + "bugs": [ + "https://bugzil.la/1650929", + "https://bugzil.la/1650941", + "https://bugzil.la/1678200", + "https://bugzil.la/1714252", + "https://bugzil.la/1754637", + "https://bugzil.la/1850872" + ], + "data_reviews": [ + "https://bugzil.la/1650929", + "https://bugzil.la/1650941", + "https://bugzil.la/1678200", + "https://bugzil.la/1714252", + "https://bugzil.la/1754637", + "https://bugzil.la/1850872" + ], + "dates": { + "first": "2024-09-25 07:19:04", + "last": "2025-02-04 14:27:22" + }, + "description": "A login is saved or updated via the capture doorhanger. Carries information about whether the username and password _that were saved/updated by the user_ were modified in the doorhanger, selected from the suggestion autocomplete, or neither. `did_edit_X` and `did_select_X` will never both be true in the same event. The `object` describes the type of doorhanger when it was originally created. Note that user updates to the doorhanger may change whether a login is actually saved or updated, but will not impact the sent object. This event was generated to correspond to the Legacy Telemetry event pwmgr.doorhanger_submitted#update.\n", + "disabled": false, + "expires": 142, + "extra_keys": { + "did_edit_pw": { + "description": "Whether or not the saved/updated password was modified by the user typing into the password field.\n", + "type": "boolean" + }, + "did_edit_un": { + "description": "Whether or not the saved/updated username was modified by the user typing into the username field.\n", + "type": "boolean" + }, + "did_select_pw": { + "description": "Whether or not the saved/updated password was selected by the user choosing a suggested value from the autocomplete popup.\n", + "type": "boolean" + }, + "did_select_un": { + "description": "Whether or not the saved/updated username was selected by the user choosing a suggested value from the autocomplete popup.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "daa82fbe46ad1ca1f61a192990971e80e52ea03b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 9, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L153", + "telemetry_mirror": "Pwmgr_DoorhangerSubmitted_Update", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_edit_existing_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.edit#existing_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L658", + "telemetry_mirror": "Pwmgr_Edit_ExistingLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_filled_field_edited_generatedpassword": { + "bugs": [ + "https://bugzil.la/1548880" + ], + "data_reviews": [ + "https://bugzil.la/1548880" + ], + "dates": { + "first": "2024-09-25 07:19:04", + "last": "2025-02-04 14:27:22" + }, + "description": "The first time each generated password filled in a website form field is edited by the user in a field it was filled in This event was generated to correspond to the Legacy Telemetry event pwmgr.filled_field_edited#generatedpassword.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "b0c0c4846bc1b81f6daa3adb45894e658787ee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 10, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L82", + "telemetry_mirror": "Pwmgr_FilledFieldEdited_Generatedpassword", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_filter_list": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.filter#list.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L671", + "telemetry_mirror": "Pwmgr_Filter_List", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_form_autofill_result": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833398" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1833398#c3" + ], + "dates": { + "first": "2023-06-28 00:24:23", + "last": "2025-02-04 14:27:22" + }, + "description": "The result of auto-filling a login form.", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "0167c030264964d2d342021074d2223f7fd19429", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "filled", + "no_password_field", + "password_disabled_readonly", + "no_logins_fit", + "no_saved_logins", + "existing_password", + "existing_username", + "multiple_logins", + "no_autofill_forms", + "autocomplete_off", + "insecure", + "password_autocomplete_new_password", + "type_no_longer_password", + "form_in_crossorigin_subframe", + "filled_username_only_form" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L14", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_hide_password": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.hide#password.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L683", + "telemetry_mirror": "Pwmgr_Hide_Password", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_learn_more_vuln_existing_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.learn_more_vuln#existing_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L696", + "telemetry_mirror": "Pwmgr_LearnMoreVuln_ExistingLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_mgmt_menu_item_used_export": { + "bugs": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "data_reviews": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Record interactions with the about:logins menu. This event was generated to correspond to the Legacy Telemetry event pwmgr.mgmt_menu_item_used#export.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L278", + "telemetry_mirror": "Pwmgr_MgmtMenuItemUsed_Export", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_mgmt_menu_item_used_export_complete": { + "bugs": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "data_reviews": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Record interactions with the about:logins menu. This event was generated to correspond to the Legacy Telemetry event pwmgr.mgmt_menu_item_used#export_complete.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L290", + "telemetry_mirror": "Pwmgr_MgmtMenuItemUsed_ExportComplete", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_mgmt_menu_item_used_import_csv_complete": { + "bugs": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "data_reviews": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Record interactions with the about:logins menu. This event was generated to correspond to the Legacy Telemetry event pwmgr.mgmt_menu_item_used#import_csv_complete.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L266", + "telemetry_mirror": "Pwmgr_MgmtMenuItemUsed_ImportCsvComplete", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_mgmt_menu_item_used_import_from_browser": { + "bugs": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "data_reviews": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Record interactions with the about:logins menu. This event was generated to correspond to the Legacy Telemetry event pwmgr.mgmt_menu_item_used#import_from_browser.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L234", + "telemetry_mirror": "Pwmgr_MgmtMenuItemUsed_ImportFromBrowser", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_mgmt_menu_item_used_import_from_csv": { + "bugs": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "data_reviews": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Record interactions with the about:logins menu. This event was generated to correspond to the Legacy Telemetry event pwmgr.mgmt_menu_item_used#import_from_csv.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L254", + "telemetry_mirror": "Pwmgr_MgmtMenuItemUsed_ImportFromCsv", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_mgmt_menu_item_used_preferences": { + "bugs": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "data_reviews": [ + "https://bugzil.la/1641396", + "https://bugzil.la/1641777", + "https://bugzil.la/1641393" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Record interactions with the about:logins menu. This event was generated to correspond to the Legacy Telemetry event pwmgr.mgmt_menu_item_used#preferences.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L302", + "telemetry_mirror": "Pwmgr_MgmtMenuItemUsed_Preferences", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_new_new_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.new#new_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L709", + "telemetry_mirror": "Pwmgr_New_NewLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_aboutprotections": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#aboutprotections.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L452", + "telemetry_mirror": "Pwmgr_OpenManagement_Aboutprotections", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_autocomplete": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#autocomplete.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L477", + "telemetry_mirror": "Pwmgr_OpenManagement_Autocomplete", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_contextmenu": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#contextmenu.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L489", + "telemetry_mirror": "Pwmgr_OpenManagement_Contextmenu", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_direct": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#direct.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L501", + "telemetry_mirror": "Pwmgr_OpenManagement_Direct", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_mainmenu": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#mainmenu.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L513", + "telemetry_mirror": "Pwmgr_OpenManagement_Mainmenu", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_pageinfo": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#pageinfo.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L525", + "telemetry_mirror": "Pwmgr_OpenManagement_Pageinfo", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_preferences": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#preferences.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L537", + "telemetry_mirror": "Pwmgr_OpenManagement_Preferences", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_management_snippet": { + "bugs": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "data_reviews": [ + "https://bugzil.la/1543499", + "https://bugzil.la/1454733", + "https://bugzil.la/1545172", + "https://bugzil.la/1550631", + "https://bugzil.la/1622971" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Sent when opening the password management UI. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_management#snippet.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "sfoster@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L549", + "telemetry_mirror": "Pwmgr_OpenManagement_Snippet", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_open_site_existing_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.open_site#existing_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L721", + "telemetry_mirror": "Pwmgr_OpenSite_ExistingLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_os_auth_enabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "dates": { + "first": "2025-01-15 12:27:33", + "last": "2025-02-04 14:27:22" + }, + "description": "Check at startup whether OS Authentication has been enabled for passwords.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5597784b078f9287d0e509537bc41e1591e467b3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L438", + "type": "boolean", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_potentially_breached_passwords": { + "bugs": [ + "https://bugzil.la/1577808" + ], + "data_reviews": [ + "https://bugzil.la/1577808" + ], + "dates": { + "first": "2024-10-18 10:50:40", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of potentially breached passwords, as determined by LoginBreaches.getPotentialBreachesByLoginGUID. This metric was generated to correspond to the Legacy Telemetry scalar pwmgr.potentially_breached_passwords.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "5df8c11e376b1577986ddd0e80d53762ccb4472c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [ + "UNIT_IN_NAME" + ], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L803", + "telemetry_mirror": "PWMGR_POTENTIALLY_BREACHED_PASSWORDS", + "type": "quantity", + "unit": "passwords", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_prompt_shown_os_reauth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "dates": { + "first": "2025-01-15 12:27:33", + "last": "2025-02-04 14:27:22" + }, + "description": "Captures the method of user interaction initiating the prompt and the result of the prompt. Possible triggers include:\n \"copy_logins\" when a user copies a password in about:logins\n \"copy_cpm\" when a user copies a password in contextual password manager\n \"edit_logins\" when a user edits a login in about:logins\n \"edit_cpm\" when a user edits a login in contextual password manager\n \"export_logins\" when a user exports all passwords in about:logins\n \"export_cpm\" when a user exports all passwords in contextual password manager\n \"reveal_logins\" when a user reveals a password a login in about:logins\n \"reveal_cpm\" when a user reveals a password a login in contextual password manager\n \"toggle_pref_primary_password\" when a user toggles \"Use a Primary Password\" in about:preferences\n \"toggle_pref_os_auth\" when a user toggles \"Passwords / Require device sign in\" in about:preferences\nPossible results include:\n \"success\" should be used when the user is shown the OS Auth prompt and successfully authenticates.\n \"fail_user_canceled\" should be used when the user cancels the authentication prompt. The user may or may not have provided an incorrect password before cancelling.\n \"fail_error\" should be used when an unexpected exception is encountered.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "result": { + "description": "The result of the OS Authentication.\n", + "type": "string" + }, + "trigger": { + "description": "Which user interaction triggered the event.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5597784b078f9287d0e509537bc41e1591e467b3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L380", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_reauthenticate_master_password": { + "bugs": [ + "https://bugzil.la/1628029", + "https://bugzil.la/1623745", + "https://bugzil.la/1636729", + "https://bugzil.la/1642267" + ], + "data_reviews": [ + "https://bugzil.la/1628029", + "https://bugzil.la/1623745", + "https://bugzil.la/1636729", + "https://bugzil.la/1642267" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Measure how often users are asked to authenticate with their Operating System or Master Password to gain access to stored passwords. Possible values are as follows,\n \"success\" should be used when the user authenticates and provides a password or other authentication factor.\n \"success_no_prompt\" should be used when the feature is enabled but no prompt is given to the user because they have recently authenticated.\n \"success_disabled\" is used when the feature is disabled.\n \"success_unsupported_platform\" should be set when the user attempts to authenticate on an unsupported platform.\n \"success_no_password\" should be used when the user doesn't have an OS password set.\n \"fail\" should be used when the user cancels the authentication prompt or an unexpected exception is encountered. The user may or may not have provided an incorrect password before cancelling.\nThis event was generated to correspond to the Legacy Telemetry event pwmgr.reauthenticate#master_password.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "auto_admin": { + "description": "If the AutoAdminLogon Windows feature is enabled. This feature disables password prompt when logging in to Windows.\n", + "type": "string" + }, + "require_signon": { + "description": "If the Power Settings on Windows are configured to not prompt for password upon resuming from sleep.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L314", + "telemetry_mirror": "Pwmgr_Reauthenticate_MasterPassword", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_reauthenticate_os_auth": { + "bugs": [ + "https://bugzil.la/1628029", + "https://bugzil.la/1623745", + "https://bugzil.la/1636729", + "https://bugzil.la/1642267" + ], + "data_reviews": [ + "https://bugzil.la/1628029", + "https://bugzil.la/1623745", + "https://bugzil.la/1636729", + "https://bugzil.la/1642267" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Measure how often users are asked to authenticate with their Operating System or Master Password to gain access to stored passwords. Possible values are as follows,\n \"success\" should be used when the user authenticates and provides a password or other authentication factor.\n \"success_no_prompt\" should be used when the feature is enabled but no prompt is given to the user because they have recently authenticated.\n \"success_disabled\" is used when the feature is disabled.\n \"success_unsupported_platform\" should be set when the user attempts to authenticate on an unsupported platform.\n \"success_no_password\" should be used when the user doesn't have an OS password set.\n \"fail\" should be used when the user cancels the authentication prompt or an unexpected exception is encountered. The user may or may not have provided an incorrect password before cancelling.\nThis event was generated to correspond to the Legacy Telemetry event pwmgr.reauthenticate#os_auth.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "auto_admin": { + "description": "If the AutoAdminLogon Windows feature is enabled. This feature disables password prompt when logging in to Windows.\n", + "type": "string" + }, + "require_signon": { + "description": "If the Power Settings on Windows are configured to not prompt for password upon resuming from sleep.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L360", + "telemetry_mirror": "Pwmgr_Reauthenticate_OsAuth", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_require_os_reauth_toggle": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1915672" + ], + "dates": { + "first": "2025-01-15 12:27:33", + "last": "2025-02-04 14:27:22" + }, + "description": "Captures the state of the toggle after the change was made. Toggle states include:\n True means the OS Auth preference is enabeled.\n False means it is disabled.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "toggle_state": { + "description": "The toggle state after the event.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "5597784b078f9287d0e509537bc41e1591e467b3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "autofill@lists.mozilla.org", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L417", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_save_existing_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.save#existing_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L734", + "telemetry_mirror": "Pwmgr_Save_ExistingLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_save_new_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.save#new_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L747", + "telemetry_mirror": "Pwmgr_Save_NewLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_saved_login_used_auth_login": { + "bugs": [ + "https://bugzil.la/1631130" + ], + "data_reviews": [ + "https://bugzil.la/1631130" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Each time a saved login is used in a form or authentication dialog. This event was generated to correspond to the Legacy Telemetry event pwmgr.saved_login_used#auth_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "filled": { + "description": "Whether the browser filled the login details for the user vs. typing saved values.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "09a946d8e1bcc6e1e179430da5e5a887cc8021e2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 8, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L208", + "telemetry_mirror": "Pwmgr_SavedLoginUsed_AuthLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_saved_login_used_form_login": { + "bugs": [ + "https://bugzil.la/1631130" + ], + "data_reviews": [ + "https://bugzil.la/1631130" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Each time a saved login is used in a form or authentication dialog. This event was generated to correspond to the Legacy Telemetry event pwmgr.saved_login_used#form_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "filled": { + "description": "Whether the browser filled the login details for the user vs. typing saved values.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "09a946d8e1bcc6e1e179430da5e5a887cc8021e2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 8, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L174", + "telemetry_mirror": "Pwmgr_SavedLoginUsed_FormLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_saved_login_used_form_password": { + "bugs": [ + "https://bugzil.la/1631130" + ], + "data_reviews": [ + "https://bugzil.la/1631130" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Each time a saved login is used in a form or authentication dialog. This event was generated to correspond to the Legacy Telemetry event pwmgr.saved_login_used#form_password.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "filled": { + "description": "Whether the browser filled the login details for the user vs. typing saved values.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "09a946d8e1bcc6e1e179430da5e5a887cc8021e2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 8, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L195", + "telemetry_mirror": "Pwmgr_SavedLoginUsed_FormPassword", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_saved_login_used_prompt_login": { + "bugs": [ + "https://bugzil.la/1631130" + ], + "data_reviews": [ + "https://bugzil.la/1631130" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Each time a saved login is used in a form or authentication dialog. This event was generated to correspond to the Legacy Telemetry event pwmgr.saved_login_used#prompt_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "filled": { + "description": "Whether the browser filled the login details for the user vs. typing saved values.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "09a946d8e1bcc6e1e179430da5e5a887cc8021e2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 8, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L221", + "telemetry_mirror": "Pwmgr_SavedLoginUsed_PromptLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_select_existing_login": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.select#existing_login.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L760", + "telemetry_mirror": "Pwmgr_Select_ExistingLogin", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_show_password": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.show#password.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "breached": { + "description": "Whether the login is marked as breached or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + }, + "vulnerable": { + "description": "Whether the login is marked as vulnerable or not. If a login is both breached and vulnerable, it will only be reported as breached.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L773", + "telemetry_mirror": "Pwmgr_Show_Password", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "pwmgr_sort_list": { + "bugs": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "data_reviews": [ + "https://bugzil.la/1548463", + "https://bugzil.la/1600958", + "https://bugzil.la/1549115", + "https://bugzil.la/1628165" + ], + "dates": { + "first": "2024-09-25 07:19:05", + "last": "2025-02-04 14:27:22" + }, + "description": "These events record interactions on the about:logins page. This event was generated to correspond to the Legacy Telemetry event pwmgr.sort#list.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "sort_key": { + "description": "The key that is used for sorting the login-list.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "dba3737cb07254348af5ae211c96d82bc61dac83", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "loines@mozilla.com", + "passwords-dev@mozilla.org", + "jaws@mozilla.com" + ], + "reflog-index": { + "first": 7, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L786", + "telemetry_mirror": "Pwmgr_Sort_List", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "quotamanager_initialize_repository_number_of_iterations": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1927260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1927260" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "This metric logs the count of directory entries iterated within the QuotaManager::InitializeRepository function for each repository type. Each instance of this metric is labeled with one of three repository types: \"persistent\", \"temporary\" or \"default\" (there's also \"private\" repository but that should never be iterated by the function). The main purpose is to track and analyze iteration counts during the initialization process of each repository type, helping to identify performance trends or potential inefficiencies across these repositories. This can provide insight into the impacts of specific code changes, including potential optimizations or regressions.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "labels": [ + "persistent", + "temporary", + "default", + "private" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Storage: Quota Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "jvarga@mozilla.com", + "storage-telemetry@mozilla.com" + ], + "range_max": 65535, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/quota/metrics.yaml#L73", + "type": "labeled_custom_distribution", + "unit": "integer", + "version": 0, + "repos": [ + "gecko" + ] + }, + "readermode_button_click": { + "bugs": [ + "https://bugzil.la/1693362" + ], + "data_reviews": [ + "https://bugzil.la/1693362" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded any time a Reader Mode button is clicked. This event was generated to correspond to the Legacy Telemetry event readermode.button#click.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "label": { + "description": "The type of button clicked.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Reader Mode" + ] + }, + "no_lint": [], + "notification_emails": [ + "kirill@getpocket.com", + "sdowne@getpocket.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reader/metrics.yaml#L56", + "telemetry_mirror": "Readermode_Button_Click", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "readermode_view_off": { + "bugs": [ + "https://bugzil.la/1689201" + ], + "data_reviews": [ + "https://bugzil.la/1689201" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded any time Reader Mode is turned on or off. This event was generated to correspond to the Legacy Telemetry event readermode.view#off.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "reader_time": { + "description": "Time spent in Reader Mode session in seconds (whole number)\n", + "type": "string" + }, + "scroll_position": { + "description": "Percentage of window scrolled in Reader Mode (whole number)\n", + "type": "string" + }, + "subcategory": { + "description": "The broad event category for this probe. E.g. navigation\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Reader Mode" + ] + }, + "no_lint": [], + "notification_emails": [ + "kirill@getpocket.com", + "sdowne@getpocket.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reader/metrics.yaml#L43", + "telemetry_mirror": "Readermode_View_Off", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "readermode_view_on": { + "bugs": [ + "https://bugzil.la/1689201" + ], + "data_reviews": [ + "https://bugzil.la/1689201" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "This is recorded any time Reader Mode is turned on or off. This event was generated to correspond to the Legacy Telemetry event readermode.view#on.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "reader_time": { + "description": "Time spent in Reader Mode session in seconds (whole number)\n", + "type": "string" + }, + "scroll_position": { + "description": "Percentage of window scrolled in Reader Mode (whole number)\n", + "type": "string" + }, + "subcategory": { + "description": "The broad event category for this probe. E.g. navigation\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Reader Mode" + ] + }, + "no_lint": [], + "notification_emails": [ + "kirill@getpocket.com", + "sdowne@getpocket.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/reader/metrics.yaml#L14", + "telemetry_mirror": "Readermode_View_On", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_clicked_fill_username": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Firefox relay integration autocomplete popup This event was generated to correspond to the Legacy Telemetry event relay_integration.clicked#fill_username.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "error_code": { + "description": "The error code after users click the fill username autocomplete entry. Only present if the object is \"fill_username\". When the event is successful, the error_code is 0.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L976", + "telemetry_mirror": "Relay_integration_Clicked_FillUsername", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_clicked_offer_relay": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Firefox relay integration autocomplete popup This event was generated to correspond to the Legacy Telemetry event relay_integration.clicked#offer_relay.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "scenario": { + "description": "Describes the auth context for now only SignupForm is supported\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L940", + "telemetry_mirror": "Relay_integration_Clicked_OfferRelay", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_disabled_opt_in_panel": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Panel to opt-in Firefox Relay Integration This event was generated to correspond to the Legacy Telemetry event relay_integration.disabled#opt_in_panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L1093", + "telemetry_mirror": "Relay_integration_Disabled_OptInPanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_disabled_pref_change": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Checkbox in the settings page to enable/disable relay This event was generated to correspond to the Legacy Telemetry event relay_integration.disabled#pref_change.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L903", + "telemetry_mirror": "Relay_integration_Disabled_PrefChange", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_enabled_opt_in_panel": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Panel to opt-in Firefox Relay Integration This event was generated to correspond to the Legacy Telemetry event relay_integration.enabled#opt_in_panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L1067", + "telemetry_mirror": "Relay_integration_Enabled_OptInPanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_enabled_pref_change": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Checkbox in the settings page to enable/disable relay This event was generated to correspond to the Legacy Telemetry event relay_integration.enabled#pref_change.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L888", + "telemetry_mirror": "Relay_integration_Enabled_PrefChange", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_get_unlimited_masks_reuse_panel": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Panels to show the state of the email alias generation This event was generated to correspond to the Legacy Telemetry event relay_integration.get_unlimited_masks#reuse_panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L1015", + "telemetry_mirror": "Relay_integration_GetUnlimitedMasks_ReusePanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_postponed_opt_in_panel": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Panel to opt-in Firefox Relay Integration This event was generated to correspond to the Legacy Telemetry event relay_integration.postponed#opt_in_panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L1080", + "telemetry_mirror": "Relay_integration_Postponed_OptInPanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_reuse_mask_reuse_panel": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Panels to show the state of the email alias generation This event was generated to correspond to the Legacy Telemetry event relay_integration.reuse_mask#reuse_panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L1033", + "telemetry_mirror": "Relay_integration_ReuseMask_ReusePanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_shown_fill_username": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Firefox relay integration autocomplete popup This event was generated to correspond to the Legacy Telemetry event relay_integration.shown#fill_username.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "error_code": { + "description": "The error code after users click the fill username autocomplete entry. Only present if the object is \"fill_username\". When the event is successful, the error_code is 0.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L953", + "telemetry_mirror": "Relay_integration_Shown_FillUsername", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_shown_offer_relay": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Firefox relay integration autocomplete popup This event was generated to correspond to the Legacy Telemetry event relay_integration.shown#offer_relay.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "scenario": { + "description": "Describes the auth context for now only SignupForm is supported\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L915", + "telemetry_mirror": "Relay_integration_Shown_OfferRelay", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_shown_opt_in_panel": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Panel to opt-in Firefox Relay Integration This event was generated to correspond to the Legacy Telemetry event relay_integration.shown#opt_in_panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L1046", + "telemetry_mirror": "Relay_integration_Shown_OptInPanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "relay_integration_shown_reuse_panel": { + "bugs": [ + "https://bugzil.la/1804502" + ], + "data_reviews": [ + "https://bugzil.la/1804502" + ], + "dates": { + "first": "2024-09-27 08:44:45", + "last": "2025-02-04 14:27:22" + }, + "description": "Panels to show the state of the email alias generation This event was generated to correspond to the Legacy Telemetry event relay_integration.shown#reuse_panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "error_code": { + "description": "The error code after users click the email alias generation panel. When the event is successful, the error_code is 0.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a6ffbe678bdef3fa397e2167971fa883ea6893ca", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Password Manager" + ] + }, + "no_lint": [], + "notification_emails": [ + "passwords-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/passwordmgr/metrics.yaml#L989", + "telemetry_mirror": "Relay_integration_Shown_ReusePanel", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of RTCRtpSenders created.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L14", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_count_setparameters_compat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "description": "The number of RTCRtpSenders created that use the compatibility mode for setParameters.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L34", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_blame_length_changed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2024-08-22 16:49:01" + }, + "description": "The number of RTCRtpSenders that have warned at least once about a `setParameters` call that attempted to change the number of encodings, broken down by the eTLD+1 of the site. Collected only on EARLY_BETA_OR_EARLIER.\n", + "disabled": false, + "expires": 132, + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "a85b25946f7f8eebf466bd7ad821b82b68a9231f" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/a85b25946f7f8eebf466bd7ad821b82b68a9231f/dom/media/webrtc/metrics.yaml#L134", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_blame_no_getparameters": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2024-08-22 16:49:01" + }, + "description": "The number of RTCRtpSenders that have warned at least once about a `setParameters` call because `[[LastReturnedParameters]]` was not set, broken down by the eTLD+1 of the site. (ie; there was not a recent enough call to `getParameters`) Collected only on EARLY_BETA_OR_EARLIER.\n", + "disabled": false, + "expires": 132, + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "a85b25946f7f8eebf466bd7ad821b82b68a9231f" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/a85b25946f7f8eebf466bd7ad821b82b68a9231f/dom/media/webrtc/metrics.yaml#L94", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_blame_no_transactionid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2024-03-09 01:19:05", + "last": "2024-08-22 16:49:01" + }, + "description": "The number of RTCRtpSenders that have warned at least once about a `setParameters` call that did not set the transactionId field, broken down by the eTLD+1 of the site. Collected only on EARLY_BETA_OR_EARLIER.\n", + "disabled": false, + "expires": 132, + "gecko_datapoint": "", + "git-commits": { + "first": "984ba25ec81b5834907b0b0e665fc8fa5bd1365c", + "last": "a85b25946f7f8eebf466bd7ad821b82b68a9231f" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/a85b25946f7f8eebf466bd7ad821b82b68a9231f/dom/media/webrtc/metrics.yaml#L174", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_blame_stale_transactionid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1831343" + ], + "data_sensitivity": [ + "stored_content" + ], + "dates": { + "first": "2023-08-08 02:03:41", + "last": "2023-09-22 00:16:28" + }, + "description": "The number of RTCRtpSenders that have warned at least once about a `setParameters` call that used a stale transaction id, broken down by the eTLD+1 of the site. Collected only on EARLY_BETA_OR_EARLIER.\n", + "disabled": false, + "expires": 120, + "gecko_datapoint": "", + "git-commits": { + "first": "e8c35cde0278aa72403e078ca210919959168250", + "last": "efd7c749704fd07510ca60cbfbf8b970ea834468" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/efd7c749704fd07510ca60cbfbf8b970ea834468/dom/media/webrtc/metrics.yaml#L193", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_fail_length_changed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count", + "description": "The proportion of RTCRtpSenders that have thrown an error at least once about a setParameters call that attempted to change the number of encodings.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L148", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_fail_no_encodings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count_setparameters_compat", + "description": "The proportion of RTCRtpSenders configured with the setParameters compat mode that have thrown an error at least once about a setParameters call that had no encodings (we do not measure this against the general population of RTCRtpSenders, since without the compat mode this failure is never observed, because it fails the length change check).\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L262", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_fail_no_getparameters": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count", + "description": "The proportion of RTCRtpSenders that have thrown an error at least once about a setParameters call because [[LastReturnedParameters]] was not set. (ie; there was not a recent enough call to getParameters)\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L195", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_fail_no_transactionid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count", + "description": "The proportion of RTCRtpSenders that have thrown an error at least once about a setParameters call that did not set the transactionId field.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L218", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_fail_other": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count", + "description": "The proportion of RTCRtpSenders that have thrown an error at least once about a setParameters call that had no encodings.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L287", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_fail_rid_changed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count", + "description": "The proportion of RTCRtpSenders that have thrown an error at least once about a setParameters call that attempted to change the rid on an encoding (note that we only check this if the encoding count did not change, see fail_length_changed).\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L171", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_fail_stale_transactionid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count", + "description": "The proportion of RTCRtpSenders that have thrown an error at least once about a setParameters call that used a stale transaction id.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L240", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_warn_length_changed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count_setparameters_compat", + "description": "The proportion of RTCRtpSenders configured with the setParameters compat mode that have warned at least once about a setParameters call that attempted to change the number of encodings.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L102", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_warn_no_getparameters": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count_setparameters_compat", + "description": "The proportion of RTCRtpSenders configured with the setParameters compat mode that have warned at least once about a setParameters call because [[LastReturnedParameters]] was not set. (ie; there was not a recent enough call to getParameters)\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L78", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_warn_no_transactionid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count_setparameters_compat", + "description": "The proportion of RTCRtpSenders configured with the setParameters compat mode that have warned at least once about a setParameters call that did not set the transactionId field.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L125", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_warn_rid_changed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2022-12-13 16:32:25", + "last": "2023-06-30 13:48:54" + }, + "denominator_metric": "rtcrtpsender.count_setparameters_compat", + "description": "The proportion of RTCRtpSenders configured with the setParameters compat mode that have warned at least once about a setParameters call that attempted to change the rid on an encoding (note that we only check this if the encoding count did not change, see warn_length_changed).\n", + "disabled": false, + "expires": 116, + "gecko_datapoint": "", + "git-commits": { + "first": "e1da52d829dc43e584933a17e45af31be381da39", + "last": "627d54a085fc9304b93850537b93ec9154e84ebd" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/627d54a085fc9304b93850537b93ec9154e84ebd/dom/media/webrtc/metrics.yaml#L139", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_setparameters_warn_stale_transactionid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-05-13 00:11:51", + "last": "2023-09-22 00:16:28" + }, + "denominator_metric": "rtcrtpsender.count_setparameters_compat", + "description": "The proportion of RTCRtpSenders configured with the setParameters compat mode that have warned at least once about a setParameters call that used a stale transaction id.\n", + "disabled": false, + "expires": 120, + "gecko_datapoint": "", + "git-commits": { + "first": "e6869d9efd381c82b0ab89733e7dc7dfa6b8a268", + "last": "efd7c749704fd07510ca60cbfbf8b970ea834468" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/efd7c749704fd07510ca60cbfbf8b970ea834468/dom/media/webrtc/metrics.yaml#L174", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "rtcrtpsender_used_sendencodings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1401592", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1832459", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1881403", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1912188" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-08-22 15:35:41", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "rtcrtpsender.count", + "description": "The proportion of RTCRtpSenders that were created by an addTransceivers call that was passed a sendEncodings.\n", + "disabled": false, + "expires": 142, + "gecko_datapoint": "", + "git-commits": { + "first": "8bfa144ed77aa104c35c0fc6a28187c2ab220c70", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: WebRTC" + ] + }, + "no_lint": [], + "notification_emails": [ + "webrtc-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/media/webrtc/metrics.yaml#L55", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "script_preloader_mainthread_recompile": { + "bugs": [ + "https://bugzil.la/1364235", + "https://bugzil.la/1590385", + "https://bugzil.la/1623098", + "https://bugzil.la/1649954", + "https://bugzil.la/1689257", + "https://bugzil.la/1754639" + ], + "data_reviews": [ + "https://bugzil.la/1364235", + "https://bugzil.la/1590385", + "https://bugzil.la/1623098", + "https://bugzil.la/1649954", + "https://bugzil.la/1689257", + "https://bugzil.la/1754639" + ], + "dates": { + "first": "2024-11-15 00:21:58", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times we ended up recompiling a script from the script preloader on the main thread. This metric was generated to correspond to the Legacy Telemetry scalar script.preloader.mainthread_recompile.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "658c0f52c31bdcf6a76648d40eee21add7689e7e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dothayer@mozilla.com", + "plawless@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L954", + "telemetry_mirror": "SCRIPT_PRELOADER_MAINTHREAD_RECOMPILE", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "sct_signature_cache_hits": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "dates": { + "first": "2024-09-24 00:14:53", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "sct_signature_cache.total", + "description": "How often an SCT signature to be verified is in the cache already.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "67f8699bc5606ee9d22b81b8fc91075e7560dc25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/ct/metrics.yaml#L14", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "sct_signature_cache_total": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1918279" + ], + "dates": { + "first": "2024-09-24 00:14:53", + "last": "2025-02-04 14:27:22" + }, + "description": "How many SCT signature verifications are performed.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "67f8699bc5606ee9d22b81b8fc91075e7560dc25", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/ct/metrics.yaml#L26", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_client_auth_cert_usage": { + "bugs": [ + "https://bugzil.la/1749884" + ], + "data_reviews": [ + "https://bugzil.la/1749884" + ], + "dates": { + "first": "2024-10-19 07:54:50", + "last": "2025-02-04 14:27:22" + }, + "description": "Measures how many servers have requested a client authentication certificate (key: \"requested\") and how many times the user has opted to send one in response (key: \"sent\"). This metric was generated to correspond to the Legacy Telemetry scalar security.client_auth_cert_usage.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "896f72adbc94bec2fcc3e85ed7e72abb8649d956", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L366", + "telemetry_mirror": "SECURITY_CLIENT_AUTH_CERT_USAGE", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_csp_violation_browser": { + "bugs": [ + "https://bugzil.la/1937080" + ], + "data_reviews": [ + "https://bugzil.la/1937080" + ], + "dates": { + "first": "2025-01-09 00:15:22", + "last": "2025-02-04 00:20:41" + }, + "description": "Information about CSP violations that happen in browser.xhtml, that are caused by the Content-Security-Policy that restricts which scripts can execute.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "blockeduridetails": { + "description": "A sanitized version of SecurityPolicyViolationEvent's blockedURI.\n", + "type": "string" + }, + "blockeduritype": { + "description": "The sanitized type of SecurityPolicyViolationEvent's blockedURI.\n", + "type": "string" + }, + "columnnumber": { + "description": "The same as SecurityPolicyViolationEvent's columnNumber.\n", + "type": "quantity" + }, + "directive": { + "description": "The same as SecurityPolicyViolationEvent's effectiveDirective.\n", + "type": "string" + }, + "linenumber": { + "description": "The same as SecurityPolicyViolationEvent's lineNumber.\n", + "type": "quantity" + }, + "sample": { + "description": "The same as SecurityPolicyViolationEvent's sample. (Only for violations from chrome:)\n", + "type": "string" + }, + "sourcedetails": { + "description": "A sanitized version of SecurityPolicyViolationEvent's sourceFile, e.g. the whole chrome:// URL in some cases. This follows eval_usage_system_context sanitization procedure.\n", + "type": "string" + }, + "sourcetype": { + "description": "The sanitized type of SecurityPolicyViolationEvent's sourceFile, e.g. \"chromeuri\". This follows eval_usage_system_context sanitization procedure.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "1f612f52aefd6bbbd5c77061a5ee6733bbd46925", + "last": "74c9d88a99fc46a395ba817e8639f55636a264a2" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "tschuster@mozilla.com", + "freddy@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/74c9d88a99fc46a395ba817e8639f55636a264a2/dom/security/metrics.yaml#L265", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_csp_violation_internal_page": { + "bugs": [ + "https://bugzil.la/1942622" + ], + "data_reviews": [ + "https://bugzil.la/1942622" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Information about Content-Security-Policy violations that happen in internal pages like chrome://\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "blockeduridetails": { + "description": "A sanitized version of SecurityPolicyViolationEvent's blockedURI.\n", + "type": "string" + }, + "blockeduritype": { + "description": "The sanitized type of SecurityPolicyViolationEvent's blockedURI.\n", + "type": "string" + }, + "columnnumber": { + "description": "The same as SecurityPolicyViolationEvent's columnNumber.\n", + "type": "quantity" + }, + "directive": { + "description": "The same as SecurityPolicyViolationEvent's effectiveDirective.\n", + "type": "string" + }, + "linenumber": { + "description": "The same as SecurityPolicyViolationEvent's lineNumber.\n", + "type": "quantity" + }, + "sample": { + "description": "The same as SecurityPolicyViolationEvent's sample. (Only for violations from chrome:)\n", + "type": "string" + }, + "selfdetails": { + "description": "A sanitized version of the \"self uri\", which is roughly similar to the documentURI, e.g. the whole chrome:// URL in some cases. This follows eval_usage_system_context sanitization procedure.\n", + "type": "string" + }, + "selftype": { + "description": "The sanitized type of the \"self uri\", which is roughly similar to the documentURI. This follows eval_usage_system_context sanitization procedure.\n", + "type": "string" + }, + "sourcedetails": { + "description": "A sanitized version of SecurityPolicyViolationEvent's sourceFile, e.g. the whole chrome:// URL in some cases. This follows eval_usage_system_context sanitization procedure.\n", + "type": "string" + }, + "sourcetype": { + "description": "The sanitized type of SecurityPolicyViolationEvent's sourceFile, e.g. \"chromeuri\". This follows eval_usage_system_context sanitization procedure.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "tschuster@mozilla.com", + "freddy@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L265", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_doh_neterror_click_add_exception_button": { + "bugs": [ + "https://bugzil.la/1829342" + ], + "data_reviews": [ + "https://bugzil.la/1829342" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click buttons on the DoH warning page. This event was generated to correspond to the Legacy Telemetry event security.doh.neterror.click#add_exception_button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "Current TRR mode\n", + "type": "string" + }, + "provider_key": { + "description": "TRR provider\n", + "type": "string" + }, + "skip_reason": { + "description": "The reason why DoH request is failed\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L82", + "telemetry_mirror": "SecurityDohNeterror_Click_AddExceptionButton", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_doh_neterror_click_continue_button": { + "bugs": [ + "https://bugzil.la/1829342" + ], + "data_reviews": [ + "https://bugzil.la/1829342" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click buttons on the DoH warning page. This event was generated to correspond to the Legacy Telemetry event security.doh.neterror.click#continue_button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "Current TRR mode\n", + "type": "string" + }, + "provider_key": { + "description": "TRR provider\n", + "type": "string" + }, + "skip_reason": { + "description": "The reason why DoH request is failed\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L108", + "telemetry_mirror": "SecurityDohNeterror_Click_ContinueButton", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_doh_neterror_click_disable_warning": { + "bugs": [ + "https://bugzil.la/1829342" + ], + "data_reviews": [ + "https://bugzil.la/1829342" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click buttons on the DoH warning page. This event was generated to correspond to the Legacy Telemetry event security.doh.neterror.click#disable_warning.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "Current TRR mode\n", + "type": "string" + }, + "provider_key": { + "description": "TRR provider\n", + "type": "string" + }, + "skip_reason": { + "description": "The reason why DoH request is failed\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L121", + "telemetry_mirror": "SecurityDohNeterror_Click_DisableWarning", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_doh_neterror_click_learn_more_link": { + "bugs": [ + "https://bugzil.la/1829342" + ], + "data_reviews": [ + "https://bugzil.la/1829342" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click buttons on the DoH warning page. This event was generated to correspond to the Legacy Telemetry event security.doh.neterror.click#learn_more_link.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "Current TRR mode\n", + "type": "string" + }, + "provider_key": { + "description": "TRR provider\n", + "type": "string" + }, + "skip_reason": { + "description": "The reason why DoH request is failed\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L134", + "telemetry_mirror": "SecurityDohNeterror_Click_LearnMoreLink", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_doh_neterror_click_settings_button": { + "bugs": [ + "https://bugzil.la/1829342" + ], + "data_reviews": [ + "https://bugzil.la/1829342" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click buttons on the DoH warning page. This event was generated to correspond to the Legacy Telemetry event security.doh.neterror.click#settings_button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "Current TRR mode\n", + "type": "string" + }, + "provider_key": { + "description": "TRR provider\n", + "type": "string" + }, + "skip_reason": { + "description": "The reason why DoH request is failed\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L95", + "telemetry_mirror": "SecurityDohNeterror_Click_SettingsButton", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_doh_neterror_click_try_again_button": { + "bugs": [ + "https://bugzil.la/1829342" + ], + "data_reviews": [ + "https://bugzil.la/1829342" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click buttons on the DoH warning page. This event was generated to correspond to the Legacy Telemetry event security.doh.neterror.click#try_again_button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "Current TRR mode\n", + "type": "string" + }, + "provider_key": { + "description": "TRR provider\n", + "type": "string" + }, + "skip_reason": { + "description": "The reason why DoH request is failed\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L48", + "telemetry_mirror": "SecurityDohNeterror_Click_TryAgainButton", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_doh_neterror_load_dohwarning": { + "bugs": [ + "https://bugzil.la/1829342" + ], + "data_reviews": [ + "https://bugzil.la/1829342" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "The DoH warning page is loaded. This event was generated to correspond to the Legacy Telemetry event security.doh.neterror.load#dohwarning.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "mode": { + "description": "Current TRR mode\n", + "type": "quantity" + }, + "provider_key": { + "description": "TRR provider\n", + "type": "string" + }, + "skip_reason": { + "description": "The reason why DoH request is failed\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com", + "kershaw@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L14", + "telemetry_mirror": "SecurityDohNeterror_Load_Dohwarning", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_eval_usage_parent_process": { + "bugs": [ + "https://bugzil.la/1567623" + ], + "data_reviews": [ + "https://bugzil.la/1567623" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "eval() (or an eval()-like method) was called while running in the System Principal context or the Parent Process. Expected values are: chromeuri - chrome:// file resourceuri - resource:// file datauri - a data URI bloburi - a blob URI abouturi - an about URI singlestring - A single file or string with no slashes mozillaextension - An extension claiming to be from *mozilla.org (Deprecated) otherextension - Another extension not from Mozilla (Deprecated) mozillaextension_file - An extension claiming to be from *mozilla.org, loaded from a file:// otherextension_file - Another extension not from Mozilla, loaded from a file:// extension_uri - A URI with the moz-extension:// scheme suspectedUserChromeJS - A filepath ending in .uc.js sanitizedWindowsPath - A filepath, on Windows, sanitized by WinUtils::PreparePathForTelemetry which is a bare filename or a subpath of %ProgramFiles%, %SystemRoot%, or %TEMP% sanitizedWindowsURL - A partial URL, on Windows, consisting of either file://../ followed by the value prepared as for sanitizedWindowsPath, or the bare scheme of the original url other - Unknown other-on-worker - We cannot do a regex; it is not a chrome, resource, data, or blob uri, but could be any other. regexfailure - Our Regex Matching code threw an error The fileinfo key may contain additional information about the file that caused the eval() depending on the above value. Resource, Chrome, About, and SingleString will contain the full value. (About URIs will remove any querystring values.) Extensions-from-file will contain the full value; however .xpi! will be shortened to !, shield.mozilla.org! to s! and mozilla.org! to m!. Data, Blob, UserChromeJS, Other, and Regexfailure should have no value. This event was generated to correspond to the Legacy Telemetry event security.evalUsage#parentProcess.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fileinfo": { + "description": "Information about the file that triggered eval\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The filename's type, see `nsContentSecurityUtils::FilenameToFilenameType(...)`.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com", + "ckerschb@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L328", + "telemetry_mirror": "Security_Evalusage_Parentprocess", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_eval_usage_system_context": { + "bugs": [ + "https://bugzil.la/1567623" + ], + "data_reviews": [ + "https://bugzil.la/1567623" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "eval() (or an eval()-like method) was called while running in the System Principal context or the Parent Process. Expected values are:\n - chromeuri - chrome:// file\n - resourceuri - resource:// file\n - datauri - a data URI\n - bloburi - a blob URI\n - abouturi - an about URI\n - singlestring - A single file or string with no slashes\n - mozillaextension - An extension claiming to be from *mozilla.org (Deprecated)\n - otherextension - Another extension not from Mozilla (Deprecated)\n - mozillaextension_file - An extension claiming to be from *mozilla.org, loaded from a file://\n - otherextension_file - Another extension not from Mozilla, loaded from a file://\n - extension_uri - A URI with the moz-extension:// scheme\n - suspectedUserChromeJS - A filepath ending in .uc.js\n - sanitizedWindowsPath - A filepath, on Windows, sanitized by WinUtils::PreparePathForTelemetry which is a bare filename or a subpath of %ProgramFiles%, %SystemRoot%, or %TEMP%\n - sanitizedWindowsURL - A partial URL, on Windows, consisting of either file://../ followed by the value prepared as for sanitizedWindowsPath, or the bare scheme of the original url\n - other - Unknown\n - other-on-worker - We cannot do a regex; it is not a chrome, resource, data, or blob uri, but could be any other.\n - regexfailure - Our Regex Matching code threw an error\n\nThe fileinfo key may contain additional information about the file that caused the eval() depending on the above value. Resource, Chrome, About, and SingleString will contain the full value. (About URIs will remove any querystring values.)\nExtensions-from-file will contain the full value; however .xpi! will be shortened to !, shield.mozilla.org! to s! and mozilla.org! to m!. Data, Blob, UserChromeJS, Other, and Regexfailure should have no value.\nThis event was generated to correspond to the Legacy Telemetry event security.evalUsage#systemContext.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fileinfo": { + "description": "Information about the file that triggered eval\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The filename's type, see `nsContentSecurityUtils::FilenameToFilenameType(...)`.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com", + "ckerschb@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L205", + "telemetry_mirror": "Security_Evalusage_Systemcontext", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_fission_principals": { + "bugs": [ + "https://bugzil.la/1687891" + ], + "data_reviews": [ + "https://bugzil.la/1687891" + ], + "dates": { + "first": "2024-11-19 00:22:16", + "last": "2025-02-04 14:27:22" + }, + "description": "When running with Fission, we received an unexpected principal from the content process. Expected values for this telemetry event are the method names in ContentParent that received the unexpected principal. This event was generated to correspond to the Legacy Telemetry event security.fissionPrincipals#contentParent.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "principalType": { + "description": "The type of principal that was received. Expected values for this field are\n NullPtr\n SystemPrincipal\n ExpandedPrincipal\n ContentPrincipal\n Unknown\n", + "type": "string" + }, + "scheme": { + "description": "If the principal is a ContentPrincipal, we also collect the scheme\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d9d33a0da65855e0aea777645057cb5fcfde02fa", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com", + "ckerschb@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/metrics.yaml#L543", + "telemetry_mirror": "Security_Fissionprincipals_Contentparent", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_javascript_load_parent_process": { + "bugs": [ + "https://bugzil.la/1582512" + ], + "data_reviews": [ + "https://bugzil.la/1582512" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "The javascript engine requested to load a filename that was not allowed. Expected values, and fileinfo key, are the same possible values as above in 'evalUsage' This event was generated to correspond to the Legacy Telemetry event security.javascriptLoad#parentProcess.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "fileinfo": { + "description": "Information about the filename that was requested to be loaded\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The filename's type, see `nsContentSecurityUtils::FilenameToFilenameType(...)`.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com", + "gijs@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L371", + "telemetry_mirror": "Security_Javascriptload_Parentprocess", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_pref_usage_content_process": { + "bugs": [ + "https://bugzil.la/1782544", + "https://bugzil.la/1708798" + ], + "data_reviews": [ + "https://bugzil.la/1782544", + "https://bugzil.la/1708798" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "We block certain preferences from being sent to the content process because they contain sensitive user data. Some preferences are blocked by name, others by heuristic. If one of the preferences so blocked is accidently accessed we want to know about it so we can allowlist it or refactor the access. This event was generated to correspond to the Legacy Telemetry event security.prefUsage#contentProcess.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The name of the pref.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Preferences: Backend" + ] + }, + "no_lint": [], + "notification_emails": [ + "tom@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/modules/libpref/metrics.yaml#L14", + "telemetry_mirror": "Security_Prefusage_Contentprocess", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_advanced_button": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#advanced_button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L195", + "telemetry_mirror": "SecurityUiCerterror_Click_AdvancedButton", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_auto_report_cb": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#auto_report_cb.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L294", + "telemetry_mirror": "SecurityUiCerterror_Click_AutoReportCb", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_clipboard_button_bot": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#clipboard_button_bot.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L339", + "telemetry_mirror": "SecurityUiCerterror_Click_ClipboardButtonBot", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_clipboard_button_top": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#clipboard_button_top.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L324", + "telemetry_mirror": "SecurityUiCerterror_Click_ClipboardButtonTop", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_error_code_link": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#error_code_link.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L309", + "telemetry_mirror": "SecurityUiCerterror_Click_ErrorCodeLink", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_exception_button": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#exception_button.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L234", + "telemetry_mirror": "SecurityUiCerterror_Click_ExceptionButton", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_learn_more_link": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#learn_more_link.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L279", + "telemetry_mirror": "SecurityUiCerterror_Click_LearnMoreLink", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_return_button_adv": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#return_button_adv.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L264", + "telemetry_mirror": "SecurityUiCerterror_Click_ReturnButtonAdv", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_click_return_button_top": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events on the cert error page. Keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.click#return_button_top.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L249", + "telemetry_mirror": "SecurityUiCerterror_Click_ReturnButtonTop", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_certerror_load_aboutcerterror": { + "bugs": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "data_reviews": [ + "https://bugzil.la/1484255", + "https://bugzil.la/1505310", + "https://bugzil.la/1553181", + "https://bugzil.la/1629826" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "The about:certerror page is loaded, keyed by error code, see https://searchfox.org/mozilla- central/source/security/nss/lib/mozpkix/include/pkix/Result.h This event was generated to correspond to the Legacy Telemetry event security.ui.certerror.load#aboutcerterror.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "channel_status": { + "description": "The status of the failed channel, as an nsresult.\n", + "type": "quantity" + }, + "has_sts": { + "description": "If the error page is for a site with HSTS headers or with a pinned key.\n", + "type": "boolean" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "issued_by_cca": { + "description": "If trusting the CCA India roots would fix this error.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L148", + "telemetry_mirror": "SecurityUiCerterror_Load_Aboutcerterror", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_cookieb_toggle_off": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#cookieb_toggle_off.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L351", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_CookiebToggleOff", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_cookieb_toggle_on": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#cookieb_toggle_on.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L339", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_CookiebToggleOn", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_cookies": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#cookies.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L237", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_Cookies", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_cryptominers": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#cryptominers.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L273", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_Cryptominers", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_etp_toggle_off": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#etp_toggle_off.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L213", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_EtpToggleOff", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_etp_toggle_on": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#etp_toggle_on.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L182", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_EtpToggleOn", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_fingerprinters": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#fingerprinters.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L261", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_Fingerprinters", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_full_report": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#full_report.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L315", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_FullReport", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_milestone_message": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#milestone_message.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L327", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_MilestoneMessage", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_protectionspopup_cfr": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#protectionspopup_cfr.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "message": { + "description": "For protectionspopup_cfr, the message ID.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L363", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_ProtectionspopupCfr", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_settings": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L303", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_Settings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_smartblockembeds_toggle": { + "bugs": [ + "https://bugzil.la/1920735" + ], + "data_reviews": [ + "https://bugzil.la/1920735" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggered when SmartBlock embed toggles are clicked by the user\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "isBlock": { + "description": "boolean representing if this was a block or an unblock\n", + "type": "boolean" + }, + "openingReason": { + "description": "string representing how the protections panel was opened, one of [\"shieldButtonClicked\", \"embedPlaceholderButton\", \"toastButtonClicked\"]\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "wwen@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L376", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_social": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#social.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L225", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_Social", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_subview_settings": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#subview_settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L285", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_SubviewSettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_click_trackers": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1602015", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1798669" + ], + "dates": { + "first": "2024-12-17 14:01:49", + "last": "2025-02-04 14:27:22" + }, + "description": "User interaction by click events in the protections panel. This event was generated to correspond to the Legacy Telemetry event security.ui.protectionspopup.click#trackers.\n", + "disabled": false, + "expires": "never", + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "39328f8233719643c59eb71b6ccbc1ae377ec363", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "tihuang@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L249", + "telemetry_mirror": "SecurityUiProtectionspopup_Click_Trackers", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_close_protections_popup": { + "bugs": [ + "https://bugzil.la/1920735" + ], + "data_reviews": [ + "https://bugzil.la/1920735" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggered when the protections panel is closed. Records how the panel was opened and if the SmartBlock section had any interactions\n", + "disabled": false, + "expires": 140, + "extra_keys": { + "openingReason": { + "description": "string representing how the protections panel was opened, one of [\"shieldButtonClicked\", \"embedPlaceholderButton\", \"toastButtonClicked\"]\n", + "type": "string" + }, + "smartblockToggleClicked": { + "description": "boolean representing if the user interacted with the toggle anytime before it was closed\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "wwen@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L137", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_open_protections_popup": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1920735" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1920735" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the protections panel was opened.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "openingReason": { + "description": "string representing how the protections panel was opened, one of [\"shieldButtonClicked\", \"embedPlaceholderButton\", \"toastButtonClicked\"]\n", + "type": "string" + }, + "smartblockEmbedTogglesShown": { + "description": "boolean representing if smartblock toggles were shown to the user\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L102", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_open_protectionspopup_cfr": { + "bugs": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1920735" + ], + "data_reviews": [ + "https://bugzil.la/1560327", + "https://bugzil.la/1607488", + "https://bugzil.la/1643428", + "https://bugzil.la/1678201", + "https://bugzil.la/1739287", + "https://bugzil.la/1787249", + "https://bugzil.la/1920735" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the protections panel was opened.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "message": { + "description": "For protectionspopup_cfr, the message ID.\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "emz@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L162", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_protectionspopup_smartblockembeds_shown": { + "bugs": [ + "https://bugzil.la/1920735" + ], + "data_reviews": [ + "https://bugzil.la/1920735" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "How many times the SmartBlock placeholders are shown on the page\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "wwen@mozilla.com", + "emz@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/browser/base/content/metrics.yaml#L400", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_ui_tlserror_load_abouttlserror": { + "bugs": [ + "https://bugzil.la/1881335" + ], + "data_reviews": [ + "https://bugzil.la/1881335" + ], + "dates": { + "first": "2024-09-28 00:17:30", + "last": "2025-02-04 14:27:22" + }, + "description": "The about:neterror page is loaded with a TLS error or non- overridable certificate error, keyed by error code. This event was generated to correspond to the Legacy Telemetry event security.ui.tlserror.load#abouttlserror.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "channel_status": { + "description": "The status of the failed channel, as an nsresult.\n", + "type": "quantity" + }, + "is_frame": { + "description": "If the error page is loaded in an iframe.\n", + "type": "boolean" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a7eb62cce0a636cce64c0dfd68dc1358af697a2a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: General" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com", + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/content/metrics.yaml#L355", + "telemetry_mirror": "SecurityUiTlserror_Load_Abouttlserror", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "security_unexpected_load": { + "bugs": [ + "https://bugzil.la/1644671" + ], + "data_reviews": [ + "https://bugzil.la/1644671" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "Long term want to block all loads from the system principal that cause us to parse non-trivial data. We don't look to break existing functionality and will allow exceptions, for this we are collecting information about unexpected requests triggered by the system principal Our measurement *excludes* acceptable requests. Those are: - annotated using the 'AllowedDeprecatedSystemRequests' loadinfo flag - using a nsContentPolicyType of FETCH, XMLHTTPREQUEST, WEBSOCKET, SAVEAS_DOWNLOAD or IMAGE - with a requested URI object has the flag URI_IS_UI_RESOURCE - if the URL scheme is 'view-source' - if the URL scheme is 'file' and the Content-Type is STYLESHEET or OTHER - if the scheme is 'jar', 'about' or 'moz-extension' This event was generated to correspond to the Legacy Telemetry event security.unexpectedload#systemprincipal.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "contenttype": { + "description": "Information about the content-type we expect to receive\n", + "type": "string" + }, + "filedetails": { + "description": "Information about the file that triggered the load\n", + "type": "string" + }, + "redirects": { + "description": "Comma-separated string listing schemes for URLs that we redirected from\n", + "type": "string" + }, + "remotetype": { + "description": "Information about the remoteType in which we triggered the load\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter. The filename's type, see `nsContentSecurityUtils::FilenameToFilenameType(...)`.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Security" + ] + }, + "no_lint": [], + "notification_emails": [ + "fbraun@mozilla.com", + "ckerschb@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/security/metrics.yaml#L155", + "telemetry_mirror": "Security_Unexpectedload_Systemprincipal", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "server_knobs_validation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811561" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1811561#c3", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1815815" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2023-02-14 17:54:43", + "last": "2023-03-23 17:05:27" + }, + "description": "This is a temporary event intented to be used to validate the Glean\nServer Knobs capabilities. See Bug 1811561 for more information.\n", + "disabled": true, + "expires": 114, + "extra_keys": {}, + "gecko_datapoint": "", + "git-commits": { + "first": "8f4fa47675547eddc3dd635b3dab601ed5a4c702", + "last": "6fc2f6d5335fb6f70f780b5fea5ed77b0719c3b5" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Telemetry" + ] + }, + "no_lint": [], + "notification_emails": [ + "tlong@mozilla.com", + "glean-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events", + "newtab" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/6fc2f6d5335fb6f70f780b5fea5ed77b0719c3b5/toolkit/components/glean/metrics.yaml#L140", + "type": "event", + "version": 0, + "repos": [ + "gecko", + "firefox-android-release", + "firefox-android-beta", + "fenix", + "fenix-nightly", + "firefox-android-nightly", + "firefox-ios-release", + "firefox-ios-beta", + "firefox-ios-dev" + ] + }, + "slow_script_warning_shown_browser": { + "bugs": [ + "https://bugzil.la/1652613", + "https://bugzil.la/1667245", + "https://bugzil.la/1672572" + ], + "data_reviews": [ + "https://bugzil.la/1652613", + "https://bugzil.la/1667245", + "https://bugzil.la/1672572" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a slow script hang is resolved. This event was generated to correspond to the Legacy Telemetry event slow_script_warning.shown#browser.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "hang_duration": { + "description": "How long we believe the hang continued (ms).\n", + "type": "string" + }, + "uri_type": { + "description": "The kind of script URL that hung.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [], + "notification_emails": [ + "dothayer@mozilla.com", + "esmyth@mozilla.com", + "gkruitbosch@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L883", + "telemetry_mirror": "Slow_script_warning_Shown_Browser", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "slow_script_warning_shown_content": { + "bugs": [ + "https://bugzil.la/1652613", + "https://bugzil.la/1667245", + "https://bugzil.la/1672572" + ], + "data_reviews": [ + "https://bugzil.la/1652613", + "https://bugzil.la/1667245", + "https://bugzil.la/1672572" + ], + "dates": { + "first": "2024-09-21 00:21:42", + "last": "2025-02-04 14:27:22" + }, + "description": "Recorded when a slow script hang is resolved. This event was generated to correspond to the Legacy Telemetry event slow_script_warning.shown#content.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "end_reason": { + "description": "Why the warning was hidden (user action, the process becoming responsive again, the browser quitting, etc.)\n", + "type": "string" + }, + "hang_duration": { + "description": "How long we believe the hang continued (ms).\n", + "type": "string" + }, + "n_tab_deselect": { + "description": "How many times the user switched away from a tab affected by this hang.\n", + "type": "quantity" + }, + "uptime": { + "description": "How long the notification was up (ms).\n", + "type": "string" + }, + "uri_type": { + "description": "The kind of script URL that hung.\n", + "type": "string" + }, + "wait_count": { + "description": "How many times the user elected to wait.\n", + "type": "quantity" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "d1e3c69b58365af136140635746e93c36fa5433a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPConnect" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "dothayer@mozilla.com", + "esmyth@mozilla.com", + "gkruitbosch@mozilla.com", + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/js/xpconnect/metrics.yaml#L914", + "telemetry_mirror": "Slow_script_warning_Shown_Content", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_chunk_recvd": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: Recvd Chunk Size (rounded to KB)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_CHUNK_RECVD.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1747", + "telemetry_mirror": "SPDY_CHUNK_RECVD", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_continued_headers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1324855" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1324855" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Size of continued H2 headers in bytes.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_CONTINUED_HEADERS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1934", + "telemetry_mirror": "SPDY_CONTINUED_HEADERS", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_goaway_local": { + "bucket_count": 33, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "H2: goaway reason client sent from rfc 7540. 31 is none sent.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SPDY_GOAWAY_LOCAL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 32, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1894", + "telemetry_mirror": "SPDY_GOAWAY_LOCAL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_goaway_peer": { + "bucket_count": 33, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "H2: goaway reason from peer from rfc 7540. 31 is none received.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SPDY_GOAWAY_PEER.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 32, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1914", + "telemetry_mirror": "SPDY_GOAWAY_PEER", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_kbread_per_conn": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1520260" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1520260" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: KB read per connection\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_KBREAD_PER_CONN2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1840", + "telemetry_mirror": "SPDY_KBREAD_PER_CONN2", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_parallel_streams": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: Streams concurrent active per connection\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_PARALLEL_STREAMS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1684", + "telemetry_mirror": "SPDY_PARALLEL_STREAMS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_request_per_conn": { + "bucket_count": 50, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1505500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1642559" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1505500", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1642559" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: Streams created per connection\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_REQUEST_PER_CONN_3.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 1000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1704", + "telemetry_mirror": "SPDY_REQUEST_PER_CONN_3", + "type": "custom_distribution", + "unit": "streams", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_server_initiated_streams": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: Streams received per connection\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_SERVER_INITIATED_STREAMS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 100000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1727", + "telemetry_mirror": "SPDY_SERVER_INITIATED_STREAMS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_settings_iw": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "H2: Settings Initial Window (rounded to KB)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_SETTINGS_IW.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "kilobyte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1877", + "telemetry_mirror": "SPDY_SETTINGS_IW", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_settings_max_streams": { + "bucket_count": 100, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "H2: Settings Max Streams parameter\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_SETTINGS_MAX_STREAMS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 5000, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1857", + "telemetry_mirror": "SPDY_SETTINGS_MAX_STREAMS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_syn_ratio": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: SYN Frame Header Ratio (lower better)\nThis metric was generated to correspond to the Legacy Telemetry linear histogram SPDY_SYN_RATIO.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 99, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1781", + "telemetry_mirror": "SPDY_SYN_RATIO", + "type": "custom_distribution", + "unit": "percent", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_syn_reply_ratio": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: SYN Reply Header Ratio (lower better)\nThis metric was generated to correspond to the Legacy Telemetry linear histogram SPDY_SYN_REPLY_RATIO.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "range_max": 99, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1819", + "telemetry_mirror": "SPDY_SYN_REPLY_RATIO", + "type": "custom_distribution", + "unit": "percent", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_syn_reply_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: SYN Reply Header Size\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_SYN_REPLY_SIZE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1802", + "telemetry_mirror": "SPDY_SYN_REPLY_SIZE", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "spdy_syn_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SPDY: SYN Frame Header Size\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SPDY_SYN_SIZE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Networking: HTTP" + ] + }, + "no_lint": [], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/protocol/http/metrics.yaml#L1764", + "telemetry_mirror": "SPDY_SYN_SIZE", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_auth_algorithm_full": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL Authentication Algorithm (null=0, rsa(KEA)=1, ecdsa=4, rsa(sign)=7) in full handshake\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_AUTH_ALGORITHM_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1220", + "telemetry_mirror": "SSL_AUTH_ALGORITHM_FULL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_auth_ecdsa_curve_full": { + "bucket_count": 37, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ECDSA signature curve for TLS_*_ECDSA_* in full handshake (23=P-256, 24=P-384, 25=P-521)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_AUTH_ECDSA_CURVE_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 36, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1261", + "telemetry_mirror": "SSL_AUTH_ECDSA_CURVE_FULL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_auth_rsa_key_size_full": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "RSA signature key size for TLS_*_RSA_* in full handshake\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_AUTH_RSA_KEY_SIZE_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 24, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1241", + "telemetry_mirror": "SSL_AUTH_RSA_KEY_SIZE_FULL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_bytes_before_cert_callback": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "plaintext bytes read before a server certificate authenticated\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_BYTES_BEFORE_CERT_CALLBACK.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "memory_unit": "byte", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L871", + "telemetry_mirror": "SSL_BYTES_BEFORE_CERT_CALLBACK", + "type": "memory_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_cert_error_overrides": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Was a certificate error overridden on this handshake? What was it? (0=unknown error (indicating bug), 1=no, >1=a specific error)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_CERT_ERROR_OVERRIDES.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 24, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1324", + "telemetry_mirror": "SSL_CERT_ERROR_OVERRIDES", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_cert_verification_errors": { + "bucket_count": 101, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1503572" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1503572" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "If certificate verification failed in a TLS handshake, what was the error? (see MapCertErrorToProbeValue in security/manager/ssl/SSLServerCertVerification.cpp and the values in security/pkix/include/pkix/Result.h)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_CERT_VERIFICATION_ERRORS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jhofmann@mozilla.com", + "rtestard@mozilla.com", + "seceng@mozilla.org" + ], + "range_max": 100, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1345", + "telemetry_mirror": "SSL_CERT_VERIFICATION_ERRORS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_ct_policy_non_compliant_connections_by_ca": { + "bucket_count": 257, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1320567", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909978" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1320567", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1909978" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Number of successfully established TLS connections NOT compliant with the Certificate Transparency Policy, by CA. See https://searchfox.org/mozilla-central/source/security/manager/ssl/RootHashes.inc for names of CAs. Bucket zero holds CAs not present in the list.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_CT_POLICY_NON_COMPLIANT_CONNECTIONS_BY_CA_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dkeeler@mozilla.com" + ], + "range_max": 256, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1370", + "telemetry_mirror": "SSL_CT_POLICY_NON_COMPLIANT_CONNECTIONS_BY_CA_2", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_kea_dhe_key_size_full": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "DHE KEA (TLS_DHE_*) key size in full handshake\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_KEA_DHE_KEY_SIZE_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 24, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1179", + "telemetry_mirror": "SSL_KEA_DHE_KEY_SIZE_FULL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_kea_ecdhe_curve_full": { + "bucket_count": 37, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ECDHE KEA (TLS_ECDHE_*) curve (23=P-256, 24=P-384, 25=P-521, 29=Curve25519) in full handshake\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_KEA_ECDHE_CURVE_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 36, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1199", + "telemetry_mirror": "SSL_KEA_ECDHE_CURVE_FULL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_kea_rsa_key_size_full": { + "bucket_count": 25, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "RSA KEA (TLS_RSA_*) key size in full handshake\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_KEA_RSA_KEY_SIZE_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 24, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1159", + "telemetry_mirror": "SSL_KEA_RSA_KEY_SIZE_FULL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_key_exchange_algorithm_full": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL Handshake Key Exchange Algorithm for full handshake (null=0, rsa=1, dh=2, fortezza=3, ecdh=4)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_KEY_EXCHANGE_ALGORITHM_FULL.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L928", + "telemetry_mirror": "SSL_KEY_EXCHANGE_ALGORITHM_FULL", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_key_exchange_algorithm_resumed": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL Handshake Key Exchange Algorithm for resumed handshake (null=0, rsa=1, dh=2, fortezza=3, ecdh=4)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_KEY_EXCHANGE_ALGORITHM_RESUMED.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L949", + "telemetry_mirror": "SSL_KEY_EXCHANGE_ALGORITHM_RESUMED", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_npn_type": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "NPN Results (0=none, 1=negotiated, 2=no-overlap, 3=selected(alpn))\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_NPN_TYPE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L888", + "telemetry_mirror": "SSL_NPN_TYPE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_ocsp_stapling": { + "bucket_count": 9, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Status of OCSP stapling on this handshake (1=present, good; 2=none; 3=present, expired; 4=present, other error)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_OCSP_STAPLING.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 8, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1303", + "telemetry_mirror": "SSL_OCSP_STAPLING", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_permanent_cert_error_overrides": { + "bucket_count": 10, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "How many permanent certificate overrides a user has stored.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_PERMANENT_CERT_ERROR_OVERRIDES.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 1024, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1391", + "telemetry_mirror": "SSL_PERMANENT_CERT_ERROR_OVERRIDES", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_reasons_for_not_false_starting": { + "bucket_count": 513, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Bitmask of reasons we did not false start when libssl would have let us (see key in nsNSSCallbacks.cpp)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_REASONS_FOR_NOT_FALSE_STARTING.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 512, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1282", + "telemetry_mirror": "SSL_REASONS_FOR_NOT_FALSE_STARTING", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_resumed_session": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "complete TLS connect that used TLS Session Resumption (collected at same time as SSL_TIME_UNTIL_HANDSHAKE_FINISHED)\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram SSL_RESUMED_SESSION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L908", + "telemetry_mirror": "h#SSL_RESUMED_SESSION", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_scts_origin": { + "bucket_count": 11, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1293231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1293231" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Origin of Signed Certificate Timestamps received (1=Embedded, 2=TLS handshake extension, 3=Stapled OCSP response)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_SCTS_ORIGIN.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 10, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1411", + "telemetry_mirror": "SSL_SCTS_ORIGIN", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_scts_per_connection": { + "bucket_count": 11, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1293231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1293231" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Histogram of Signed Certificate Timestamps per SSL connection, from all sources (embedded / OCSP Stapling / TLS handshake). Bucket 0 counts the cases when no SCTs were received, or none were extracted due to parsing errors.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_SCTS_PER_CONNECTION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 10, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1432", + "telemetry_mirror": "SSL_SCTS_PER_CONNECTION", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_scts_verification_status": { + "bucket_count": 11, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1293231" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1293231" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Verification status of Signed Certificate Timestamps received (0=Decoding error, 1=Valid SCT, 2=SCT from unknown log, 3=Invalid SCT signature, 4=SCT timestamp is in the future, 5=Valid SCT from a disqualified log)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_SCTS_VERIFICATION_STATUS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 10, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1455", + "telemetry_mirror": "SSL_SCTS_VERIFICATION_STATUS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_time_until_handshake_finished_keyed_by_ka": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513839" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1513839" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ms of SSL wait time for full handshake including TCP and proxy tunneling, keyed by the key exchange algorithm used\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_TIME_UNTIL_HANDSHAKE_FINISHED_KEYED_BY_KA.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L851", + "telemetry_mirror": "SSL_TIME_UNTIL_HANDSHAKE_FINISHED_KEYED_BY_KA", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_time_until_ready": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ms of SSL wait time including TCP and proxy tunneling\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_TIME_UNTIL_READY.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L762", + "telemetry_mirror": "SSL_TIME_UNTIL_READY", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_time_until_ready_conservative": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ms of SSL wait time including TCP and proxy tunneling for conservative-mode connections\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_TIME_UNTIL_READY_CONSERVATIVE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L797", + "telemetry_mirror": "SSL_TIME_UNTIL_READY_CONSERVATIVE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_time_until_ready_ech": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ms of SSL wait time including TCP and proxy tunneling for connections using ECH 'Real'\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_TIME_UNTIL_READY_ECH.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L815", + "telemetry_mirror": "SSL_TIME_UNTIL_READY_ECH", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_time_until_ready_ech_grease": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ms of SSL wait time including TCP and proxy tunneling for connections using ECH GREASE\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_TIME_UNTIL_READY_ECH_GREASE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L833", + "telemetry_mirror": "SSL_TIME_UNTIL_READY_ECH_GREASE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_time_until_ready_first_try": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "ms of SSL wait time including TCP and proxy tunneling for first-try connections\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram SSL_TIME_UNTIL_READY_FIRST_TRY.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L779", + "telemetry_mirror": "SSL_TIME_UNTIL_READY_FIRST_TRY", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls10_intolerance_reason_post": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.0 intolerance, after considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS10_INTOLERANCE_REASON_POST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1117", + "telemetry_mirror": "SSL_TLS10_INTOLERANCE_REASON_POST", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls10_intolerance_reason_pre": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.0 intolerance, before considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS10_INTOLERANCE_REASON_PRE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1096", + "telemetry_mirror": "SSL_TLS10_INTOLERANCE_REASON_PRE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls11_intolerance_reason_post": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.1 intolerance, after considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS11_INTOLERANCE_REASON_POST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1075", + "telemetry_mirror": "SSL_TLS11_INTOLERANCE_REASON_POST", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls11_intolerance_reason_pre": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.1 intolerance, before considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS11_INTOLERANCE_REASON_PRE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1054", + "telemetry_mirror": "SSL_TLS11_INTOLERANCE_REASON_PRE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls12_intolerance_reason_post": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.2 intolerance, after considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS12_INTOLERANCE_REASON_POST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1033", + "telemetry_mirror": "SSL_TLS12_INTOLERANCE_REASON_POST", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls12_intolerance_reason_pre": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.2 intolerance, before considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS12_INTOLERANCE_REASON_PRE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1012", + "telemetry_mirror": "SSL_TLS12_INTOLERANCE_REASON_PRE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls13_intolerance_reason_post": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1250568" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1250568" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.3 intolerance, after considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS13_INTOLERANCE_REASON_POST.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L991", + "telemetry_mirror": "SSL_TLS13_INTOLERANCE_REASON_POST", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_tls13_intolerance_reason_pre": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1250568" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1250568" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Potential TLS 1.3 intolerance, before considering historical info (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_TLS13_INTOLERANCE_REASON_PRE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L970", + "telemetry_mirror": "SSL_TLS13_INTOLERANCE_REASON_PRE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_version_fallback_inappropriate": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "TLS/SSL version intolerance was falsely detected, server rejected handshake (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_VERSION_FALLBACK_INAPPROPRIATE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L1138", + "telemetry_mirror": "SSL_VERSION_FALLBACK_INAPPROPRIATE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_completed": { + "bucket_count": 9, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Type of handshake (1=resumption, 2=false started, 3=chose not to false start, 4=not allowed to false start)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_TYPE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 8, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L740", + "telemetry_mirror": "SSL_HANDSHAKE_TYPE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_privacy": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1788290" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1788290" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "0th bit - TLS13 used? 1th bit - Revocation Privacy, 2nd bit - DNS Privacy, 3rd bit - ECH Privacy\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_PRIVACY.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L607", + "telemetry_mirror": "SSL_HANDSHAKE_PRIVACY", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_result": { + "bucket_count": 673, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1331280", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1331280", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL handshake result, 0=success, 1-255=NSS error offset, 256-511=SEC error offset + 256, 512-639=NSPR error offset + 512, 640-670=PKIX error, 671=unknown err\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_RESULT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 672, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L628", + "telemetry_mirror": "SSL_HANDSHAKE_RESULT", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_result_conservative": { + "bucket_count": 673, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1780014" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1780014" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL handshake result for conservative mode connections, 0=success, 1-255=NSS error offset, 256-511=SEC error offset + 256, 512-639=NSPR error offset + 512, 640-670=PKIX error, 671=unknown err\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_RESULT_CONSERVATIVE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 672, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L674", + "telemetry_mirror": "SSL_HANDSHAKE_RESULT_CONSERVATIVE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_result_ech": { + "bucket_count": 673, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL handshake result for connections which used ECH 'Real', 0=success, 1-255=NSS error offset, 256-511=SEC error offset + 256, 512-639=NSPR error offset + 512, 640-670=PKIX error, 671=unknown err\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_RESULT_ECH.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 672, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L696", + "telemetry_mirror": "SSL_HANDSHAKE_RESULT_ECH", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_result_ech_grease": { + "bucket_count": 673, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1771479" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL handshake result for connections which used ECH GREASE, 0=success, 1-255=NSS error offset, 256-511=SEC error offset + 256, 512-639=NSPR error offset + 512, 640-670=PKIX error, 671=unknown err\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_RESULT_ECH_GREASE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 672, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L718", + "telemetry_mirror": "SSL_HANDSHAKE_RESULT_ECH_GREASE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_result_first_try": { + "bucket_count": 673, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1780014" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1780014" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "SSL handshake result for first-try connections, 0=success, 1-255=NSS error offset, 256-511=SEC error offset + 256, 512-639=NSPR error offset + 512, 640-670=PKIX error, 671=unknown err\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_RESULT_FIRST_TRY.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 672, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L652", + "telemetry_mirror": "SSL_HANDSHAKE_RESULT_FIRST_TRY", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "ssl_handshake_version": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1250568", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1250568", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1340021" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Negotiated SSL Version (1=tls1, 2=tls1.1, 3=tls1.2, 4=tls1.3)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram SSL_HANDSHAKE_VERSION.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L585", + "telemetry_mirror": "SSL_HANDSHAKE_VERSION", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "startup_profile_count": { + "bugs": [ + "https://bugzil.la/1878339", + "https://bugzil.la/1916867" + ], + "data_reviews": [ + "https://bugzil.la/1878339", + "https://bugzil.la/1916867" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "This records the number of known profiles after startup completes. This includes any profiles that were created during startup. This metric was generated to correspond to the Legacy Telemetry scalar startup.profile_count.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "dtownsend@mozilla.com", + "kbryant@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/profile/metrics.yaml#L95", + "telemetry_mirror": "STARTUP_PROFILE_COUNT", + "type": "quantity", + "unit": "profiles", + "version": 0, + "repos": [ + "gecko" + ] + }, + "startup_profile_database_version": { + "bugs": [ + "https://bugzil.la/1878339", + "https://bugzil.la/1916867" + ], + "data_reviews": [ + "https://bugzil.la/1878339", + "https://bugzil.la/1916867" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "The version of the profiles.ini database loaded during startup. A value of \"0\" is used to indicate that no file was present during startup. This metric was generated to correspond to the Legacy Telemetry scalar startup.profile_database_version.\n", + "disabled": false, + "expires": 140, + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "dtownsend@mozilla.com", + "kbryant@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/profile/metrics.yaml#L75", + "telemetry_mirror": "STARTUP_PROFILE_DATABASE_VERSION", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "startup_profile_selection_reason": { + "bugs": [ + "https://bugzil.la/1522934", + "https://bugzil.la/1570652", + "https://bugzil.la/1623406", + "https://bugzil.la/1749887", + "https://bugzil.la/1893667" + ], + "data_reviews": [ + "https://bugzil.la/1522934", + "https://bugzil.la/1570652", + "https://bugzil.la/1623406", + "https://bugzil.la/1749887", + "https://bugzil.la/1893667" + ], + "dates": { + "first": "2024-10-22 00:23:32", + "last": "2025-02-04 14:27:22" + }, + "description": "How the profile was selected during startup. One of the following reasons:\n unknown:\n Generally should not happen, set as a default in case no other reason\n occured.\n profile-manager:\n The profile was selected by the profile manager.\n profile-selector:\n The profile was selected by the profile selector window.\n profile-reset:\n The profile was selected for reset, normally this would mean a restart.\n restart:\n The user restarted the application, the same profile as previous will\n be used.\n argument-profile:\n The profile was selected by the --profile command line argument.\n argument-p:\n The profile was selected by the -p command line argument.\n firstrun-claimed-default:\n A first run of a dedicated profiles build chose the old default\n profile to be the default for this install.\n firstrun-skipped-default:\n A first run of a dedicated profiles build skipped over the old default\n profile and created a new profile.\n restart-claimed-default:\n A first run of a dedicated profiles build after a restart chose the\n old default profile to be the default for this install.\n restart-skipped-default:\n A first run of a dedicated profiles build after a restart skipped over\n the old default profile and created a new profile.\n firstrun-created-default:\n A first run of the application created a new profile to use.\n default:\n The default profile was selected as normal.\nThis metric was generated to correspond to the Legacy Telemetry scalar startup.profile_selection_reason.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee955d557ae8db4939b2bb64c86b7cba6691666d", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "dtownsend@mozilla.com", + "rtestard@mozilla.com", + "gkaberere@mozilla.com", + "jhollek@mozilla.com", + "echo@mozilla.com", + "shong@mozilla.com", + "jhirsch@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/profile/metrics.yaml#L14", + "telemetry_mirror": "STARTUP_PROFILE_SELECTION_REASON", + "type": "string", + "version": 0, + "repos": [ + "gecko" + ] + }, + "sts_poll_and_event_the_last_cycle": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The duraion of the socketThread cycle during shutdown, including polls and pending events. (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram STS_POLL_AND_EVENT_THE_LAST_CYCLE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2544", + "telemetry_mirror": "STS_POLL_AND_EVENT_THE_LAST_CYCLE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "sts_poll_and_events_cycle": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The duraion of a socketThread cycle, including polls and pending events. (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram STS_POLL_AND_EVENTS_CYCLE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2505", + "telemetry_mirror": "STS_POLL_AND_EVENTS_CYCLE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "sts_poll_block_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent blocked on poll (ms).\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram STS_POLL_BLOCK_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2564", + "telemetry_mirror": "STS_POLL_BLOCK_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "sts_poll_cycle": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-28 00:07:24", + "last": "2025-02-04 14:27:22" + }, + "description": "The duration of poll. (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram STS_POLL_CYCLE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "42aed47a7de37636643cc5c4f2eefdf274e39ae5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Networking" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "necko@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/netwerk/metrics.yaml#L2525", + "telemetry_mirror": "STS_POLL_CYCLE", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "sync_merge_dialog_clicked": { + "bugs": [ + "https://bugzilla.mozilla.org/1929705/" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1929705/" + ], + "dates": { + "first": "2024-12-14 00:13:38", + "last": "2025-02-04 14:27:22" + }, + "description": "Event to record that showed the user a warning for potentially merging data from multiple accounts and recorded\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "option_clicked": { + "description": "Which option the user actually clicked. Which can be \"cancel\", \"continue\", \"create-profile\" or \"switch-profile\"\n", + "type": "string" + }, + "variant_shown": { + "description": "Which variant we showed the user. Which can be \"sync-warning\", \"sync-warning-allow-merge\", \"merge-warning\", \"merge-warning-allow-merge\", \"old-merge\"\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "a46036fa11f7edcb1335681ecee65a8f2f6eb711", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [], + "notification_emails": [ + "sync-team@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L644", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "synced_tabs_click_fxa_app_menu": { + "bugs": [ + "https://bugzil.la/1756252" + ], + "data_reviews": [ + "https://bugzil.la/1756252" + ], + "dates": { + "first": "2024-09-26 00:11:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Record how users access and use synced tabs component This event was generated to correspond to the Legacy Telemetry event synced_tabs.click#fxa_app_menu.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "filter": { + "description": "was there a filter enabled\n", + "type": "string" + }, + "tab_pos": { + "description": "position of the tab clicked\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "bb60c5a48b2111343b46edcb0234512fba23ff18", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "sync-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L40", + "telemetry_mirror": "Synced_tabs_Click_FxaAppMenu", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "synced_tabs_click_fxa_avatar_menu": { + "bugs": [ + "https://bugzil.la/1756252" + ], + "data_reviews": [ + "https://bugzil.la/1756252" + ], + "dates": { + "first": "2024-09-26 00:11:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Record how users access and use synced tabs component This event was generated to correspond to the Legacy Telemetry event synced_tabs.click#fxa_avatar_menu.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "filter": { + "description": "was there a filter enabled\n", + "type": "string" + }, + "tab_pos": { + "description": "position of the tab clicked\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "bb60c5a48b2111343b46edcb0234512fba23ff18", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "sync-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L14", + "telemetry_mirror": "Synced_tabs_Click_FxaAvatarMenu", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "synced_tabs_click_synced_tabs_sidebar": { + "bugs": [ + "https://bugzil.la/1756252" + ], + "data_reviews": [ + "https://bugzil.la/1756252" + ], + "dates": { + "first": "2024-09-26 00:11:20", + "last": "2025-02-04 14:27:22" + }, + "description": "Record how users access and use synced tabs component This event was generated to correspond to the Legacy Telemetry event synced_tabs.click#synced_tabs_sidebar.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "filter": { + "description": "was there a filter enabled\n", + "type": "string" + }, + "tab_pos": { + "description": "position of the tab clicked\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "bb60c5a48b2111343b46edcb0234512fba23ff18", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Sync" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "sync-dev@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/sync/modules/metrics.yaml#L55", + "telemetry_mirror": "Synced_tabs_Click_SyncedTabsSidebar", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "thumbnails_capture_canvas_draw_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "BACKGROUND THUMBNAILS: Time it took to draw the capture's window to canvas (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FX_THUMBNAILS_BG_CAPTURE_CANVAS_DRAW_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: New Tab Page" + ] + }, + "no_lint": [], + "notification_emails": [ + "sdowne@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/thumbnails/metrics.yaml#L126", + "telemetry_mirror": "FX_THUMBNAILS_BG_CAPTURE_CANVAS_DRAW_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "thumbnails_capture_done_reason_2": { + "bucket_count": 11, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "BACKGROUND THUMBNAILS: Reason the capture completed (see TEL_CAPTURE_DONE_* constants in BackgroundPageThumbs.sys.mjs)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram FX_THUMBNAILS_BG_CAPTURE_DONE_REASON_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: New Tab Page" + ] + }, + "no_lint": [], + "notification_emails": [ + "sdowne@mozilla.com" + ], + "range_max": 10, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/thumbnails/metrics.yaml#L88", + "telemetry_mirror": "FX_THUMBNAILS_BG_CAPTURE_DONE_REASON_2", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "thumbnails_capture_page_load_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "BACKGROUND THUMBNAILS: Time the capture's page load took (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FX_THUMBNAILS_BG_CAPTURE_PAGE_LOAD_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: New Tab Page" + ] + }, + "no_lint": [], + "notification_emails": [ + "sdowne@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/thumbnails/metrics.yaml#L109", + "telemetry_mirror": "FX_THUMBNAILS_BG_CAPTURE_PAGE_LOAD_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "thumbnails_capture_queue_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "BACKGROUND THUMBNAILS: Time the capture request spent in the queue before being serviced (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FX_THUMBNAILS_BG_CAPTURE_QUEUE_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: New Tab Page" + ] + }, + "no_lint": [], + "notification_emails": [ + "sdowne@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/thumbnails/metrics.yaml#L70", + "telemetry_mirror": "FX_THUMBNAILS_BG_CAPTURE_QUEUE_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "thumbnails_capture_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "THUMBNAILS: Time (ms) it takes to capture a thumbnail\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FX_THUMBNAILS_CAPTURE_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: New Tab Page" + ] + }, + "no_lint": [], + "notification_emails": [ + "sdowne@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/thumbnails/metrics.yaml#L14", + "telemetry_mirror": "FX_THUMBNAILS_CAPTURE_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "thumbnails_queue_size_on_capture": { + "bucket_count": 15, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "BACKGROUND THUMBNAILS: Size of capture queue when a capture request is received\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FX_THUMBNAILS_BG_QUEUE_SIZE_ON_CAPTURE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: New Tab Page" + ] + }, + "no_lint": [], + "notification_emails": [ + "sdowne@mozilla.com" + ], + "range_max": 100, + "range_min": 1, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/thumbnails/metrics.yaml#L48", + "telemetry_mirror": "FX_THUMBNAILS_BG_QUEUE_SIZE_ON_CAPTURE", + "type": "custom_distribution", + "unit": "queue length", + "version": 0, + "repos": [ + "gecko" + ] + }, + "thumbnails_store_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "THUMBNAILS: Time (ms) it takes to store a thumbnail in the cache\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram FX_THUMBNAILS_STORE_TIME_MS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: New Tab Page" + ] + }, + "no_lint": [], + "notification_emails": [ + "sdowne@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/thumbnails/metrics.yaml#L31", + "telemetry_mirror": "FX_THUMBNAILS_STORE_TIME_MS", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "timer_thread_timers_fired_per_wakeup": { + "bucket_count": 20, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814718" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814718" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-02-10 20:30:04", + "last": "2025-02-04 14:27:22" + }, + "description": "How many timers were processed in a single wake-up of the Timer Thread.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ee5fcfbebef8046951c8b40e3e9dc318e341069a", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "exponential", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: XPCOM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jlink@mozilla.com" + ], + "range_max": 80, + "range_min": 0, + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/xpcom/metrics.yaml#L14", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "timestamps_first_paint": { + "bugs": [ + "https://bugzil.la/1386186" + ], + "data_reviews": [ + "https://bugzil.la/1386186" + ], + "dates": { + "first": "2024-11-18 00:19:53", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the timestamp of the first content window paint, in milliseconds since process start. This metric was generated to correspond to the Legacy Telemetry scalar timestamps.first_paint.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "873da759f9f338eb95f6f3be66ce2146d5753e31", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/startup/metrics.yaml#L14", + "telemetry_mirror": "TIMESTAMPS_FIRST_PAINT", + "type": "quantity", + "unit": "ms", + "version": 0, + "repos": [ + "gecko" + ] + }, + "timestamps_first_paint_two": { + "bugs": [ + "https://bugzil.la/1556568" + ], + "data_reviews": [ + "https://bugzil.la/1556568" + ], + "dates": { + "first": "2024-11-18 00:19:53", + "last": "2025-02-04 14:27:22" + }, + "description": "Record the timestamp of the first main window paint, in milliseconds since process start. Intended to replace first_paint since first_paint is broken. This metric was generated to correspond to the Legacy Telemetry scalar timestamps.first_paint_two.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "873da759f9f338eb95f6f3be66ce2146d5753e31", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Startup and Profile System" + ] + }, + "no_lint": [], + "notification_emails": [ + "perf-telemetry-alerts@mozilla.com", + "gfx-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/startup/metrics.yaml#L31", + "telemetry_mirror": "TIMESTAMPS_FIRST_PAINT_TWO", + "type": "quantity", + "unit": "ms", + "version": 0, + "repos": [ + "gecko" + ] + }, + "tls_certificate_verifications": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876435" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1876435" + ], + "dates": { + "first": "2024-01-30 00:15:10", + "last": "2025-02-04 14:27:22" + }, + "description": "The total number of successful TLS server certificate verifications.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d863a61ba584b4cdc8e9b48f9e964a4fd3234935", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "dkeeler@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L73", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "tls_cipher_suite": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1862062" + ], + "dates": { + "first": "2025-02-04 00:20:41", + "last": "2025-02-04 14:27:22" + }, + "description": "Negotiated cipher suite in TLS handshake (see key in AccumulateCipherSuite in nsNSSCallbacks.cpp)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram TLS_CIPHER_SUITE.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "74c9d88a99fc46a395ba817e8639f55636a264a2", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L117", + "telemetry_mirror": "TLS_CIPHER_SUITE", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "tls_xyber_intolerance_reason": { + "bugs": [ + "https://bugzilla.mozilla.org/1874963", + "https://bugzilla.mozilla.org/1933879" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/1874963" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2025-01-07 16:50:36", + "last": "2025-02-04 14:27:22" + }, + "description": "The error that was returned from a failed TLS 1.3 handshake in which the client sent a mlkem768x25519 key share (see tlsIntoleranceTelemetryBucket() in nsNSSIOLayer.cpp).\n", + "disabled": false, + "expires": 143, + "gecko_datapoint": "", + "git-commits": { + "first": "7d1b5c88343879056168aa710a9ee743392604c0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "PR_CONNECT_RESET_ERROR", + "PR_END_OF_FILE_ERROR", + "SSL_ERROR_BAD_HANDSHAKE_HASH_VALUE", + "SSL_ERROR_BAD_MAC_ALERT", + "SSL_ERROR_BAD_MAC_READ", + "SSL_ERROR_DECODE_ERROR_ALERT", + "SSL_ERROR_HANDSHAKE_FAILED", + "SSL_ERROR_HANDSHAKE_FAILURE_ALERT", + "SSL_ERROR_HANDSHAKE_UNEXPECTED_ALERT", + "SSL_ERROR_ILLEGAL_PARAMETER_ALERT", + "SSL_ERROR_INTERNAL_ERROR_ALERT", + "SSL_ERROR_KEY_EXCHANGE_FAILURE", + "SSL_ERROR_NO_CYPHER_OVERLAP", + "SSL_ERROR_PROTOCOL_VERSION_ALERT", + "SSL_ERROR_RX_UNEXPECTED_RECORD_TYPE", + "SSL_ERROR_RX_MALFORMED_HYBRID_KEY_SHARE", + "SSL_ERROR_UNSUPPORTED_VERSION" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: Security: PSM" + ] + }, + "no_lint": [], + "notification_emails": [ + "jschanck@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/security/manager/ssl/metrics.yaml#L84", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_about_translations_page_open": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814195" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1814195" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-11-15 00:21:58", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the about-translations page is opened.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "658c0f52c31bdcf6a76648d40eee21add7689e7e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L922", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_engine_performance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943132" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1943132" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Metrics related to the performance of the TranslationsEngine.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "average_words_per_request": { + "description": "The average count of words that this engine translated per request.", + "type": "quantity" + }, + "average_words_per_second": { + "description": "The average words per second that this engine translated per request.", + "type": "quantity" + }, + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "from_language": { + "description": "The language being translated from.", + "type": "string" + }, + "to_language": { + "description": "The language being translated to.", + "type": "string" + }, + "total_completed_requests": { + "description": "The count of translation requests that were completed by this engine.", + "type": "quantity" + }, + "total_inference_seconds": { + "description": "The total seconds this engine spent in active translation inference.", + "type": "quantity" + }, + "total_translated_words": { + "description": "The total number of words translated by this engine.", + "type": "quantity" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L165", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836436", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841366", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836436#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841366#c11", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-04 14:34:46", + "last": "2025-02-04 14:27:22" + }, + "description": "The specific translations error that caused a full_page translation failure.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "reason": { + "description": "The reason for the error.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "470d60a2136103230baf07f3ad71ade65f651974", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L65", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_error_rate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836436", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836436", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2023-11-16 18:36:34", + "last": "2025-02-04 14:27:22" + }, + "denominator_metric": "translations.requests_count", + "description": "The rate of failed translations requests.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b58777ee2097f4e144865260e6f110bdfa1bb3f9", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L48", + "type": "rate", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_about_translations": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the about-translations menuitem is invoked in the full-page translations panel settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L601", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_always_offer_translations": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1842646", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1842646", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the always-offer-translations menuitem is invoked in the full-page translations panel seeings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "toggled_on": { + "description": "- Whether the setting was toggled on or off.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L493", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_always_translate_language": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the always-translate-language menuitem is invoked in the full-page translations panel settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "language": { + "description": "- The BCP47 language tag.\n", + "type": "string" + }, + "toggled_on": { + "description": "- Whether the setting was toggled on or off for this language.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L515", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_cancel_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the cancel button is invoked in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L403", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_change_from_language": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the from-language selected value is changed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "language": { + "description": "- The BCP47 language tag.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L272", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_change_source_language_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the change-source-language button is invoked in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L421", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_change_to_language": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the to-language selected value is changed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "language": { + "description": "- The BCP47 language tag.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L330", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_close": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when full-page translations panel is closed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L236", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_close_from_language_menu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the from-language dropdown is closed in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L294", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_close_settings_menu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the settings menu is closed in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L385", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_close_to_language_menu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the from-language dropdown is closed in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L349", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_dismiss_error_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the dismiss-error button is invoked in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L439", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_learn_more": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the learn-more link is invoked in the full-page translations panel first interaction.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L619", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_manage_languages": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the manage-languages menuitem is invoked in the full-page translations panel settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L583", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_never_translate_language": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the never-translate-language menuitem is invoked in the full-page translations panel settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "language": { + "description": "- The BCP47 language tag.\n", + "type": "string" + }, + "toggled_on": { + "description": "- Whether the setting was toggled on or off for this language.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L538", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_never_translate_site": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the never-translate-site menuitem is invoked in the full-page translations panel settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "toggled_on": { + "description": "- Whether the setting was toggled on or off for this site.\n", + "type": "boolean" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L561", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_open": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1835502", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841366", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847150", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1835502#c7", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841366#c11", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428#c16", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847150#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the full-page translations panel is opened.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "auto_show": { + "description": "Whether the panel was opened automatically or manually by the user.", + "type": "boolean" + }, + "document_language": { + "description": "The detected BCP-47 language tag of the document.", + "type": "string" + }, + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "opened_from": { + "description": "The method by which the full-page translations panel was opened.", + "type": "string" + }, + "view_name": { + "description": "The type of view shown in the panel.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L202", + "type": "event", + "version": 0, + "repos": [ + "gecko", + "firefox-desktop" + ] + }, + "translations_panel_open_from_language_menu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the from-language dropdown is opened in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L254", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_open_settings_menu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the settings menu is opened in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L367", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_open_to_language_menu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the from-language dropdown is opened in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L312", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_restore_page_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the restore-page button is invoked in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L457", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_panel_translate_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the translate button is invoked in the full-page translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L475", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_request_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900432" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1900432" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-04 14:34:46", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of translation requests, along with their type.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "470d60a2136103230baf07f3ad71ade65f651974", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "full_page", + "select" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L30", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_requests_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836436", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836436", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "technical" + ], + "dates": { + "first": "2024-06-04 14:34:46", + "last": "2025-02-04 14:27:22" + }, + "description": "The count of translation requests.\n", + "disabled": false, + "expires": 139, + "gecko_datapoint": "", + "git-commits": { + "first": "470d60a2136103230baf07f3ad71ade65f651974", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L14", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_restore_page": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the a restore-page event is triggered.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L147", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_about_translations": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the about-translations menuitem is invoked in the select translations panel settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L853", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_cancel_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the cancel button is invoked in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L679", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_change_from_language": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903391" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903391" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-19 00:07:31", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the from-language selected value is changed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "document_language": { + "description": "- The BCP47 language tag.\n", + "type": "string" + }, + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "language": { + "description": "- The BCP47 language tag.\n", + "type": "string" + }, + "previous_language": { + "description": "- The BCP47 language tag of the previously selected language.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "76bf8d142bda6f8a53b2574a9fd89c67c6579efe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L782", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_change_to_language": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903391" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903391" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-19 00:07:31", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the to-language selected value is changed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "language": { + "description": "- The BCP47 language tag.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "76bf8d142bda6f8a53b2574a9fd89c67c6579efe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L804", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_close": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the select translations panel is closed.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L663", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_copy_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the copy button is invoked in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L695", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_done_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the done button is invoked in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L711", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_initialization_failure_message": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the initialization-failure message is shown in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L869", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_open": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903393" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903393" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-19 00:07:31", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the select translations panel is opened.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "document_language": { + "description": "The detected BCP-47 language tag of the document.", + "type": "string" + }, + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "from_language": { + "description": "The language being translated from.", + "type": "string" + }, + "text_source": { + "description": "The source that the text was pulled from, either \"selection\" or \"hyperlink\".", + "type": "string" + }, + "to_language": { + "description": "The language being translated to.", + "type": "string" + }, + "top_preferred_language": { + "description": "The top preferred language for this user.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "76bf8d142bda6f8a53b2574a9fd89c67c6579efe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L638", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_open_settings_menu": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the settings menu is opened in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L821", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_translate_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903392" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1903392" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-19 00:07:31", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the translate button is invoked in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "detected_language": { + "description": "The detected language of the selected text to be translated.", + "type": "string" + }, + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "from_language": { + "description": "The language being translated from.", + "type": "string" + }, + "to_language": { + "description": "The language being translated to.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "76bf8d142bda6f8a53b2574a9fd89c67c6579efe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L727", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_translate_full_page_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the translate-full-page button is invoked in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L750", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_translation_failure_message": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the translation-failure message is shown in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "from_language": { + "description": "The language being translated from.", + "type": "string" + }, + "to_language": { + "description": "The language being translated to.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L885", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_translation_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the translation-settings menuitem is invoked in the select translations panel settings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L837", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_try_again_button": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the try-again button is invoked in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L766", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_select_translations_panel_unsupported_language_message": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-05-24 00:14:55", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when the unsupported-language message is shown in the select translations panel.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "detected_language": { + "description": "The detected language of the selected text to be translated.", + "type": "string" + }, + "document_language": { + "description": "The detected BCP-47 language tag of the document.", + "type": "string" + }, + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "fbe63afa0fa5c7d995faeb66dfef46e1685d397b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L903", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "translations_translation_request": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836381", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841366", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847150", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1836381#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1841366#c11", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845428#c16", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1847150#c4", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1861319#c6", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1870367" + ], + "data_sensitivity": [ + "interaction" + ], + "dates": { + "first": "2024-06-04 14:34:46", + "last": "2025-02-04 14:27:22" + }, + "description": "Triggers when a full-page translation request is sent.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "auto_translate": { + "description": "True if this translation was triggered automatically due to configured always-translate-language settings. False if this translation was triggered manually.\n", + "type": "boolean" + }, + "document_language": { + "description": "The detected BCP-47 language tag of the document.", + "type": "string" + }, + "flow_id": { + "description": "A uuid to relate events associated with the current panel session.", + "type": "string" + }, + "from_language": { + "description": "The language being translated from.", + "type": "string" + }, + "request_target": { + "description": "The target of the translation request, whether it is \"full_page\" or \"select\".\n", + "type": "string" + }, + "source_text_code_units": { + "description": "The length of the source text to be translated in code units.", + "type": "quantity" + }, + "source_text_word_count": { + "description": "The length of the source text to be translated in words.", + "type": "quantity" + }, + "to_language": { + "description": "The language being translated to.", + "type": "string" + }, + "top_preferred_language": { + "description": "The top preferred language for this user.", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "470d60a2136103230baf07f3ad71ade65f651974", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Firefox :: Translation" + ] + }, + "no_lint": [], + "notification_emails": [ + "translations-telemetry-alerts@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/translations/metrics.yaml#L92", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "uptake_remotecontent_result_uptake_normandy": { + "bugs": [ + "https://bugzil.la/1517469", + "https://bugzil.la/1617133" + ], + "data_reviews": [ + "https://bugzil.la/1517469", + "https://bugzil.la/1617133" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Was the remote content successfully pulled? This uptake telemetry allows to monitor the behaviour of our clients when it comes to fetching data from remote servers. This helps defect-detection and allow observation of the proportion of success among clients and sources, the distribution of error causes, and its evolution over time. This event was generated to correspond to the Legacy Telemetry event uptake.remotecontent.result.uptake#normandy.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "age": { + "description": "The age of pulled data in seconds (ie. difference between publication time and fetch time).\n", + "type": "string" + }, + "duration": { + "description": "The duration of the synchronization process in milliseconds.\n", + "type": "string" + }, + "errorName": { + "description": "An optional string with the error name attribute in case of failure.\n", + "type": "string" + }, + "source": { + "description": "A label to distinguish what is being pulled or updated in the component (eg. recipe id, settings collection name, ...).\n", + "type": "string" + }, + "timestamp": { + "description": "The current timestamp, received during synchronization.\n", + "type": "string" + }, + "trigger": { + "description": "A label to distinguish what triggered the polling/fetching of remote content (eg. \"broadcast\", \"timer\", \"forced\", \"manual\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Cloud Services :: Firefox: Common" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "mleplatre@mozilla.com", + "bens-directs@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/common/metrics.yaml#L75", + "telemetry_mirror": "UptakeRemotecontentResult_Uptake_Normandy", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "uptake_remotecontent_result_uptake_remotesettings": { + "bugs": [ + "https://bugzil.la/1517469", + "https://bugzil.la/1617133" + ], + "data_reviews": [ + "https://bugzil.la/1517469", + "https://bugzil.la/1617133" + ], + "dates": { + "first": "2024-09-23 00:22:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Was the remote content successfully pulled? This uptake telemetry allows to monitor the behaviour of our clients when it comes to fetching data from remote servers. This helps defect-detection and allow observation of the proportion of success among clients and sources, the distribution of error causes, and its evolution over time. This event was generated to correspond to the Legacy Telemetry event uptake.remotecontent.result.uptake#remotesettings.\n", + "disabled": false, + "expires": "never", + "extra_keys": { + "age": { + "description": "The age of pulled data in seconds (ie. difference between publication time and fetch time).\n", + "type": "string" + }, + "duration": { + "description": "The duration of the synchronization process in milliseconds.\n", + "type": "string" + }, + "errorName": { + "description": "An optional string with the error name attribute in case of failure.\n", + "type": "string" + }, + "source": { + "description": "A label to distinguish what is being pulled or updated in the component (eg. recipe id, settings collection name, ...).\n", + "type": "string" + }, + "timestamp": { + "description": "The current timestamp, received during synchronization.\n", + "type": "string" + }, + "trigger": { + "description": "A label to distinguish what triggered the polling/fetching of remote content (eg. \"broadcast\", \"timer\", \"forced\", \"manual\")\n", + "type": "string" + }, + "value": { + "description": "The `value` of the event. Mirrors to the Legacy Telemetry event's `value` parameter.\n", + "type": "string" + } + }, + "gecko_datapoint": "", + "git-commits": { + "first": "9f591269f7b343f27e73745c79c4a104179d6986", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Cloud Services :: Firefox: Common" + ] + }, + "no_lint": [ + "COMMON_PREFIX" + ], + "notification_emails": [ + "mleplatre@mozilla.com", + "bens-directs@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "events" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/services/common/metrics.yaml#L14", + "telemetry_mirror": "UptakeRemotecontentResult_Uptake_Remotesettings", + "type": "event", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_async_classifylocal_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1341506", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1341506", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent per AsyncClassifyLocalWithTables (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_ASYNC_CLASSIFYLOCAL_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L92", + "telemetry_mirror": "URLCLASSIFIER_ASYNC_CLASSIFYLOCAL_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_cl_check_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1935420" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent per classifier lookup (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_CL_CHECK_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L54", + "telemetry_mirror": "URLCLASSIFIER_CL_CHECK_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_cl_keyed_update_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1315893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1315893", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent per classifier update (ms), keyed by the name of the provider.\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_CL_KEYED_UPDATE_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L72", + "telemetry_mirror": "URLCLASSIFIER_CL_KEYED_UPDATE_TIME", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_complete_remote_status2": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1150921", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1311926", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1150921", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1311926", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Server HTTP status code from remote SafeBrowsing gethash lookups. (0=1xx, 1=200, 2=2xx, 3=204, 4=3xx, 5=400, 6=4xx, 7=403, 8=404, 9=408, 10=413, 11=5xx, 12=502|504|511, 13=503, 14=505, 15=Other). Keyed by provider\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_COMPLETE_REMOTE_STATUS2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L290", + "telemetry_mirror": "URLCLASSIFIER_COMPLETE_REMOTE_STATUS2", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_complete_server_response_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336903", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336903", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Server response time to getHash request (ms). Keyed by provider\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_COMPLETE_SERVER_RESPONSE_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L341", + "telemetry_mirror": "URLCLASSIFIER_COMPLETE_SERVER_RESPONSE_TIME", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_completion_error": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1276826", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1276826", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "SafeBrowsing v4 hash completion error (0 = success, 1 = parsing failure, 2 = unknown threat type)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_COMPLETION_ERROR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L317", + "telemetry_mirror": "URLCLASSIFIER_COMPLETION_ERROR", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_lookup_time_2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336376", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336376", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent per dbservice lookup (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_LOOKUP_TIME_2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L14", + "telemetry_mirror": "URLCLASSIFIER_LOOKUP_TIME_2", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_shutdown_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1315140", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1315140", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent per dbservice shutdown (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_SHUTDOWN_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L34", + "telemetry_mirror": "URLCLASSIFIER_SHUTDOWN_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_threathit_network_error": { + "bucket_count": 31, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1351147" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1351147" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether or not an error was encountered while sending a Safe Browsing ThreatHit report. (0=sucess, 1=unknown error, 2=already connected, 3=not connected, 4=connection refused,5=net timeout, 6=offline, 7=port access not allowed, 8=net reset, 9=net interrupt, 10=proxy connection refused, 11=partial transfer, 12=inadequate security, 13=unknown host, 14=dns lookup queue full, 15=unknown proxy host)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_THREATHIT_NETWORK_ERROR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "tnguyen@mozilla.com, safebrowsing-telemetry@mozilla.org" + ], + "range_max": 30, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L389", + "telemetry_mirror": "URLCLASSIFIER_THREATHIT_NETWORK_ERROR", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_threathit_remote_status": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1351147" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1351147" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Server HTTP status code from Safe Browsing ThreatHit report. (0=1xx, 1=200, 2=2xx, 3=204, 4=3xx, 5=400, 6=4xx, 7=403, 8=404, 9=408, 10=413, 11=5xx, 12=502|504|511, 13=503, 14=505, 15=Other)\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_THREATHIT_REMOTE_STATUS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "tnguyen@mozilla.com, safebrowsing-telemetry@mozilla.org" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L414", + "telemetry_mirror": "URLCLASSIFIER_THREATHIT_REMOTE_STATUS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_ui_events": { + "bucket_count": 65, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1375277", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636962" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1375277", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1636962" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "URL CLassifier-related (aka Safe Browsing) UI events. See nsIUrlClassifierUITelemetry.idl for the specific values.\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_UI_EVENTS.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "seceng-telemetry@mozilla.com", + "dlee@mozilla.com" + ], + "range_max": 64, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L436", + "telemetry_mirror": "URLCLASSIFIER_UI_EVENTS", + "type": "custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_update_error": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1311910", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1311910", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether or not an error was encountered while processing a Safe Browsing update (0 = success, 1 = unspecified error, 2 = addition of an already existing prefix, 3 = parser got into an infinite loop, 4 = removal index out of bounds, 5 = checksum mismatch, 6 = missing checksum, 7 = update while shutdown, 8 = cannot find table, 9 = build prefix failure, 10 = write disk failure, 11 = protocol parser error). Keyed by provider\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_UPDATE_ERROR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L361", + "telemetry_mirror": "URLCLASSIFIER_UPDATE_ERROR", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_update_remote_network_error": { + "bucket_count": 31, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1332780", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1332780", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Network error from SafeBrowsing database updates. (0=sucess, 1=unknown error, 2=already connected, 3=not connected, 4=connection refused,5=net timeout, 6=offline, 7=port access not allowed, 8=net reset, 9=net interrupt, 10=proxy connection refused,11=partial transfer,12=inadequate security,13=unknown host,14=dns lookup queue full,15=unknown proxy host\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_UPDATE_REMOTE_NETWORK_ERROR.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 30, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L195", + "telemetry_mirror": "URLCLASSIFIER_UPDATE_REMOTE_NETWORK_ERROR", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_update_remote_status2": { + "bucket_count": 17, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1311910", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1311910", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Server HTTP status code from SafeBrowsing database updates. (0=1xx, 1=200, 2=2xx, 3=204, 4=3xx, 5=400, 6=4xx, 7=403, 8=404, 9=408, 10=413, 11=5xx, 12=502|504|511, 13=503, 14=505, 15=Other). Keyed by provider\nThis metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_UPDATE_REMOTE_STATUS2.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 16, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L222", + "telemetry_mirror": "URLCLASSIFIER_UPDATE_REMOTE_STATUS2", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_update_server_response_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336903", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336903", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Server response time to update request (ms). Keyed by provider\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_UPDATE_SERVER_RESPONSE_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L247", + "telemetry_mirror": "URLCLASSIFIER_UPDATE_SERVER_RESPONSE_TIME", + "time_unit": "millisecond", + "type": "labeled_timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_update_timeout": { + "bucket_count": 5, + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336904", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336904", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": " Whether or not an update timed out (0 = no timeout, 1 = server respond\ntimeout, 2 = overall timeout). Keyed by provider This metric was generated to correspond to the Legacy Telemetry enumerated histogram URLCLASSIFIER_UPDATE_TIMEOUT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "histogram_type": "linear", + "labels": null, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "range_max": 4, + "range_min": 0, + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L267", + "telemetry_mirror": "URLCLASSIFIER_UPDATE_TIMEOUT", + "type": "labeled_custom_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_vlps_construct_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336865", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1336865", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent constructing Variable-Length PrefixSet from file (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_VLPS_CONSTRUCT_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L152", + "telemetry_mirror": "URLCLASSIFIER_VLPS_CONSTRUCT_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_vlps_fallocate_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1283007", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1283007", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent fallocating Variable-Length PrefixSet (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_VLPS_FALLOCATE_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L132", + "telemetry_mirror": "URLCLASSIFIER_VLPS_FALLOCATE_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_vlps_fileload_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1283007", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1283007", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Time spent loading Variable-Length PrefixSet from file (ms)\nThis metric was generated to correspond to the Legacy Telemetry exponential histogram URLCLASSIFIER_VLPS_FILELOAD_TIME.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L112", + "telemetry_mirror": "URLCLASSIFIER_VLPS_FILELOAD_TIME", + "time_unit": "millisecond", + "type": "timing_distribution", + "version": 0, + "repos": [ + "gecko" + ] + }, + "urlclassifier_vlps_metadata_corrupt": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1433636", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1433636", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1531034" + ], + "dates": { + "first": "2025-01-29 00:24:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether or not the metadata for a variable-length prefix set loaded from disk is corrupted (true = file corrupted).\nThis metric was generated to correspond to the Legacy Telemetry boolean histogram URLCLASSIFIER_VLPS_METADATA_CORRUPT.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aa3e3a0313bf04fee2d0b2c800a8cfc95a1089a5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "labels": [ + "false", + "true" + ], + "lifetime": "ping", + "metadata": { + "tags": [ + "Toolkit :: Safe Browsing" + ] + }, + "no_lint": [], + "notification_emails": [ + "dlee@mozilla.com", + "safebrowsing-telemetry@mozilla.org" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "metrics" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/toolkit/components/url-classifier/metrics.yaml#L172", + "telemetry_mirror": "h#URLCLASSIFIER_VLPS_METADATA_CORRUPT", + "type": "labeled_counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_content_documents_destroyed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1204994", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1569672", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1845779", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1569672" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of how many content documents were destroyed. Used to turn document use counters' counts into rates. Excludes documents for which we do not count use counters (See `Document::ShouldIncludeInTelemetry`).\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_alignment_baseline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property alignment-baseline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39127", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_background_repeat_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property background-repeat-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39212", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_background_repeat_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property background-repeat-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39246", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_baseline_shift": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property baseline-shift. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39161", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_buffered_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property buffered-rendering. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39501", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_color_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property color-rendering. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39416", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_accent_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property accent-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31664", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_align_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property align-content. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28604", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_align_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property align-items. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28621", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_align_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property align-self. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28638", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_align_tracks": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-06-02 00:03:51" + }, + "description": "Whether a document used the CSS property align-tracks. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "150578071d74599a1c80f45d57947efa9f32bf03" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/150578071d74599a1c80f45d57947efa9f32bf03/dom/base/use_counter_metrics.yaml#L31120", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_all": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property all. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36934", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_anchor_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-18 16:47:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property anchor-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aac256321abd5cb86e7cc252422c106a6a3a33d8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31681", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_anchor_scope": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-18 16:47:28", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property anchor-scope. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "060c48abc90c62a1997a554512fedb303dc760e3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31698", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36883", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_composition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-composition. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31715", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-delay. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31732", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31749", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-duration. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31766", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_fill_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-fill-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31783", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_iteration_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-iteration-count. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31800", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31817", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_play_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-play-state. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31834", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_timeline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-timeline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31851", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_animation_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property animation-timing-function. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31868", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property appearance. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30899", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_aspect_ratio": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property aspect-ratio. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28655", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_backdrop_filter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property backdrop-filter. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31885", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_backface_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property backface-visibility. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28672", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35591", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_attachment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-attachment. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31902", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_blend_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-blend-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31919", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-clip. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31936", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35285", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31953", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31970", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35608", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_position_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-position-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31987", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_position_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-position-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32004", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-repeat. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32021", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_background_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property background-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32038", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_baseline_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property baseline-source. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28689", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property block-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34452", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35812", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35965", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35897", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35761", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-end-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35302", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-end-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31511", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-end-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34588", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35744", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-start-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35319", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-start-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31528", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-start-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34605", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35880", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_block_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-block-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35863", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-bottom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35710", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_bottom_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-bottom-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35336", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_bottom_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-bottom-left-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34044", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_bottom_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-bottom-right-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34061", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_bottom_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-bottom-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31545", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_bottom_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-bottom-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34622", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28706", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35625", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_end_end_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-end-end-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34078", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_end_start_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-end-start-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34095", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35846", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_image_outset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-image-outset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32055", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_image_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-image-repeat. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28723", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_image_slice": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-image-slice. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32072", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_image_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-image-source. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33568", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_image_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-image-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32089", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35982", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35948", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35795", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-end-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35353", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-end-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31562", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-end-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34639", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35778", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-start-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35370", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-start-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31579", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-start-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34656", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35931", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_inline_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-inline-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35914", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-left. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35727", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_left_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-left-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35387", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_left_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-left-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31596", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_left_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-left-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34673", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35829", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-right. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35693", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_right_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-right-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35404", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_right_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-right-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31613", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_right_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-right-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34690", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-spacing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32106", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_start_end_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-start-end-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34112", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_start_start_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-start-start-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34129", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35642", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-top. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35676", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_top_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-top-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35421", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_top_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-top-left-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34146", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_top_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-top-right-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34163", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_top_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-top-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31630", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_top_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-top-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34707", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_border_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property border-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35659", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property bottom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34180", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_box_decoration_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property box-decoration-break. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28740", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_box_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property box-shadow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32123", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_box_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property box-sizing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28757", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_break_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property break-after. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30967", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_break_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property break-before. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30984", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_break_inside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property break-inside. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28774", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_caption_side": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property caption-side. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28791", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_caret_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property caret-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32140", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_clear": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property clear. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28808", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property clip. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32157", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_clip_path": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property clip-path. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32174", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_clip_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property clip-rule. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31001", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32191", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property color-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37512", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_color_interpolation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property color-interpolation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28825", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_color_interpolation_filters": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property color-interpolation-filters. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28842", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_color_scheme": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property color-scheme. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32208", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-count. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28859", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_fill": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-fill. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28876", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-gap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33670", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-rule. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36152", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_rule_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-rule-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35438", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_rule_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-rule-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31647", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_rule_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-rule-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34724", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_span": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-span. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28893", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_column_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property column-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32225", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property columns. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36135", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_contain": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property contain. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28910", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_contain_intrinsic_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property contain-intrinsic-block-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33755", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_contain_intrinsic_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property contain-intrinsic-height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33772", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_contain_intrinsic_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property contain-intrinsic-inline-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33789", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_contain_intrinsic_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property contain-intrinsic-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36798", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_contain_intrinsic_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property contain-intrinsic-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33806", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_container": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property container. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36050", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_container_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property container-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32242", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_container_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property container-type. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28927", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property content. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32259", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_content_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property content-visibility. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28944", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_counter_increment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property counter-increment. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32276", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_counter_reset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property counter-reset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32293", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_counter_set": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property counter-set. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32310", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_cursor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property cursor. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32327", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_cx": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property cx. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33959", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_cy": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property cy. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33976", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property d. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32344", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28961", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_display": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property display. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28978", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_dominant_baseline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property dominant-baseline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28995", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_empty_cells": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property empty-cells. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29012", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_field_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-06-11 06:32:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property field-sizing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c08f0fc923978099c4641091b5e524f1f6a25b42", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29029", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_fill": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property fill. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33500", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_fill_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property fill-opacity. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31069", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_fill_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property fill-rule. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31018", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_filter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property filter. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32361", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flex. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36560", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flex_basis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flex-basis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32378", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flex_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flex-direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29046", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flex_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flex-flow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36543", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flex_grow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flex-grow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31222", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flex_shrink": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flex-shrink. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31239", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flex_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flex-wrap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29063", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_float": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property float. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29080", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flood_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flood-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35455", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_flood_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property flood-opacity. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31426", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36169", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_family": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-family. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32395", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-feature-settings. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32412", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_kerning": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-kerning. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29097", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_language_override": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-language-override. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29114", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_optical_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-optical-sizing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29131", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_palette": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-palette. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32429", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32446", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-size-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29148", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_stretch": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-stretch. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29165", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29182", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_synthesis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-synthesis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36203", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_synthesis_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-synthesis-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31154", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_synthesis_small_caps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-synthesis-small-caps. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31171", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_synthesis_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-synthesis-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31188", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_synthesis_weight": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-synthesis-weight. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31205", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36186", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant_alternates": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant-alternates. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32463", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant_caps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant-caps. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29199", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant_east_asian": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant-east-asian. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29216", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant_emoji": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant-emoji. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29233", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant_ligatures": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant-ligatures. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29250", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant_numeric": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant-numeric. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29267", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variant_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variant-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29284", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_variation_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-variation-settings. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32480", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_font_weight": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property font-weight. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29301", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_forced_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property forced-color-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29318", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property gap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36577", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36662", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_area": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-area. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36628", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_auto_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-auto-columns. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33602", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_auto_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-auto-flow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29335", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_auto_rows": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-auto-rows. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33619", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_column": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-column. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36611", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_column_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-column-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33823", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_column_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-column-gap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37869", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_column_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-column-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33840", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-gap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38719", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_row": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-row. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36594", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_row_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-row-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33857", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_row_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-row-gap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37886", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_row_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-row-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33874", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_template": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-template. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36645", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_template_areas": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-template-areas. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32497", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_template_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-template-columns. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33534", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_grid_template_rows": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property grid-template-rows. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33551", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34469", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_hyphenate_character": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property hyphenate-character. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32514", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_hyphenate_limit_chars": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property hyphenate-limit-chars. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32531", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_hyphens": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property hyphens. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29352", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_image_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property image-orientation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29369", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_image_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property image-rendering. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29386", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_ime_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property ime-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29403", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_initial_letter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property initial-letter. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29420", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inline-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34486", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36747", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset_area": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-31 00:22:53", + "last": "2024-08-15 01:58:45" + }, + "description": "Whether a document used the CSS property inset-area. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3eccbda7d2d9a0b033bd1eb8819a8cc5f4ccddae", + "last": "f156dee7049e64f17ea9bcb7701bd4beab15b6eb" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f156dee7049e64f17ea9bcb7701bd4beab15b6eb/dom/base/use_counter_metrics.yaml#L28893", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inset-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36764", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inset-block-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34197", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inset-block-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34214", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inset-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36781", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inset-inline-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34231", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_inset_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property inset-inline-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34248", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_isolation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property isolation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29437", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_justify_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property justify-content. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29454", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_justify_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property justify-items. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29471", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_justify_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property justify-self. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29488", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_justify_tracks": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-06-02 00:03:51" + }, + "description": "Whether a document used the CSS property justify-tracks. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "150578071d74599a1c80f45d57947efa9f32bf03" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/150578071d74599a1c80f45d57947efa9f32bf03/dom/base/use_counter_metrics.yaml#L31987", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property left. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34265", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_letter_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property letter-spacing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32548", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_lighting_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property lighting-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35472", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_line_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property line-break. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29505", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_line_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property line-height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32565", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_list_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property list-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36305", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_list_style_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property list-style-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33585", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_list_style_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property list-style-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29522", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_list_style_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property list-style-type. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32582", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36322", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36339", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-block-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34316", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-block-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34333", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-bottom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34350", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36356", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-inline-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34367", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-inline-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34384", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-left. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34401", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-right. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34418", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_margin_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property margin-top. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34435", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_marker": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property marker. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36220", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_marker_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property marker-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33704", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_marker_mid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property marker-mid. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33721", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_marker_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property marker-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33738", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36815", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-clip. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32599", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_composite": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-composite. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32616", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32633", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32650", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32667", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36832", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_position_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-position-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32684", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_position_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-position-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32701", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-repeat. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32718", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32735", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mask_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mask-type. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29539", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_masonry_auto_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property masonry-auto-flow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29556", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_math_depth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property math-depth. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29573", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_math_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property math-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29590", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_max_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property max-block-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33891", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_max_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property max-height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33908", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_max_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property max-inline-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33925", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_max_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property max-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33942", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_min_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property min-block-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34503", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_min_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property min-height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34520", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_min_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property min-inline-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34537", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_min_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property min-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34554", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_mix_blend_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property mix-blend-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29607", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38804", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-delay. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38464", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38362", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-duration. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38260", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_fill_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-fill-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38430", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_iteration_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-iteration-count. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38328", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38226", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_play_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-play-state. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38396", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_animation_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-animation-timing-function. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38294", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-appearance. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37376", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_backface_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-backface-visibility. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37274", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38617", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-end-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37053", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-end-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37070", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-end-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37087", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38651", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38600", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-start-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37002", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-start-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37019", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_border_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-border-start-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37036", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-align. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29624", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29641", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29658", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-flex. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31256", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_ordinal_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-ordinal-group. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31103", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_orient": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-orient. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29675", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_pack": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-pack. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29692", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_box_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-box-sizing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37835", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_context_properties": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-context-properties. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32752", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_control_character_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-control-character-visibility. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29709", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_default_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-default-appearance. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30916", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_float_edge": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-float-edge. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29726", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-font-feature-settings. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37444", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_font_language_override": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-font-language-override. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37478", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_force_broken_image_icon": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-force-broken-image-icon. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30933", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_hyphens": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-hyphens. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37529", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_inert": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-inert. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29743", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_margin_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-margin-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37614", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_margin_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-margin-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37597", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_math_variant": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-math-variant. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29760", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_min_font_size_ratio": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-min-font-size-ratio. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29777", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_orient": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-orient. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29794", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_osx_font_smoothing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-osx-font-smoothing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29811", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_padding_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-padding-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37648", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_padding_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-padding-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37631", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_perspective": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-perspective. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37206", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_perspective_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-perspective-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37240", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_subtree_hidden_only_visually": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-subtree-hidden-only-visually. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30950", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_tab_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-tab-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37580", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_text_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-text-size-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29828", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_theme": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-theme. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29845", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_top_layer": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-top-layer. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29862", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transform. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37172", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transform-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37342", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transform_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transform-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37308", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transition. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38770", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transition_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transition-delay. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38192", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transition_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transition-duration. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38090", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transition_property": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transition-property. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38158", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_transition_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-transition-timing-function. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38124", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_user_focus": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-user-focus. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29879", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_user_input": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-user-input. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29896", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_user_modify": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-12-20 15:26:35" + }, + "description": "Whether a document used the CSS property -moz-user-modify. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "f9517009d8a4946dbdd3acd72a31dc34fca79586" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f9517009d8a4946dbdd3acd72a31dc34fca79586/dom/base/use_counter_metrics.yaml#L30440", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_user_select": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-user-select. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38056", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_window_dragging": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-window-dragging. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29913", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_window_input_region_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-window-input-region-margin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35098", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_window_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-window-opacity. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31443", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_window_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-window-shadow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29930", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_window_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -moz-window-transform. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33636", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_moz_window_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-12-20 15:26:35" + }, + "description": "Whether a document used the CSS property -moz-window-transform-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "f9517009d8a4946dbdd3acd72a31dc34fca79586" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f9517009d8a4946dbdd3acd72a31dc34fca79586/dom/base/use_counter_metrics.yaml#L34044", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_object_fit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property object-fit. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29947", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_object_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property object-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33466", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_offset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property offset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36118", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_offset_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property offset-anchor. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32769", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_offset_distance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property offset-distance. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33993", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_offset_path": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property offset-path. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32786", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_offset_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property offset-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32803", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_offset_rotate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property offset-rotate. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29964", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property opacity. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31460", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property order. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31120", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_outline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property outline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36424", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_outline_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property outline-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35489", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_outline_offset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property outline-offset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35115", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_outline_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property outline-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29981", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_outline_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property outline-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34741", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35999", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-anchor. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L29998", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31290", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_clip_box": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-clip-box. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36016", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_clip_box_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-clip-box-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31035", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_clip_box_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-clip-box-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31052", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_clip_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-clip-margin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35132", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31307", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-wrap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30015", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31324", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overflow_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overflow-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31341", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overscroll_behavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overscroll-behavior. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36033", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overscroll_behavior_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overscroll-behavior-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31358", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overscroll_behavior_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overscroll-behavior-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31375", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overscroll_behavior_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overscroll-behavior-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31392", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_overscroll_behavior_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property overscroll-behavior-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31409", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36441", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36458", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-block-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34758", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-block-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34775", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-bottom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34792", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36475", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-inline-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34809", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-inline-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34826", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-left. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34843", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-right. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34860", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_padding_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property padding-top. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34877", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_page": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property page. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32820", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_page_break_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property page-break-after. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36084", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_page_break_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property page-break-before. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36067", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_page_break_inside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property page-break-inside. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36101", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_page_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property page-orientation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30032", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_paint_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property paint-order. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30049", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_perspective": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property perspective. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32837", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_perspective_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property perspective-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33483", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_place_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property place-content. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36679", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_place_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property place-items. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36713", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_place_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property place-self. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36696", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_pointer_events": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property pointer-events. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30066", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30083", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-21 10:12:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property position-anchor. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3fa7097c7f16ca569df932874074c95a3d6ec80c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32854", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position_area": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-08-15 11:30:12", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property position-area. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "11482ce7b835b03036d0b42cdd83c599ed5e7cc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30100", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position_try": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-09-13 00:22:54", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property position-try. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d4ebe779142a1d22b5e67d8ec21f9efe55bd4c5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36730", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position_try_fallbacks": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-07-16 00:08:14", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property position-try-fallbacks. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "81ba3cfa916674f581c2b126e1862f2f4d3aee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32871", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position_try_options": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2024-07-15 16:24:53" + }, + "description": "Whether a document used the CSS property position-try-options. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "f3e4b33a6122ce63bf81ae8c30cc5ac37458864b" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f3e4b33a6122ce63bf81ae8c30cc5ac37458864b/dom/base/use_counter_metrics.yaml#L32344", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position_try_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-31 10:35:07", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property position-try-order. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3fa58fb2faa5c85f39a5b57cd64dd8f3777c95bf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30117", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_position_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-28 00:52:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property position-visibility. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7b0b5f40c7dd8879d9e730d1551a0253c976513e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30134", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_print_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property print-color-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30151", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_quotes": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property quotes. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32888", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_r": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property r. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34894", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_resize": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property resize. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30168", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property right. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34282", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_rotate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property rotate. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32905", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_row_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property row-gap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33687", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_ruby_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property ruby-align. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30185", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_ruby_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property ruby-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30202", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_rx": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property rx. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34928", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_ry": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property ry. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34945", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scale. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32922", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_behavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-behavior. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30219", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36373", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36390", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-block-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35149", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-block-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35166", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-bottom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35183", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36407", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-inline-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35200", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-inline-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35217", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-left. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35234", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-right. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35251", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_margin_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-margin-top. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35268", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36492", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-block. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36509", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-block-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34962", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-block-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34979", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-bottom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34996", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-inline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36526", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-inline-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35013", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-inline-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35030", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-left. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35047", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-right. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35064", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_padding_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-padding-top. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35081", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_snap_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-snap-align. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30236", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_snap_stop": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-snap-stop. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30253", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_snap_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-snap-type. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30270", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_timeline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-timeline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36900", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_timeline_axis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-timeline-axis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32939", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scroll_timeline_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scroll-timeline-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32956", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scrollbar_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scrollbar-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32973", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scrollbar_gutter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scrollbar-gutter. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30287", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_scrollbar_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property scrollbar-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30304", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_shape_image_threshold": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property shape-image-threshold. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31477", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_shape_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property shape-margin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34911", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_shape_outside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property shape-outside. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L32990", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_shape_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property shape-rendering. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30321", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33007", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stop_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stop-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35506", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stop_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stop-opacity. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31494", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33517", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke_dasharray": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke-dasharray. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33024", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke_dashoffset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke-dashoffset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33041", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke_linecap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke-linecap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30338", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke_linejoin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke-linejoin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30355", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke_miterlimit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke-miterlimit. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31273", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke-opacity. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31086", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_stroke_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property stroke-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33058", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_tab_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property tab-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33075", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_table_layout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property table-layout. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30372", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-align. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30389", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_align_last": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-align-last. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30406", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-anchor. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30423", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_combine_upright": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-combine-upright. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30440", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_decoration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-decoration. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36849", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_decoration_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-decoration-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35523", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_decoration_line": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-decoration-line. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30457", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_decoration_skip_ink": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-decoration-skip-ink. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30474", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_decoration_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-decoration-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30491", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_decoration_thickness": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-decoration-thickness. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33092", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_emphasis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-emphasis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36237", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_emphasis_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-emphasis-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35540", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_emphasis_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-emphasis-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30508", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_emphasis_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-emphasis-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33109", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_indent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-indent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33126", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_justify": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-justify. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30525", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-orientation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30542", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_overflow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-overflow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33143", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-rendering. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30559", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-shadow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33160", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-transform. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30576", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_underline_offset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-underline-offset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33177", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_underline_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-underline-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30593", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-wrap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36254", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_wrap_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-29 01:37:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-wrap-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c4c7a2ad5f56828025ee915d62aeac7796b2ca84", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30610", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_text_wrap_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-29 01:37:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property text-wrap-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c4c7a2ad5f56828025ee915d62aeac7796b2ca84", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30627", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property top. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34299", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_touch_action": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property touch-action. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30644", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transform. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33653", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transform_box": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transform-box. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30661", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transform-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33194", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transform_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transform-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30678", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transition. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36866", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transition_behavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-02-24 00:23:59", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transition-behavior. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d22ee1fa3959418b72c93409df26b515818e81b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33211", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transition_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transition-delay. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33228", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transition_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transition-duration. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33245", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transition_property": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transition-property. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33262", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_transition_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property transition-timing-function. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33279", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_translate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property translate. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33296", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_unicode_bidi": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property unicode-bidi. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30695", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_user_find": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-02-02 09:45:45", + "last": "2024-02-13 21:02:14" + }, + "description": "Whether a document used the CSS property user-find. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b59c93386cb9c425ac44bcf1cc0c4c7d05b67ba9", + "last": "90cdd721bc108f735b8f1f9f9715eda7e66e5e47" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/90cdd721bc108f735b8f1f9f9715eda7e66e5e47/dom/base/use_counter_metrics.yaml#L29590", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_user_select": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property user-select. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30712", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_vector_effect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property vector-effect. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30729", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_vertical_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property vertical-align. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33313", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_view_timeline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property view-timeline. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36917", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_view_timeline_axis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property view-timeline-axis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33330", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_view_timeline_inset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property view-timeline-inset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33347", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_view_timeline_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property view-timeline-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33364", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_view_transition_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-08-22 07:21:09", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property view-transition-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a20866136dc104b333f7c6a982a084bbe614d844", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33381", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property visibility. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30746", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_align_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-align-content. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37716", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_align_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-align-items. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37733", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_align_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-align-self. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37784", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38821", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-delay. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38481", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38379", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-duration. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38277", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_fill_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-fill-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38447", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_iteration_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-iteration-count. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38345", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-name. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38243", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_play_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-play-state. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38413", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_animation_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-animation-timing-function. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38311", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-appearance. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37393", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_backface_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-backface-visibility. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37291", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_background_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-background-clip. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36951", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_background_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-background-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36968", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_background_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-background-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36985", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_border_bottom_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-border-bottom-left-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37155", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_border_bottom_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-border-bottom-right-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37138", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_border_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-border-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38668", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_border_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-border-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38634", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_border_top_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-border-top-left-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37104", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_border_top_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-border-top-right-radius. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37121", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-align. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38498", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38515", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-flex. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38532", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_ordinal_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-ordinal-group. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38583", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_orient": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-orient. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38549", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_pack": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-pack. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38566", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-shadow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37410", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_box_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-box-sizing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37852", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_clip_path": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-clip-path. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37903", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_filter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-filter. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37427", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-flex. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38702", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_flex_basis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-flex-basis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37818", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_flex_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-flex-direction. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37665", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_flex_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-flex-flow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38685", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_flex_grow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-flex-grow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37750", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_flex_shrink": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-flex-shrink. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37767", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_flex_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-flex-wrap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37682", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-09-13 00:22:54", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-font-feature-settings. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d4ebe779142a1d22b5e67d8ec21f9efe55bd4c5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37461", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_font_smoothing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-31 15:14:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-font-smoothing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "008aa49ff51ace0ff2edeb39e5ac3fe323aff2c8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37495", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_justify_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-justify-content. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37699", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_line_clamp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-line-clamp. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30763", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38736", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-clip. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37971", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_composite": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-composite. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38022", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38039", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37988", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38753", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_position_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-position-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37937", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_position_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-position-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37954", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-repeat. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37920", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_mask_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-mask-size. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38005", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-order. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37801", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_perspective": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-perspective. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37223", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_perspective_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-perspective-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37257", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_text_fill_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-text-fill-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35557", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_text_security": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-text-security. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30780", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_text_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-text-size-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37546", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_text_stroke": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-text-stroke. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36288", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_text_stroke_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-text-stroke-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L35574", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_text_stroke_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-text-stroke-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33398", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transform. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37189", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transform-origin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37359", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transform_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transform-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37325", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transition. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38787", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transition_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transition-delay. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38209", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transition_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transition-duration. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38107", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transition_property": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transition-property. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38175", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_transition_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-transition-timing-function. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38141", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_webkit_user_select": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -webkit-user-select. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38073", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_white_space": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property white-space. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L36271", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_white_space_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-29 01:37:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property white-space-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c4c7a2ad5f56828025ee915d62aeac7796b2ca84", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30797", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34571", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_will_change": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property will-change. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33415", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_word_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property word-break. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30814", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_word_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property word-spacing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33432", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_word_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property word-wrap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L37563", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_writing_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property writing-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30831", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34010", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_x_lang": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -x-lang. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L33449", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_x_span": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -x-span. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L31137", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_x_text_scale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property -x-text-scale. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30848", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L34027", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_z_index": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property z-index. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30865", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_css_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the CSS property zoom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L30882", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_max_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property max-zoom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40317", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_min_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property min-zoom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40266", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property orientation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40300", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_orphans": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property orphans. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38906", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_speak": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property speak. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38855", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_text_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property text-size-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38872", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_user_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property user-zoom. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40249", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_app_region": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-app-region. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40334", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-after. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39892", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_after_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-after-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40130", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_after_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-after-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40181", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_after_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-after-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40147", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-before. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39858", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_before_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-before-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39688", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_before_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-before-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39773", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_before_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-before-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39705", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39875", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-end-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40062", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-end-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40164", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-end-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40079", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_horizontal_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-horizontal-spacing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39399", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39909", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-start-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40096", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-start-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40198", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-start-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40113", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_border_vertical_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-border-vertical-spacing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39348", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_box_decoration_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-box-decoration-break. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40283", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_box_reflect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-box-reflect. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39059", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_break_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-break-after. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39824", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_break_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-break-before. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39433", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_break_inside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-break-inside. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39008", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-count. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40436", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-gap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40385", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-rule. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40351", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_rule_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-rule-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40538", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_rule_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-rule-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40504", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_rule_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-rule-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40419", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_span": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-span. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40368", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_column_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-column-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40470", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-columns. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40521", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-09-12 09:37:58" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-font-feature-settings. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "ab8043ccefe85c30ef78b97193918934d6aa93d1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ab8043ccefe85c30ef78b97193918934d6aa93d1/dom/base/use_counter_metrics.yaml#L38362", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_font_size_delta": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-font-size-delta. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39977", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_font_smoothing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-06-05 10:10:05" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-font-smoothing. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc/dom/base/use_counter_metrics.yaml#L38192", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_highlight": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-highlight. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39195", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_hyphenate_character": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-hyphenate-character. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39178", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_line_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-line-break. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39110", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_locale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-locale. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39365", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_logical_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-logical-height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39943", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_logical_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-logical-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39994", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-after. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38974", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_after_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-after-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39671", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-before. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38957", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_before_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-before-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39756", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_bottom_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-bottom-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39790", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39841", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39042", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38991", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_margin_top_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-margin-top-collapse. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39280", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_box_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-box-image. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39093", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_box_image_outset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-box-image-outset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39620", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_box_image_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-box-image-repeat. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39654", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_box_image_slice": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-box-image-slice. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39637", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_box_image_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-box-image-source. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39603", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_box_image_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-box-image-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39586", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_repeat_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-repeat-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40215", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_mask_repeat_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-mask-repeat-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40232", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_max_logical_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-max-logical-height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40045", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_max_logical_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-max-logical-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40011", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_min_logical_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-min-logical-height. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40028", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_min_logical_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-min-logical-width. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39926", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-opacity. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40453", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_padding_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-padding-after. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39382", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_padding_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-padding-before. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39314", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_padding_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-padding-end. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39229", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_padding_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-padding-start. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39025", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_perspective_origin_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-perspective-origin-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39722", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_perspective_origin_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-perspective-origin-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39739", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_print_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-print-color-adjust. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39076", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_rtl_ordering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-rtl-ordering. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39297", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_ruby_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-ruby-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39807", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_shape_image_threshold": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-shape-image-threshold. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40487", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_shape_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-shape-margin. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40555", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_shape_outside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-shape-outside. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L40402", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_tap_highlight_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-tap-highlight-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38838", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_text_combine": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-text-combine. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39535", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_text_decorations_in_effect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-text-decorations-in-effect. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39331", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_text_emphasis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-text-emphasis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39569", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_text_emphasis_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-text-emphasis-color. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39263", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_text_emphasis_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-text-emphasis-position. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39484", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_text_emphasis_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-text-emphasis-style. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39552", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_text_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-text-orientation. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39518", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_transform_origin_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-transform-origin-x. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39450", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_transform_origin_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-transform-origin-y. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39467", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_transform_origin_z": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-transform-origin-z. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39960", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_user_drag": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-user-drag. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38889", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_user_modify": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-user-modify. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38940", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_webkit_writing_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property -webkit-writing-mode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L39144", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_doc_widows": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used the (unknown, counted) CSS property widows. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L38923", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_alignment_baseline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property alignment-baseline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27157", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_background_repeat_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property background-repeat-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27242", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_background_repeat_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property background-repeat-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27276", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_baseline_shift": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property baseline-shift. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27191", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_buffered_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property buffered-rendering. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27531", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_color_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property color-rendering. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27446", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_accent_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property accent-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19694", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_align_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property align-content. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16634", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_align_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property align-items. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16651", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_align_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property align-self. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16668", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_align_tracks": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-06-02 00:03:51" + }, + "description": "Whether a page used the CSS property align-tracks. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "150578071d74599a1c80f45d57947efa9f32bf03" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/150578071d74599a1c80f45d57947efa9f32bf03/dom/base/use_counter_metrics.yaml#L19167", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_all": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property all. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24964", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_anchor_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-18 16:47:27", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property anchor-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "aac256321abd5cb86e7cc252422c106a6a3a33d8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19711", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_anchor_scope": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-18 16:47:28", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property anchor-scope. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "060c48abc90c62a1997a554512fedb303dc760e3", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19728", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24913", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_composition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-composition. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19745", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-delay. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19762", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19779", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-duration. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19796", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_fill_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-fill-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19813", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_iteration_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-iteration-count. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19830", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19847", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_play_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-play-state. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19864", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_timeline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-timeline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19881", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_animation_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property animation-timing-function. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19898", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property appearance. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18929", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_aspect_ratio": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property aspect-ratio. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16685", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_backdrop_filter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property backdrop-filter. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19915", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_backface_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property backface-visibility. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16702", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23621", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_attachment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-attachment. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19932", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_blend_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-blend-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19949", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-clip. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19966", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23315", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19983", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20000", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23638", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_position_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-position-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20017", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_position_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-position-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20034", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-repeat. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20051", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_background_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property background-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20068", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_baseline_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property baseline-source. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16719", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property block-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22482", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23842", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23995", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23927", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23791", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-end-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23332", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-end-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19541", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-end-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22618", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23774", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-start-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23349", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-start-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19558", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-start-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22635", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23910", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_block_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-block-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23893", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-bottom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23740", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_bottom_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-bottom-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23366", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_bottom_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-bottom-left-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22074", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_bottom_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-bottom-right-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22091", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_bottom_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-bottom-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19575", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_bottom_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-bottom-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22652", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16736", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23655", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_end_end_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-end-end-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22108", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_end_start_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-end-start-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22125", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23876", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_image_outset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-image-outset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20085", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_image_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-image-repeat. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16753", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_image_slice": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-image-slice. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20102", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_image_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-image-source. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21598", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_image_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-image-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20119", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24012", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23978", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23825", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-end-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23383", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-end-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19592", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-end-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22669", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23808", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-start-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23400", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-start-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19609", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-start-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22686", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23961", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_inline_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-inline-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23944", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-left. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23757", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_left_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-left-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23417", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_left_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-left-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19626", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_left_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-left-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22703", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23859", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-right. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23723", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_right_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-right-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23434", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_right_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-right-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19643", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_right_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-right-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22720", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-spacing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20136", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_start_end_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-start-end-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22142", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_start_start_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-start-start-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22159", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23672", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-top. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23706", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_top_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-top-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23451", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_top_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-top-left-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22176", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_top_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-top-right-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22193", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_top_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-top-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19660", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_top_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-top-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22737", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_border_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property border-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23689", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property bottom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22210", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_box_decoration_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property box-decoration-break. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16770", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_box_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property box-shadow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20153", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_box_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property box-sizing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16787", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_break_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property break-after. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18997", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_break_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property break-before. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19014", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_break_inside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property break-inside. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16804", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_caption_side": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property caption-side. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16821", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_caret_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property caret-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20170", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_clear": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property clear. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16838", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property clip. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20187", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_clip_path": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property clip-path. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20204", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_clip_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property clip-rule. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19031", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20221", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property color-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25542", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_color_interpolation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property color-interpolation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16855", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_color_interpolation_filters": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property color-interpolation-filters. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16872", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_color_scheme": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property color-scheme. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20238", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-count. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16889", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_fill": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-fill. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16906", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-gap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21700", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-rule. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24182", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_rule_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-rule-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23468", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_rule_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-rule-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19677", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_rule_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-rule-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22754", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_span": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-span. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16923", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_column_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property column-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20255", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property columns. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24165", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_contain": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property contain. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16940", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_contain_intrinsic_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property contain-intrinsic-block-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21785", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_contain_intrinsic_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property contain-intrinsic-height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21802", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_contain_intrinsic_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property contain-intrinsic-inline-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21819", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_contain_intrinsic_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property contain-intrinsic-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24828", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_contain_intrinsic_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property contain-intrinsic-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21836", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_container": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property container. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24080", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_container_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property container-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20272", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_container_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property container-type. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16957", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property content. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20289", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_content_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property content-visibility. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16974", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_counter_increment": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property counter-increment. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20306", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_counter_reset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property counter-reset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20323", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_counter_set": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property counter-set. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20340", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_cursor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property cursor. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20357", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_cx": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property cx. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21989", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_cy": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property cy. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22006", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property d. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20374", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16991", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_display": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property display. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17008", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_dominant_baseline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property dominant-baseline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17025", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_empty_cells": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property empty-cells. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17042", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_field_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-06-11 06:32:15", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property field-sizing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c08f0fc923978099c4641091b5e524f1f6a25b42", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17059", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_fill": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property fill. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21530", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_fill_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property fill-opacity. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19099", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_fill_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property fill-rule. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19048", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_filter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property filter. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20391", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flex. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24590", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flex_basis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flex-basis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20408", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flex_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flex-direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17076", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flex_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flex-flow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24573", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flex_grow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flex-grow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19252", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flex_shrink": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flex-shrink. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19269", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flex_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flex-wrap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17093", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_float": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property float. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17110", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flood_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flood-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23485", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_flood_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property flood-opacity. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19456", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24199", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_family": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-family. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20425", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-feature-settings. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20442", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_kerning": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-kerning. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17127", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_language_override": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-language-override. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17144", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_optical_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-optical-sizing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17161", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_palette": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-palette. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20459", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20476", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-size-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17178", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_stretch": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-stretch. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17195", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17212", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_synthesis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-synthesis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24233", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_synthesis_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-synthesis-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19184", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_synthesis_small_caps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-synthesis-small-caps. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19201", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_synthesis_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-synthesis-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19218", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_synthesis_weight": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-synthesis-weight. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19235", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24216", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant_alternates": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant-alternates. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20493", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant_caps": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant-caps. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17229", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant_east_asian": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant-east-asian. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17246", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant_emoji": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant-emoji. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17263", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant_ligatures": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant-ligatures. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17280", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant_numeric": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant-numeric. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17297", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variant_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variant-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17314", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_variation_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-variation-settings. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20510", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_font_weight": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property font-weight. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17331", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_forced_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property forced-color-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17348", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property gap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24607", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24692", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_area": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-area. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24658", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_auto_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-auto-columns. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21632", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_auto_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-auto-flow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17365", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_auto_rows": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-auto-rows. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21649", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_column": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-column. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24641", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_column_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-column-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21853", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_column_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-column-gap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25899", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_column_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-column-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21870", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-gap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26749", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_row": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-row. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24624", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_row_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-row-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21887", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_row_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-row-gap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25916", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_row_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-row-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21904", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_template": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-template. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24675", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_template_areas": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-template-areas. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20527", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_template_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-template-columns. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21564", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_grid_template_rows": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property grid-template-rows. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21581", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22499", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_hyphenate_character": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property hyphenate-character. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20544", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_hyphenate_limit_chars": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2025-01-30 00:02:49", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property hyphenate-limit-chars. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "1de5b557635d9f82f856b55f683a882d53d4d9bb", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20561", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_hyphens": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property hyphens. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17382", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_image_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property image-orientation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17399", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_image_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property image-rendering. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17416", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_ime_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property ime-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17433", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_initial_letter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property initial-letter. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17450", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inline-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22516", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24777", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset_area": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-31 00:22:53", + "last": "2024-08-15 01:58:45" + }, + "description": "Whether a page used the CSS property inset-area. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3eccbda7d2d9a0b033bd1eb8819a8cc5f4ccddae", + "last": "f156dee7049e64f17ea9bcb7701bd4beab15b6eb" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f156dee7049e64f17ea9bcb7701bd4beab15b6eb/dom/base/use_counter_metrics.yaml#L16923", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inset-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24794", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inset-block-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22227", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inset-block-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22244", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inset-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24811", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inset-inline-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22261", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_inset_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property inset-inline-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22278", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_isolation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property isolation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17467", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_justify_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property justify-content. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17484", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_justify_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property justify-items. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17501", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_justify_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property justify-self. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17518", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_justify_tracks": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-06-02 00:03:51" + }, + "description": "Whether a page used the CSS property justify-tracks. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "150578071d74599a1c80f45d57947efa9f32bf03" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/150578071d74599a1c80f45d57947efa9f32bf03/dom/base/use_counter_metrics.yaml#L20034", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property left. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22295", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_letter_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property letter-spacing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20578", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_lighting_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property lighting-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23502", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_line_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property line-break. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17535", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_line_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property line-height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20595", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_list_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property list-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24335", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_list_style_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property list-style-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21615", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_list_style_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property list-style-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17552", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_list_style_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property list-style-type. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20612", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24352", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24369", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-block-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22346", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-block-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22363", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-bottom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22380", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24386", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-inline-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22397", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-inline-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22414", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-left. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22431", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-right. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22448", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_margin_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property margin-top. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22465", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_marker": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property marker. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24250", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_marker_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property marker-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21734", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_marker_mid": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property marker-mid. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21751", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_marker_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property marker-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21768", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24845", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-clip. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20629", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_composite": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-composite. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20646", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20663", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20680", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20697", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24862", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_position_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-position-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20714", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_position_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-position-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20731", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-repeat. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20748", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20765", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mask_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mask-type. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17569", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_masonry_auto_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property masonry-auto-flow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17586", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_math_depth": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property math-depth. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17603", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_math_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property math-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17620", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_max_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property max-block-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21921", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_max_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property max-height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21938", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_max_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property max-inline-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21955", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_max_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property max-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21972", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_min_block_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property min-block-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22533", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_min_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property min-height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22550", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_min_inline_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property min-inline-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22567", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_min_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property min-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22584", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_mix_blend_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property mix-blend-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17637", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26834", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-delay. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26494", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26392", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-duration. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26290", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_fill_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-fill-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26460", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_iteration_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-iteration-count. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26358", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26256", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_play_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-play-state. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26426", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_animation_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-animation-timing-function. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26324", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-appearance. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25406", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_backface_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-backface-visibility. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25304", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26647", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-end-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25083", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-end-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25100", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-end-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25117", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26681", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26630", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-start-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25032", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-start-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25049", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_border_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-border-start-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25066", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-align. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17654", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17671", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17688", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-flex. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19286", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_ordinal_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-ordinal-group. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19133", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_orient": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-orient. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17705", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_pack": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-pack. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17722", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_box_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-box-sizing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25865", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_context_properties": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-context-properties. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20782", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_control_character_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-control-character-visibility. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17739", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_default_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-default-appearance. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18946", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_float_edge": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-float-edge. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17756", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-font-feature-settings. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25474", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_font_language_override": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-font-language-override. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25508", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_force_broken_image_icon": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-force-broken-image-icon. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18963", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_hyphens": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-hyphens. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25559", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_inert": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-inert. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17773", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_margin_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-margin-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25644", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_margin_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-margin-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25627", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_math_variant": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-math-variant. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17790", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_min_font_size_ratio": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-min-font-size-ratio. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17807", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_orient": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-orient. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17824", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_osx_font_smoothing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-osx-font-smoothing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17841", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_padding_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-padding-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25678", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_padding_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-padding-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25661", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_perspective": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-perspective. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25236", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_perspective_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-perspective-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25270", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_subtree_hidden_only_visually": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-subtree-hidden-only-visually. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18980", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_tab_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-tab-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25610", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_text_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-text-size-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17858", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_theme": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-theme. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17875", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_top_layer": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-top-layer. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17892", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transform. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25202", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transform-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25372", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transform_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transform-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25338", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transition. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26800", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transition_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transition-delay. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26222", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transition_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transition-duration. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26120", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transition_property": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transition-property. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26188", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_transition_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-transition-timing-function. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26154", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_user_focus": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-user-focus. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17909", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_user_input": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-user-input. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17926", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_user_modify": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-12-20 15:26:35" + }, + "description": "Whether a page used the CSS property -moz-user-modify. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "f9517009d8a4946dbdd3acd72a31dc34fca79586" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f9517009d8a4946dbdd3acd72a31dc34fca79586/dom/base/use_counter_metrics.yaml#L18453", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_user_select": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-user-select. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26086", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_window_dragging": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-window-dragging. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17943", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_window_input_region_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-window-input-region-margin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23128", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_window_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-window-opacity. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19473", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_window_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-window-shadow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17960", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_window_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -moz-window-transform. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21666", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_moz_window_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-12-20 15:26:35" + }, + "description": "Whether a page used the CSS property -moz-window-transform-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "f9517009d8a4946dbdd3acd72a31dc34fca79586" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f9517009d8a4946dbdd3acd72a31dc34fca79586/dom/base/use_counter_metrics.yaml#L22057", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_object_fit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property object-fit. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17977", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_object_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property object-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21496", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_offset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property offset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24148", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_offset_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property offset-anchor. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20799", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_offset_distance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property offset-distance. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22023", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_offset_path": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property offset-path. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20816", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_offset_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property offset-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20833", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_offset_rotate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property offset-rotate. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L17994", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property opacity. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19490", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property order. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19150", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_outline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property outline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24454", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_outline_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property outline-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23519", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_outline_offset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property outline-offset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23145", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_outline_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property outline-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18011", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_outline_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property outline-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22771", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24029", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-anchor. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18028", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19320", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_clip_box": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-clip-box. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24046", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_clip_box_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-clip-box-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19065", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_clip_box_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-clip-box-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19082", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_clip_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-clip-margin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23162", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19337", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-wrap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18045", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19354", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overflow_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overflow-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19371", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overscroll_behavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overscroll-behavior. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24063", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overscroll_behavior_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overscroll-behavior-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19388", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overscroll_behavior_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overscroll-behavior-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19405", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overscroll_behavior_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overscroll-behavior-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19422", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_overscroll_behavior_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property overscroll-behavior-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19439", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24471", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24488", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-block-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22788", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-block-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22805", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-bottom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22822", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24505", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-inline-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22839", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-inline-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22856", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-left. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22873", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-right. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22890", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_padding_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property padding-top. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22907", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_page": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property page. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20850", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_page_break_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property page-break-after. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24114", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_page_break_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property page-break-before. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24097", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_page_break_inside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property page-break-inside. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24131", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_page_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property page-orientation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18062", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_paint_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property paint-order. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18079", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_perspective": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property perspective. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20867", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_perspective_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property perspective-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21513", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_place_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property place-content. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24709", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_place_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property place-items. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24743", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_place_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property place-self. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24726", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_pointer_events": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property pointer-events. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18096", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18113", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-21 10:12:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property position-anchor. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3fa7097c7f16ca569df932874074c95a3d6ec80c", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20884", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position_area": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-08-15 11:30:12", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property position-area. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "11482ce7b835b03036d0b42cdd83c599ed5e7cc8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18130", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position_try": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-09-13 00:22:54", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property position-try. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d4ebe779142a1d22b5e67d8ec21f9efe55bd4c5", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24760", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position_try_fallbacks": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-07-16 00:08:14", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property position-try-fallbacks. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "81ba3cfa916674f581c2b126e1862f2f4d3aee59", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20901", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position_try_options": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-06-05 00:05:57", + "last": "2024-07-15 16:24:53" + }, + "description": "Whether a page used the CSS property position-try-options. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "9306cb7c3ec0a35cb7ed6b6aff713982560fcd1a", + "last": "f3e4b33a6122ce63bf81ae8c30cc5ac37458864b" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/f3e4b33a6122ce63bf81ae8c30cc5ac37458864b/dom/base/use_counter_metrics.yaml#L20374", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position_try_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-31 10:35:07", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property position-try-order. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3fa58fb2faa5c85f39a5b57cd64dd8f3777c95bf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 2, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18147", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_position_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-28 00:52:04", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property position-visibility. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "7b0b5f40c7dd8879d9e730d1551a0253c976513e", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18164", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_print_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property print-color-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18181", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_quotes": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property quotes. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20918", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_r": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property r. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22924", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_resize": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property resize. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18198", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property right. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22312", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_rotate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property rotate. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20935", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_row_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property row-gap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21717", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_ruby_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property ruby-align. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18215", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_ruby_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property ruby-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18232", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_rx": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property rx. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22958", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_ry": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property ry. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22975", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scale. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20952", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_behavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-behavior. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18249", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24403", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24420", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-block-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23179", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-block-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23196", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-bottom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23213", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24437", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-inline-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23230", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-inline-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23247", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-left. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23264", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-right. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23281", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_margin_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-margin-top. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23298", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24522", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_block": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-block. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24539", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_block_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-block-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22992", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_block_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-block-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23009", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_bottom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-bottom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23026", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_inline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-inline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24556", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_inline_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-inline-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23043", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_inline_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-inline-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23060", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_left": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-left. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23077", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_right": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-right. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23094", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_padding_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-padding-top. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23111", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_snap_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-snap-align. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18266", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_snap_stop": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-snap-stop. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18283", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_snap_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-snap-type. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18300", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_timeline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-timeline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24930", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_timeline_axis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-timeline-axis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20969", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scroll_timeline_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scroll-timeline-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L20986", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scrollbar_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scrollbar-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21003", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scrollbar_gutter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scrollbar-gutter. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18317", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_scrollbar_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property scrollbar-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18334", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_shape_image_threshold": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property shape-image-threshold. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19507", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_shape_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property shape-margin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22941", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_shape_outside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property shape-outside. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21020", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_shape_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property shape-rendering. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18351", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21037", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stop_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stop-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23536", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stop_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stop-opacity. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19524", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21547", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke_dasharray": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke-dasharray. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21054", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke_dashoffset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke-dashoffset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21071", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke_linecap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke-linecap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18368", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke_linejoin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke-linejoin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18385", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke_miterlimit": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke-miterlimit. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19303", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke-opacity. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19116", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_stroke_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property stroke-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21088", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_tab_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property tab-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21105", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_table_layout": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property table-layout. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18402", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-align. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18419", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_align_last": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-align-last. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18436", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_anchor": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-anchor. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18453", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_combine_upright": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-combine-upright. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18470", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_decoration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-decoration. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24879", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_decoration_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-decoration-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23553", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_decoration_line": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-decoration-line. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18487", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_decoration_skip_ink": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-decoration-skip-ink. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18504", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_decoration_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-decoration-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18521", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_decoration_thickness": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-decoration-thickness. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21122", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_emphasis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-emphasis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24267", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_emphasis_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-emphasis-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23570", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_emphasis_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-emphasis-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18538", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_emphasis_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-emphasis-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21139", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_indent": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-indent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21156", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_justify": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-justify. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18555", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-orientation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18572", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_overflow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-overflow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21173", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_rendering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-rendering. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18589", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-shadow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21190", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-transform. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18606", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_underline_offset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-underline-offset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21207", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_underline_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-underline-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18623", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-wrap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24284", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_wrap_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-29 01:37:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-wrap-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c4c7a2ad5f56828025ee915d62aeac7796b2ca84", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18640", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_text_wrap_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-29 01:37:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property text-wrap-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c4c7a2ad5f56828025ee915d62aeac7796b2ca84", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18657", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_top": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property top. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22329", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_touch_action": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property touch-action. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18674", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transform. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21683", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transform_box": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transform-box. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18691", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transform-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21224", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transform_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transform-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18708", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transition. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24896", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transition_behavior": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-02-24 00:23:59", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transition-behavior. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "3d22ee1fa3959418b72c93409df26b515818e81b", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21241", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transition_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transition-delay. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21258", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transition_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transition-duration. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21275", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transition_property": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transition-property. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21292", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_transition_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property transition-timing-function. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21309", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_translate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property translate. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21326", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_unicode_bidi": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property unicode-bidi. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18725", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_user_find": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-02-02 09:45:45", + "last": "2024-02-13 21:02:14" + }, + "description": "Whether a page used the CSS property user-find. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "b59c93386cb9c425ac44bcf1cc0c4c7d05b67ba9", + "last": "90cdd721bc108f735b8f1f9f9715eda7e66e5e47" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/90cdd721bc108f735b8f1f9f9715eda7e66e5e47/dom/base/use_counter_metrics.yaml#L17739", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_user_select": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property user-select. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18742", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_vector_effect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property vector-effect. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18759", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_vertical_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property vertical-align. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21343", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_view_timeline": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property view-timeline. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24947", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_view_timeline_axis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property view-timeline-axis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21360", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_view_timeline_inset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property view-timeline-inset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21377", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_view_timeline_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property view-timeline-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21394", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_view_transition_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-08-22 07:21:09", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property view-transition-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "a20866136dc104b333f7c6a982a084bbe614d844", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21411", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property visibility. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18776", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_align_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-align-content. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25746", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_align_items": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-align-items. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25763", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_align_self": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-align-self. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25814", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26851", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-delay. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26511", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26409", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-duration. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26307", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_fill_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-fill-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26477", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_iteration_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-iteration-count. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26375", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_name": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-name. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26273", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_play_state": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-play-state. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26443", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_animation_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-animation-timing-function. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26341", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_appearance": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-appearance. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25423", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_backface_visibility": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-backface-visibility. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25321", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_background_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-background-clip. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24981", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_background_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-background-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24998", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_background_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-background-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25015", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_border_bottom_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-border-bottom-left-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25185", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_border_bottom_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-border-bottom-right-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25168", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_border_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-border-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26698", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_border_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-border-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26664", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_border_top_left_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-border-top-left-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25134", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_border_top_right_radius": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-border-top-right-radius. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25151", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_align": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-align. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26528", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26545", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-flex. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26562", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_ordinal_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-ordinal-group. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26613", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_orient": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-orient. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26579", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_pack": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-pack. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26596", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_shadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-shadow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25440", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_box_sizing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-box-sizing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25882", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_clip_path": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-clip-path. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25933", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_filter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-filter. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25457", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_flex": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-flex. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26732", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_flex_basis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-flex-basis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25848", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_flex_direction": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-flex-direction. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25695", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_flex_flow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-flex-flow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26715", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_flex_grow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-flex-grow. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25780", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_flex_shrink": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-flex-shrink. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25797", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_flex_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-flex-wrap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25712", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-06-26 00:15:58", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-font-feature-settings. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c7a38e12005a83a70c53661ab05f221a9e859df0", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25491", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_font_smoothing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-31 15:14:05", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-font-smoothing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "008aa49ff51ace0ff2edeb39e5ac3fe323aff2c8", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 1, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25525", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_justify_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-justify-content. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25729", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_line_clamp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-line-clamp. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18793", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26766", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_clip": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-clip. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26001", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_composite": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-composite. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26052", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26069", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26018", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26783", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_position_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-position-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25967", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_position_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-position-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25984", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-repeat. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25950", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_mask_size": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-mask-size. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26035", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_order": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-order. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25831", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_perspective": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-perspective. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25253", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_perspective_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-perspective-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25287", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_text_fill_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-text-fill-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23587", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_text_security": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-text-security. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18810", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_text_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-text-size-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25576", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_text_stroke": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-text-stroke. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24318", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_text_stroke_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-text-stroke-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L23604", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_text_stroke_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-text-stroke-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21428", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transform": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transform. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25219", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transform_origin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transform-origin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25389", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transform_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transform-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25355", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transition": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transition. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26817", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transition_delay": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transition-delay. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26239", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transition_duration": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transition-duration. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26137", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transition_property": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transition-property. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26205", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_transition_timing_function": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-transition-timing-function. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26171", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_webkit_user_select": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -webkit-user-select. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26103", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_white_space": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property white-space. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L24301", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_white_space_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-29 01:37:51", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property white-space-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "c4c7a2ad5f56828025ee915d62aeac7796b2ca84", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18827", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22601", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_will_change": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property will-change. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21445", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_word_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property word-break. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18844", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_word_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property word-spacing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21462", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_word_wrap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property word-wrap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L25593", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_writing_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property writing-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18861", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22040", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_x_lang": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -x-lang. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L21479", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_x_span": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -x-span. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L19167", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_x_text_scale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property -x-text-scale. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18878", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L22057", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_z_index": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property z-index. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18895", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_css_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the CSS property zoom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L18912", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_max_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property max-zoom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28347", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_min_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property min-zoom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28296", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property orientation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28330", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_orphans": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property orphans. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26936", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_speak": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property speak. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26885", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_text_size_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property text-size-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26902", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_user_zoom": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property user-zoom. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28279", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_app_region": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-app-region. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28364", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-after. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27922", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_after_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-after-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28160", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_after_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-after-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28211", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_after_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-after-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28177", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-before. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27888", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_before_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-before-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27718", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_before_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-before-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27803", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_before_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-before-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27735", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27905", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_end_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-end-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28092", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_end_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-end-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28194", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_end_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-end-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28109", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_horizontal_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-horizontal-spacing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27429", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27939", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_start_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-start-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28126", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_start_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-start-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28228", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_start_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-start-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28143", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_border_vertical_spacing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-border-vertical-spacing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27378", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_box_decoration_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-box-decoration-break. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28313", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_box_reflect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-box-reflect. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27089", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_break_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-break-after. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27854", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_break_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-break-before. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27463", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_break_inside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-break-inside. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27038", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-count. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28466", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_gap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-gap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28415", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_rule": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-rule. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28381", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_rule_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-rule-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28568", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_rule_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-rule-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28534", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_rule_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-rule-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28449", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_span": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-span. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28398", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_column_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-column-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28500", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_columns": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-columns. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28551", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_font_feature_settings": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-09-12 09:37:58" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-font-feature-settings. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "ab8043ccefe85c30ef78b97193918934d6aa93d1" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/ab8043ccefe85c30ef78b97193918934d6aa93d1/dom/base/use_counter_metrics.yaml#L26375", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_font_size_delta": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-font-size-delta. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28007", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_font_smoothing": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-06-05 10:10:05" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-font-smoothing. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/fa86401b80f19afb6ed9bfca127ecc5e3a6f0cdc/dom/base/use_counter_metrics.yaml#L26256", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_highlight": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-highlight. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27225", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_hyphenate_character": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-hyphenate-character. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27208", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_line_break": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-line-break. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27140", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_locale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-locale. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27395", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_logical_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-logical-height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27973", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_logical_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-logical-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28024", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-after. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27004", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_after_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-after-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27701", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-before. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26987", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_before_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-before-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27786", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_bottom_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-bottom-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27820", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27871", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27072", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27021", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_margin_top_collapse": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-margin-top-collapse. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27310", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_box_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-box-image. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27123", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_box_image_outset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-box-image-outset. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27650", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_box_image_repeat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-box-image-repeat. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27684", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_box_image_slice": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-box-image-slice. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27667", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_box_image_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-box-image-source. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27633", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_box_image_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-box-image-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27616", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_repeat_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-repeat-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28245", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_mask_repeat_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-mask-repeat-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28262", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_max_logical_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-max-logical-height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28075", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_max_logical_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-max-logical-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28041", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_min_logical_height": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-min-logical-height. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28058", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_min_logical_width": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-min-logical-width. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27956", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_opacity": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-opacity. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28483", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_padding_after": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-padding-after. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27412", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_padding_before": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-padding-before. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27344", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_padding_end": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-padding-end. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27259", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_padding_start": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-padding-start. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27055", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_perspective_origin_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-perspective-origin-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27752", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_perspective_origin_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-perspective-origin-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27769", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_print_color_adjust": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-print-color-adjust. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27106", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_rtl_ordering": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-rtl-ordering. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27327", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_ruby_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-ruby-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27837", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_shape_image_threshold": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-shape-image-threshold. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28517", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_shape_margin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-shape-margin. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28585", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_shape_outside": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-shape-outside. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L28432", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_tap_highlight_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-tap-highlight-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26868", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_text_combine": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-text-combine. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27565", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_text_decorations_in_effect": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-text-decorations-in-effect. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27361", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_text_emphasis": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-text-emphasis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27599", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_text_emphasis_color": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-text-emphasis-color. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27293", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_text_emphasis_position": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-text-emphasis-position. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27514", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_text_emphasis_style": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-text-emphasis-style. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27582", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_text_orientation": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-text-orientation. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27548", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_transform_origin_x": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-transform-origin-x. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27480", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_transform_origin_y": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-transform-origin-y. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27497", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_transform_origin_z": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-transform-origin-z. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27990", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_user_drag": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-user-drag. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26919", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_user_modify": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-user-modify. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26970", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_webkit_writing_mode": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property -webkit-writing-mode. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L27174", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_css_page_widows": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used the (unknown, counted) CSS property widows. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L26953", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_dedicated_workers_destroyed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1202706", + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1202706" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "A count of how many `Dedicated`-kind workers were destroyed. Used to turn dedicated worker use counters' counts into rates. Excludes chrome workers.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L56", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_ambient_light_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used AmbientLightEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16156", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_app_cache": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used AppCache. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16037", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_components": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used Components. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15816", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_create_image_bitmap_canvas_rendering_context2_d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used CreateImageBitmapCanvasRenderingContext2D. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16258", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_deprecated_testing_attribute": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DeprecatedTestingAttribute. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16241", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_deprecated_testing_interface": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DeprecatedTestingInterface. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16207", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_deprecated_testing_method": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DeprecatedTestingMethod. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16224", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_document_release_capture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DocumentReleaseCapture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16530", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domattr_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMAttrModified. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15782", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domcharacter_data_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMCharacterDataModified. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15799", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domnode_inserted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMNodeInserted. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15714", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domnode_inserted_into_document": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMNodeInsertedIntoDocument. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15765", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domnode_removed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMNodeRemoved. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15731", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domnode_removed_from_document": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMNodeRemovedFromDocument. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15748", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domquad_bounds_attr": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMQuadBoundsAttr. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16190", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_domsubtree_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DOMSubtreeModified. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15697", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_draw_window_canvas_rendering_context2_d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used DrawWindowCanvasRenderingContext2D. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16275", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_element_release_capture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used ElementReleaseCapture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16513", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_element_set_capture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used ElementSetCapture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16496", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_external__add_search_provider": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used External_AddSearchProvider. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16343", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_form_submission_untrusted_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used FormSubmissionUntrustedEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16479", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_idbobject_store_create_index_locale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-10 00:27:47", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used IDBObjectStoreCreateIndexLocale. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ebace37fa9407666a33cfed440f5024d40c8dbec", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16615", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_idbopen_dboptions__storage_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used IDBOpenDBOptions_StorageType. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16173", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_image_bitmap_rendering_context__transfer_image_bitmap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used ImageBitmapRenderingContext_TransferImageBitmap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16071", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_import_xulinto_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used ImportXULIntoContent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15935", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_init_mouse_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used InitMouseEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16394", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_init_nsmouse_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used InitNSMouseEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16411", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_install_trigger_deprecated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used InstallTriggerDeprecated. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15952", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_install_trigger_install_deprecated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used InstallTriggerInstallDeprecated. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15969", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_is_external_ctap2_security_key_supported": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-02-09 20:31:28" + }, + "description": "Whether a document used IsExternalCTAP2SecurityKeySupported. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "09681126c79cd415e41a44e978f30d61c08de7e8" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/09681126c79cd415e41a44e978f30d61c08de7e8/dom/base/use_counter_metrics.yaml#L15680", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_lenient_setter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used LenientSetter. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16054", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_lenient_this": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used LenientThis. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15850", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_math_ml__deprecated_math_space_value2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MathML_DeprecatedMathSpaceValue2. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16428", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_math_ml__deprecated_math_variant": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MathML_DeprecatedMathVariant. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16445", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_math_ml__deprecated_stixgeneral_operator_stretching": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MathML_DeprecatedStixgeneralOperatorStretching. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16462", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_motion_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MotionEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16105", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_mouse_event__moz_pressure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MouseEvent_MozPressure. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16360", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_moz_input_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MozInputSource. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16377", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_moz_request_full_screen_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MozRequestFullScreenDeprecatedPrefix. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16292", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_mozfullscreenchange_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MozfullscreenchangeDeprecatedPrefix. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16309", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_mozfullscreenerror_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used MozfullscreenerrorDeprecatedPrefix. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16326", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_mutation_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-05-29 18:55:24" + }, + "description": "Whether a document used MutationEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "032b902a899de0346cd49f6dcdeab3d8d9391c82" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/032b902a899de0346cd49f6dcdeab3d8d9391c82/dom/base/use_counter_metrics.yaml#L14694", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_navigator_get_user_media": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used NavigatorGetUserMedia. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15986", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_node_iterator_detach": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used NodeIteratorDetach. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15833", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_offscreen_canvas_to_blob": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used OffscreenCanvasToBlob. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16547", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_orientation_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used OrientationEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16122", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_proximity_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used ProximityEvent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16139", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_rtcpeer_connection_get_streams": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used RTCPeerConnectionGetStreams. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16020", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_size_to_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-09-13 00:22:54" + }, + "description": "Whether a document used SizeToContent. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "3d4ebe779142a1d22b5e67d8ec21f9efe55bd4c5" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3d4ebe779142a1d22b5e67d8ec21f9efe55bd4c5/dom/base/use_counter_metrics.yaml#L16054", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_svgdeselect_all": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used SVGDeselectAll. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16564", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_svgfarthest_viewport_element": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used SVGFarthestViewportElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16598", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_svgnearest_viewport_element": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used SVGNearestViewportElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16581", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_sync_xmlhttp_request_deprecated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used SyncXMLHttpRequestDeprecated. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15901", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_use_of_capture_events": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used UseOfCaptureEvents. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15867", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_use_of_release_events": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used UseOfReleaseEvents. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15884", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_webrtc_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used WebrtcDeprecatedPrefix. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16003", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_window__cc_ontrollers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used Window_Cc_ontrollers. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15918", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_doc_window_content_untrusted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document used WindowContentUntrusted. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L16088", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_ambient_light_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used AmbientLightEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15219", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_app_cache": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used AppCache. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15100", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_components": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used Components. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14879", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_create_image_bitmap_canvas_rendering_context2_d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used CreateImageBitmapCanvasRenderingContext2D. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15321", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_deprecated_testing_attribute": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DeprecatedTestingAttribute. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15304", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_deprecated_testing_interface": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DeprecatedTestingInterface. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15270", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_deprecated_testing_method": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DeprecatedTestingMethod. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15287", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_document_release_capture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DocumentReleaseCapture. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15593", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domattr_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMAttrModified. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14845", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domcharacter_data_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMCharacterDataModified. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14862", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domnode_inserted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMNodeInserted. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14777", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domnode_inserted_into_document": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMNodeInsertedIntoDocument. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14828", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domnode_removed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMNodeRemoved. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14794", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domnode_removed_from_document": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMNodeRemovedFromDocument. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14811", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domquad_bounds_attr": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMQuadBoundsAttr. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15253", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_domsubtree_modified": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-05-30 00:14:36", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DOMSubtreeModified. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "2fb32155fc4553fbc4c57ea6464e0c21aa520e51", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14760", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_draw_window_canvas_rendering_context2_d": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used DrawWindowCanvasRenderingContext2D. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15338", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_element_release_capture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used ElementReleaseCapture. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15576", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_element_set_capture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used ElementSetCapture. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15559", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_external__add_search_provider": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used External_AddSearchProvider. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15406", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_form_submission_untrusted_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used FormSubmissionUntrustedEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15542", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_idbobject_store_create_index_locale": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-01-10 00:27:47", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used IDBObjectStoreCreateIndexLocale. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "ebace37fa9407666a33cfed440f5024d40c8dbec", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15678", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_idbopen_dboptions__storage_type": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used IDBOpenDBOptions_StorageType. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15236", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_image_bitmap_rendering_context__transfer_image_bitmap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used ImageBitmapRenderingContext_TransferImageBitmap. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15134", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_import_xulinto_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used ImportXULIntoContent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14998", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_init_mouse_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used InitMouseEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15457", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_init_nsmouse_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used InitNSMouseEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15474", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_install_trigger_deprecated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used InstallTriggerDeprecated. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15015", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_install_trigger_install_deprecated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used InstallTriggerInstallDeprecated. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15032", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_is_external_ctap2_security_key_supported": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-02-09 20:31:28" + }, + "description": "Whether a page used IsExternalCTAP2SecurityKeySupported. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "09681126c79cd415e41a44e978f30d61c08de7e8" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/09681126c79cd415e41a44e978f30d61c08de7e8/dom/base/use_counter_metrics.yaml#L14811", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_lenient_setter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used LenientSetter. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15117", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_lenient_this": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used LenientThis. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14913", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_math_ml__deprecated_math_space_value2": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MathML_DeprecatedMathSpaceValue2. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15491", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_math_ml__deprecated_math_variant": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MathML_DeprecatedMathVariant. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15508", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_math_ml__deprecated_stixgeneral_operator_stretching": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MathML_DeprecatedStixgeneralOperatorStretching. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15525", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_motion_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MotionEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15168", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_mouse_event__moz_pressure": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MouseEvent_MozPressure. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15423", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_moz_input_source": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MozInputSource. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15440", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_moz_request_full_screen_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MozRequestFullScreenDeprecatedPrefix. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15355", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_mozfullscreenchange_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MozfullscreenchangeDeprecatedPrefix. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15372", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_mozfullscreenerror_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used MozfullscreenerrorDeprecatedPrefix. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15389", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_mutation_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-05-29 18:55:24" + }, + "description": "Whether a page used MutationEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "032b902a899de0346cd49f6dcdeab3d8d9391c82" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/032b902a899de0346cd49f6dcdeab3d8d9391c82/dom/base/use_counter_metrics.yaml#L13842", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_navigator_get_user_media": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used NavigatorGetUserMedia. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15049", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_node_iterator_detach": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used NodeIteratorDetach. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14896", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_offscreen_canvas_to_blob": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used OffscreenCanvasToBlob. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15610", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_orientation_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used OrientationEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15185", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_proximity_event": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used ProximityEvent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15202", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_rtcpeer_connection_get_streams": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used RTCPeerConnectionGetStreams. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15083", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_size_to_content": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2024-09-13 00:22:54" + }, + "description": "Whether a page used SizeToContent. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "3d4ebe779142a1d22b5e67d8ec21f9efe55bd4c5" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/3d4ebe779142a1d22b5e67d8ec21f9efe55bd4c5/dom/base/use_counter_metrics.yaml#L15100", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_svgdeselect_all": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used SVGDeselectAll. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15627", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_svgfarthest_viewport_element": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used SVGFarthestViewportElement. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15661", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_svgnearest_viewport_element": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used SVGNearestViewportElement. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15644", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_sync_xmlhttp_request_deprecated": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used SyncXMLHttpRequestDeprecated. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14964", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_use_of_capture_events": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used UseOfCaptureEvents. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14930", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_use_of_release_events": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used UseOfReleaseEvents. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14947", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_webrtc_deprecated_prefix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used WebrtcDeprecatedPrefix. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15066", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_window__cc_ontrollers": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used Window_Cc_ontrollers. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L14981", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_deprecated_ops_page_window_content_untrusted": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a page used WindowContentUntrusted. Compare against `use.counter.top_level_content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L15151", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_clipboard_read": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Clipboard.read. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8615", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_clipboard_readtext": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Clipboard.readText. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8632", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_clipboard_write": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Clipboard.write. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8649", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_components_shim_resolved": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2024-12-21 00:19:01", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document resolves the components shim.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "f2faff6c4866c2ca953e6827ec66891807a91f63", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L12015", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_assert": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.assert. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6762", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_clear": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.clear. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6779", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_count": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.count. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6796", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_countreset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.countReset. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6813", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_debug": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.debug. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6830", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_dir": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.dir. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6949", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_dirxml": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.dirxml. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6966", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_error": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.error. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6847", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_exception": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.exception. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7085", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_group": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.group. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6983", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_groupcollapsed": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.groupCollapsed. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7000", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_groupend": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.groupEnd. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7017", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_info": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.info. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6864", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_log": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.log. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6881", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_profile": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.profile. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7119", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_profileend": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.profileEnd. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7136", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_table": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.table. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6898", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_time": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.time. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7034", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_timeend": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.timeEnd. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7068", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_timelog": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.timeLog. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7051", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_timestamp": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.timeStamp. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7102", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_trace": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.trace. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6915", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_console_warn": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called console.warn. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6932", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_cookiestore_delete": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called CookieStore.delete. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7204", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_cookiestore_get": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called CookieStore.get. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7153", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_cookiestore_getall": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called CookieStore.getAll. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7170", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_cookiestore_set": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2025-01-23 00:16:22", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called CookieStore.set. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "d88cfbf00de47dd7eac889722d09648dbb16dcbe", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7187", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_customelementregistry_define": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called CustomElementRegistry.define. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7272", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_customized_builtin": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document registers a customized built-in element. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7289", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_addelement": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called DataTransfer.addElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6201", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozcleardataat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called DataTransfer.mozClearDataAt. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6303", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozcursor_getter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document got DataTransfer.mozCursor. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6252", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozcursor_setter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document set DataTransfer.mozCursor. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6269", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozgetdataat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called DataTransfer.mozGetDataAt. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6337", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozitemcount_getter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document got DataTransfer.mozItemCount. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6218", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozitemcount_setter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document set DataTransfer.mozItemCount. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6235", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozsetdataat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called DataTransfer.mozSetDataAt. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6320", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozsourcenode_getter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document got DataTransfer.mozSourceNode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6388", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozsourcenode_setter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document set DataTransfer.mozSourceNode. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6405", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_moztypesat": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called DataTransfer.mozTypesAt. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6286", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozusercancelled_getter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document got DataTransfer.mozUserCancelled. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6354", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransfer_mozusercancelled_setter": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document set DataTransfer.mozUserCancelled. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L6371", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_datatransferitem_webkitgetasentry": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called DataTransferItem.webkitGetAsEntry. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8666", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_caretrangefrompoint": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.caretRangeFromPoint. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8683", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_exec_command_content_read_only": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls execCommand with contentReadOnly. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11148", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_exitpictureinpicture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.exitPictureInPicture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8700", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_featurepolicy": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.featurePolicy. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8717", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_mozsetimageelement": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called Document.mozSetImageElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7850", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onbeforecopy": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onbeforecopy. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8734", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onbeforecut": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onbeforecut. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8751", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onbeforepaste": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onbeforepaste. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8768", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_oncancel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.oncancel. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8785", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onfreeze": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onfreeze. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8802", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onmousewheel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onmousewheel. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8819", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onresume": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onresume. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8836", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onsearch": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onsearch. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8853", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onwebkitfullscreenchange": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onwebkitfullscreenchange. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8870", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_onwebkitfullscreenerror": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.onwebkitfullscreenerror. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8887", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_open": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls document.open in a way that creates a new Window object. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7221", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_pictureinpictureelement": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.pictureInPictureElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8904", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_pictureinpictureenabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.pictureInPictureEnabled. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8921", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_query_command_state_or_value_content_read_only": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls queryCommandState or queryCommandValue with contentReadOnly. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11199", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_query_command_state_or_value_insert_br_on_return": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls queryCommandState or queryCommandValue with insertBrOnReturn. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11216", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_query_command_supported_or_enabled_content_read_only": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls queryCommandSupported or queryCommandEnabled with contentReadOnly. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11233", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_query_command_supported_or_enabled_insert_br_on_return": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls queryCommandSupported or queryCommandEnabled with insertBrOnReturn. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11250", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_registerelement": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.registerElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8938", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_wasdiscarded": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.wasDiscarded. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8955", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkitcancelfullscreen": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitCancelFullScreen. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8972", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkitcurrentfullscreenelement": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitCurrentFullScreenElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L8989", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkitexitfullscreen": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitExitFullscreen. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9006", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkitfullscreenelement": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitFullscreenElement. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9023", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkitfullscreenenabled": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitFullscreenEnabled. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9040", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkithidden": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitHidden. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9057", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkitisfullscreen": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitIsFullScreen. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9074", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_webkitvisibilitystate": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.webkitVisibilityState. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9091", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_xmlencoding": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.xmlEncoding. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9108", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_xmlstandalone": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.xmlStandalone. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9125", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_document_xmlversion": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Document.xmlVersion. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9142", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_domparser_parsefromstring": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called DOMParser.parseFromString. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11165", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_attachshadow": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called Element.attachShadow. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7340", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_computedstylemap": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Element.computedStyleMap. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9159", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_onmousewheel": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Element.onmousewheel. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9176", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_releasecapture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called Element.releaseCapture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7374", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_releasepointercapture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called Element.releasePointerCapture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7408", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_scrollintoviewifneeded": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-02 00:17:50" + }, + "description": "Whether a document called called Element.scrollIntoViewIfNeeded. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "b2693d317fbcf5ff17e438a2c2833fda0b05fdf4" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/b2693d317fbcf5ff17e438a2c2833fda0b05fdf4/dom/base/use_counter_metrics.yaml#L9193", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_setcapture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called Element.setCapture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7357", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_sethtml": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called Element.setHTML. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11590", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_element_setpointercapture": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document called called Element.setPointerCapture. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7391", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_enumerate_devices_insec": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls MediaDevices.enumerateDevices from an insecure context. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7442", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_enumerate_devices_unfocused": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document calls MediaDevices.enumerateDevices from a unfocused document. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L7459", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_blend": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feBlend SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11267", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_color_matrix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feColorMatrix SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11284", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_component_transfer": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feComponentTransfer SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11301", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_composite": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feComposite SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11318", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_convolve_matrix": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feConvolveMatrix SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11335", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_diffuse_lighting": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feDiffuseLighting SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11352", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_displacement_map": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feDisplacementMap SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11369", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_flood": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feFlood SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11386", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_gaussian_blur": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feGaussianBlur SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11403", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_image": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feImage SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11420", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_merge": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feMerge SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11437", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_morphology": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feMorphology SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11454", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_offset": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feOffset SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11471", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_specular_lighting": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feSpecularLighting SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11488", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_tile": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feTile SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11505", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_fe_turbulence": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document uses the feTurbulence SVG filter.. Compare against `use.counter.content_documents_destroyed` to calculate the rate.\n", + "disabled": false, + "expires": "never", + "gecko_datapoint": "", + "git-commits": { + "first": "e5732140e2cb0fc1ddfa19ddb5eea9c1b624fccf", + "last": "e85232b4b28ecc970240d39203e417d1c320623c" + }, + "lifetime": "ping", + "metadata": { + "tags": [ + "Core :: DOM: Core & HTML" + ] + }, + "no_lint": [], + "notification_emails": [ + "dom-core@mozilla.com", + "emilio@mozilla.com" + ], + "reflog-index": { + "first": 0, + "last": 0 + }, + "send_in_pings": [ + "use-counters" + ], + "source_url": "https://github.com/mozilla/gecko-dev/blob/e85232b4b28ecc970240d39203e417d1c320623c/dom/base/use_counter_metrics.yaml#L11522", + "type": "counter", + "version": 0, + "repos": [ + "gecko" + ] + }, + "use_counter_doc_filtered_cross_origin_iframe": { + "bugs": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "data_reviews": [ + "https://bugzilla.mozilla.org/show_bug.cgi?id=1852098" + ], + "dates": { + "first": "2023-11-22 17:56:17", + "last": "2025-02-04 14:27:22" + }, + "description": "Whether a document cross-origin