metrics.yaml (4704B)
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 :: DOM: Security' 12 13 containers: 14 containers_enabled: 15 type: event 16 description: > 17 Recorded when the container feature is enabled or disabled (pref privacy.userContext.enabled). 18 bugs: 19 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 20 data_reviews: 21 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 22 notification_emails: 23 - amarchesini@mozilla.com 24 expires: never 25 data_sensitivity: 26 - interaction 27 extra_keys: 28 enabled: 29 description: | 30 True if the feature is enabled. 31 type: boolean 32 33 container_profile_loaded: 34 type: event 35 description: > 36 Recorded when the user profile is loaded and container definitions are read. 37 bugs: 38 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 39 data_reviews: 40 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 41 notification_emails: 42 - amarchesini@mozilla.com 43 expires: never 44 data_sensitivity: 45 - interaction 46 extra_keys: 47 containers: 48 description: | 49 The number of container configurations read from the user profile. 50 type: quantity 51 52 container_tab_opened: 53 type: event 54 description: > 55 Recorded when a container tab is opened. 56 bugs: 57 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 58 data_reviews: 59 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 60 notification_emails: 61 - amarchesini@mozilla.com 62 expires: never 63 data_sensitivity: 64 - interaction 65 extra_keys: 66 container_id: 67 description: The ID of the container. 68 type: string 69 70 container_tab_closed: 71 type: event 72 description: > 73 Recorded when a container tab is closed. 74 bugs: 75 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 76 data_reviews: 77 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 78 notification_emails: 79 - amarchesini@mozilla.com 80 expires: never 81 data_sensitivity: 82 - interaction 83 extra_keys: 84 container_id: 85 description: The ID of the closed container. 86 type: string 87 88 tab_assigned_container: 89 type: event 90 description: > 91 Recorded when a tab is moved into a container. 92 bugs: 93 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 94 data_reviews: 95 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 96 notification_emails: 97 - amarchesini@mozilla.com 98 expires: never 99 data_sensitivity: 100 - interaction 101 extra_keys: 102 from_container_id: 103 description: The source container id, or "0" if the tab wasn't in a container 104 type: string 105 to_container_id: 106 description: The destination container id, or "0" if the tab wasn't in a container 107 type: string 108 109 container_created: 110 type: event 111 description: > 112 Recorded when a user creates a new container. 113 bugs: 114 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 115 data_reviews: 116 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 117 notification_emails: 118 - amarchesini@mozilla.com 119 expires: never 120 data_sensitivity: 121 - interaction 122 extra_keys: 123 container_id: 124 description: The ID of the newly created container. 125 type: string 126 127 container_modified: 128 type: event 129 description: > 130 Recorded when a user edits a container (e.g. changes name, icon, or color). 131 bugs: 132 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 133 data_reviews: 134 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 135 notification_emails: 136 - amarchesini@mozilla.com 137 expires: never 138 data_sensitivity: 139 - interaction 140 extra_keys: 141 container_id: 142 description: The ID of the modified container. 143 type: string 144 145 container_deleted: 146 type: event 147 description: > 148 Recorded when a user deletes a container. 149 bugs: 150 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 151 data_reviews: 152 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975403 153 notification_emails: 154 - containers-telemetry@mozilla.com 155 expires: never 156 data_sensitivity: 157 - interaction 158 extra_keys: 159 container_id: 160 description: The ID of the deleted container. 161 type: string