tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

metrics.yaml (3297B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 # Adding a new metric? We have docs for that!
      5 # https://firefox-source-docs.mozilla.org/toolkit/components/glean/user/new_definitions_file.html
      6 
      7 ---
      8 $schema: moz://mozilla.org/schemas/glean/metrics/2-0-0
      9 $tags:
     10  - 'Core :: Security: PSM'
     11 
     12 cert_verifier:
     13  crlite_status:
     14    type: labeled_counter
     15    description: >
     16      Counts the number of times different CRLite statuses were returned.
     17    data_sensitivity:
     18      - technical
     19    bugs:
     20      - https://bugzilla.mozilla.org/show_bug.cgi?id=1886042
     21    data_reviews:
     22      - https://bugzilla.mozilla.org/show_bug.cgi?id=1886042
     23    notification_emails:
     24      - jschanck@mozilla.com
     25    expires: never
     26    labels:
     27      - no_filter
     28      - not_covered
     29      - not_enrolled
     30      - not_revoked
     31      - revoked_in_filter
     32      - revoked_in_stash
     33 
     34  cert_revocation_mechanisms:
     35    type: labeled_counter
     36    description: >
     37      Which revocation checking mechanisms were used in a TLS handshake?
     38    data_sensitivity:
     39      - technical
     40    bugs:
     41      - https://bugzilla.mozilla.org/show_bug.cgi?id=1794450
     42      - https://bugzilla.mozilla.org/show_bug.cgi?id=1908549
     43    data_reviews:
     44      - https://bugzilla.mozilla.org/show_bug.cgi?id=1794450
     45      - https://bugzilla.mozilla.org/show_bug.cgi?id=1817101
     46      - https://bugzilla.mozilla.org/show_bug.cgi?id=1846897
     47      - https://bugzilla.mozilla.org/show_bug.cgi?id=1876442
     48      - https://bugzilla.mozilla.org/show_bug.cgi?id=1908549
     49    notification_emails:
     50      - jschanck@mozilla.com
     51    expires: never
     52    labels:
     53      - CRLite
     54      - StapledOCSP
     55      - CachedOCSP
     56      - OCSP
     57      - OneCRL
     58      - ShortValidity
     59 
     60 cert_signature_cache:
     61  hits:
     62    type: rate
     63    description: >
     64      How often a certificate signature to be verified is in the cache already.
     65    bugs:
     66      - https://bugzilla.mozilla.org/show_bug.cgi?id=1918279
     67    data_reviews:
     68      - https://bugzilla.mozilla.org/show_bug.cgi?id=1918279
     69    notification_emails:
     70      - dkeeler@mozilla.com
     71    expires: never
     72    denominator_metric: cert_signature_cache.total
     73  total:
     74    type: counter
     75    description: >
     76      How many certificate signature verifications are performed.
     77    bugs:
     78      - https://bugzilla.mozilla.org/show_bug.cgi?id=1918279
     79    data_reviews:
     80      - https://bugzilla.mozilla.org/show_bug.cgi?id=1918279
     81    notification_emails:
     82      - dkeeler@mozilla.com
     83    expires: never
     84 
     85 cert_trust_cache:
     86  hits:
     87    type: rate
     88    description: >
     89      How often a certificate's trust is in the cache already.
     90    bugs:
     91      - https://bugzilla.mozilla.org/show_bug.cgi?id=1922074
     92    data_reviews:
     93      - https://bugzilla.mozilla.org/show_bug.cgi?id=1922074
     94    notification_emails:
     95      - dkeeler@mozilla.com
     96    expires: never
     97    denominator_metric: cert_trust_cache.total
     98  total:
     99    type: counter
    100    description: >
    101      How many certificate trust lookups are performed.
    102    bugs:
    103      - https://bugzilla.mozilla.org/show_bug.cgi?id=1922074
    104    data_reviews:
    105      - https://bugzilla.mozilla.org/show_bug.cgi?id=1922074
    106    notification_emails:
    107      - dkeeler@mozilla.com
    108    expires: never