tor-browser

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

metrics.yaml (2698B)


      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 
      5 # Adding a new metric? We have docs for that!
      6 # https://firefox-source-docs.mozilla.org/toolkit/components/glean/user/new_definitions_file.html
      7 
      8 ---
      9 $schema: moz://mozilla.org/schemas/glean/metrics/2-0-0
     10 $tags:
     11  - 'Core :: SQLite and Embedded Database Bindings'
     12 
     13 sqlite_store:
     14  open:
     15    type: dual_labeled_counter
     16    description: >
     17      The result of attempting to open a sqlite file.
     18 
     19      This metric was generated to correspond to the Legacy Telemetry
     20      categorical histogram SQLITE_STORE_OPEN.
     21 
     22      Initially this metric also recorded the "success" category, but due
     23      to the high volume of recording those, only failure categories are
     24      now tracked.
     25    dual_labels:
     26      key:
     27        description: No static keys unfortunately.
     28      category:
     29        labels:
     30          - failure
     31          - access
     32          - diskio
     33          - corrupt
     34          - busy
     35          - misuse
     36          - diskspace
     37        description: Labels of the keyed categorical legacy telemetry histogram
     38          SQLITE_STORE_OPEN.
     39    bugs:
     40      - https://bugzilla.mozilla.org/show_bug.cgi?id=1635489
     41      - https://bugzilla.mozilla.org/show_bug.cgi?id=1977614
     42    data_reviews:
     43      - https://bugzilla.mozilla.org/show_bug.cgi?id=1635489
     44    notification_emails:
     45      - dtownsend@mozilla.com
     46      - mbonardo@mozilla.com
     47    expires: never
     48    telemetry_mirror: SQLITE_STORE_OPEN
     49 
     50  query:
     51    type: dual_labeled_counter
     52    description: >
     53      The result of attempting to query a sqlite file.
     54 
     55      This metric was generated to correspond to the Legacy Telemetry
     56      categorical histogram SQLITE_STORE_QUERY.
     57 
     58      Initially this metric also recorded the "success" category, but due
     59      to the high volume of recording those, only failure categories are
     60      now tracked.
     61    dual_labels:
     62      key:
     63        description: No static keys unfortunately.
     64      category:
     65        labels:
     66          - failure
     67          - access
     68          - diskio
     69          - corrupt
     70          - busy
     71          - misuse
     72          - diskspace
     73        description: Labels of the keyed categorical legacy telemetry histogram
     74          SQLITE_STORE_QUERY.
     75    bugs:
     76      - https://bugzilla.mozilla.org/show_bug.cgi?id=1635489
     77      - https://bugzilla.mozilla.org/show_bug.cgi?id=1977614
     78    data_reviews:
     79      - https://bugzilla.mozilla.org/show_bug.cgi?id=1635489
     80    notification_emails:
     81      - dtownsend@mozilla.com
     82      - mbonardo@mozilla.com
     83    expires: never
     84    telemetry_mirror: SQLITE_STORE_QUERY