tor-browser

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

metrics.yaml (4012B)


      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  - 'Firefox :: Shell Integration'
     12 
     13 web_app:
     14  install:
     15    type: event
     16    description: >
     17      The user installed a new web app.
     18    bugs:
     19      - https://bugzilla.mozilla.org/1966476
     20    data_reviews:
     21      - https://phabricator.services.mozilla.com/D254733
     22    notification_emails:
     23      - nrishel@mozilla.com
     24    expires: never
     25 
     26  uninstall:
     27    type: event
     28    description: >
     29      The user uninstalled a web app using the page action.
     30    bugs:
     31      - https://bugzilla.mozilla.org/1966476
     32    data_reviews:
     33      - https://phabricator.services.mozilla.com/D254733
     34    notification_emails:
     35      - nrishel@mozilla.com
     36    expires: never
     37 
     38  move_to_taskbar:
     39    type: event
     40    description: >
     41      The user moved a tab onto the taskbar.
     42    bugs:
     43      - https://bugzilla.mozilla.org/1966476
     44    data_reviews:
     45      - https://phabricator.services.mozilla.com/D254733
     46    notification_emails:
     47      - nrishel@mozilla.com
     48    expires: never
     49 
     50  eject:
     51    type: event
     52    description: >
     53      The user moved a tab from the taskbar into the browser.
     54    bugs:
     55      - https://bugzilla.mozilla.org/1966476
     56    data_reviews:
     57      - https://phabricator.services.mozilla.com/D254733
     58    notification_emails:
     59      - nrishel@mozilla.com
     60    expires: never
     61 
     62  activate:
     63    type: event
     64    description: >
     65      A new taskbar tab window was opened.
     66    bugs:
     67      - https://bugzilla.mozilla.org/1966476
     68    data_reviews:
     69      - https://phabricator.services.mozilla.com/D254733
     70    notification_emails:
     71      - nrishel@mozilla.com
     72    expires: never
     73 
     74  pin:
     75    type: event
     76    description: >
     77      The user pinned the web app to their taskbar using Firefox.
     78    extra_keys:
     79      result:
     80        description: Error code from the pinning process.
     81        type: string
     82    bugs:
     83      - https://bugzilla.mozilla.org/1966476
     84    data_reviews:
     85      - https://phabricator.services.mozilla.com/D254733
     86    notification_emails:
     87      - nrishel@mozilla.com
     88    expires: never
     89 
     90  unpin:
     91    type: event
     92    description: >
     93      The user unpinned the web app from their taskbar using Firefox.
     94    extra_keys:
     95      removal_result:
     96        description: >
     97          Error message from the cleanup process, i.e. deleting the shortcut
     98          and icon, or 'Success' if it succeeds.
     99        type: string
    100      result:
    101        description: >
    102          Error message from the unpinning process, or 'Success' if it succeeds.
    103        type: string
    104    bugs:
    105      - https://bugzilla.mozilla.org/1966476
    106      - https://bugzilla.mozilla.org/1990892
    107    data_reviews:
    108      - https://phabricator.services.mozilla.com/D254733
    109      - https://phabricator.services.mozilla.com/D266221
    110    notification_emails:
    111      - nrishel@mozilla.com
    112    expires: never
    113 
    114  usage_time:
    115    type: timing_distribution
    116    time_unit: second
    117    description: >
    118      Time that the user has the Taskbar Tab focused.
    119    bugs:
    120      - https://bugzilla.mozilla.org/1966476
    121    data_reviews:
    122      - https://phabricator.services.mozilla.com/D254733
    123    notification_emails:
    124      - nrishel@mozilla.com
    125    expires: never
    126 
    127  installed_web_app_count:
    128    type: quantity
    129    unit: web apps
    130    description: >
    131      Count of currently installed web apps. Note that Firefox does not detect
    132      unpinning or deleting the shortcut outside of Firefox, so this could
    133      include web apps that the user has no way to access; see bug 1990342.
    134    bugs:
    135      - bugzilla.mozilla.org/show_bug.cgi?id=1986557
    136    data_reviews:
    137      - https://phabricator.services.mozilla.com/D265682
    138    notification_emails:
    139      - nrishel@mozilla.com
    140    expires: never