metrics.yaml (25682B)
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 # This file defines the metrics that are recorded by glean telemetry. They are 6 # automatically converted to Kotlin code at build time using the `glean_parser` 7 # PyPI package. 8 --- 9 10 $schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 11 12 crash_metrics: 13 crash_count: 14 type: labeled_counter 15 description: > 16 Counts the number of crashes that occur in the application. 17 This measures only the counts of each crash in association 18 with the labeled type of the crash. 19 The labels correspond to the types of crashes handled by lib-crash. 20 21 Deprecated: `native_code_crash`, `fatal_native_code_crash` and 22 `nonfatal_native_code_crash` replaced by `main_proc_native_code_crash`, 23 `fg_proc_native_code_crash` and `bg_proc_native_code_crash`. 24 labels: 25 - uncaught_exception 26 - caught_exception 27 - main_proc_native_code_crash 28 - fg_proc_native_code_crash 29 - bg_proc_native_code_crash 30 - fatal_native_code_crash 31 - nonfatal_native_code_crash 32 bugs: 33 - https://bugzilla.mozilla.org/1553935 34 - https://github.com/mozilla-mobile/android-components/issues/5175 35 - https://github.com/mozilla-mobile/android-components/issues/11876 36 data_reviews: 37 - https://bugzilla.mozilla.org/show_bug.cgi?id=1553935#c3 38 - https://github.com/mozilla-mobile/android-components/pull/5700#pullrequestreview-347721248 39 - https://github.com/mozilla-mobile/android-components/pull/11908#issuecomment-1075243414 40 data_sensitivity: 41 - technical 42 notification_emails: 43 - android-probes@mozilla.com 44 - jnicol@mozilla.com 45 expires: never 46 47 crash: 48 process_type: 49 type: string 50 # yamllint disable 51 description: > 52 The type of process that experienced a crash. See the full list of 53 options 54 [here](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/crash-ping.html#process-types). 55 # yamllint enable 56 notification_emails: 57 - crash-reporting-wg@mozilla.org 58 - stability@mozilla.org 59 bugs: 60 - https://bugzilla.mozilla.org/show_bug.cgi?id=1790569 61 data_reviews: 62 - https://bugzilla.mozilla.org/show_bug.cgi?id=1790569#c12 63 data_sensitivity: 64 - technical 65 expires: never 66 send_in_pings: 67 - crash 68 69 remote_type: 70 type: string 71 description: > 72 Type of the child process, can be set to "web", "file" or "extension" but could also be unavailable. 73 notification_emails: 74 - crash-reporting-wg@mozilla.org 75 - stability@mozilla.org 76 bugs: 77 - https://bugzilla.mozilla.org/show_bug.cgi?id=1851518 78 data_reviews: 79 - https://bugzilla.mozilla.org/show_bug.cgi?id=1851518#c6 80 data_sensitivity: 81 - technical 82 expires: never 83 send_in_pings: 84 - crash 85 86 time: 87 type: datetime 88 time_unit: minute 89 description: > 90 The time at which the crash occurred. 91 notification_emails: 92 - crash-reporting-wg@mozilla.org 93 - stability@mozilla.org 94 bugs: 95 - https://bugzilla.mozilla.org/show_bug.cgi?id=1790569 96 data_reviews: 97 - https://bugzilla.mozilla.org/show_bug.cgi?id=1790569#c12 98 data_sensitivity: 99 - technical 100 expires: never 101 send_in_pings: 102 - crash 103 104 startup: 105 type: boolean 106 description: > 107 If true, the crash occurred during process startup. 108 notification_emails: 109 - crash-reporting-wg@mozilla.org 110 - stability@mozilla.org 111 bugs: 112 - https://bugzilla.mozilla.org/show_bug.cgi?id=1790569 113 data_reviews: 114 - https://bugzilla.mozilla.org/show_bug.cgi?id=1790569#c12 115 data_sensitivity: 116 - technical 117 expires: never 118 send_in_pings: 119 - crash 120 121 cause: 122 type: string 123 description: > 124 The cause of the crash. May be one of `os_fault` or `java_exception`. 125 notification_emails: 126 - crash-reporting-wg@mozilla.org 127 - stability@mozilla.org 128 bugs: 129 - https://bugzilla.mozilla.org/show_bug.cgi?id=1839697 130 data_reviews: 131 - https://bugzilla.mozilla.org/show_bug.cgi?id=1839697#c5 132 data_sensitivity: 133 - technical 134 expires: never 135 send_in_pings: 136 - crash 137 138 app_channel: 139 type: string 140 description: > 141 The release channel of the application. This may differ from 142 `client_info` because a main process crash may be reported later by a 143 different (e.g. updated) client. 144 notification_emails: 145 - crash-reporting-wg@mozilla.org 146 - stability@mozilla.org 147 bugs: 148 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 149 data_reviews: 150 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 151 data_sensitivity: 152 - technical 153 expires: never 154 send_in_pings: 155 - crash 156 157 app_display_version: 158 type: string 159 description: > 160 The version of the application. This may differ from `client_info` 161 because a main process crash may be reported later by a different 162 (e.g. updated) client. 163 notification_emails: 164 - crash-reporting-wg@mozilla.org 165 - stability@mozilla.org 166 bugs: 167 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 168 data_reviews: 169 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 170 data_sensitivity: 171 - technical 172 expires: never 173 send_in_pings: 174 - crash 175 176 app_build: 177 type: string 178 description: > 179 The build id of the application. This may differ from `client_info` 180 because a main process crash may be reported later by a different 181 (e.g. updated) client. 182 notification_emails: 183 - crash-reporting-wg@mozilla.org 184 - stability@mozilla.org 185 bugs: 186 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 187 data_reviews: 188 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 189 data_sensitivity: 190 - technical 191 expires: never 192 send_in_pings: 193 - crash 194 195 minidump_sha256_hash: 196 type: string 197 description: > 198 The SHA256 hash of the associated minidump file, if any. 199 notification_emails: 200 - crash-reporting-wg@mozilla.org 201 - stability@mozilla.org 202 bugs: 203 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 204 data_reviews: 205 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 206 data_sensitivity: 207 - technical 208 expires: never 209 send_in_pings: 210 - crash 211 212 stack_traces: 213 type: object 214 description: > 215 Stack trace and module information of the crashing process. 216 notification_emails: 217 - crash-reporting-wg@mozilla.org 218 - stability@mozilla.org 219 bugs: 220 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 221 data_reviews: 222 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 223 data_sensitivity: 224 - technical 225 expires: never 226 send_in_pings: 227 - crash 228 # All addresses are hex strings (with prefix "0x") rather than numbers. 229 structure: 230 type: object 231 properties: 232 # An error from the stack trace analysis, omitted if no errors occurred. 233 error: 234 type: string 235 # The type of crash (SIGSEGV, assertion, etc) 236 crash_type: 237 type: string 238 crash_address: 239 type: string 240 # Index of the crash thread 241 crash_thread: 242 type: number 243 # Index of the main executable module. 244 main_module: 245 type: number 246 # Modules ordered by base memory address. 247 modules: 248 type: array 249 items: 250 type: object 251 properties: 252 base_address: 253 type: string 254 end_address: 255 type: string 256 # Unique ID of the module 257 code_id: 258 type: string 259 debug_file: 260 type: string 261 debug_id: 262 type: string 263 filename: 264 type: string 265 version: 266 type: string 267 # Stack traces for each thread. 268 threads: 269 type: array 270 items: 271 type: object 272 properties: 273 # Frames in the thread stack trace 274 frames: 275 type: array 276 items: 277 type: object 278 properties: 279 # Index of the module that contains the frame 280 module_index: 281 type: number 282 # The instruction pointer (address) of the frame 283 ip: 284 type: string 285 # Trust of the frame, one of "context", "prewalked", "cfi", 286 # "frame_pointer", "cfi_scan", "scan", or "none" 287 trust: 288 type: string 289 290 291 async_shutdown_timeout: 292 type: object 293 description: > 294 Present when a shutdown blocker failed to respond within a reasonable 295 amount of time. 296 notification_emails: 297 - crash-reporting-wg@mozilla.org 298 - stability@mozilla.org 299 bugs: 300 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 301 data_reviews: 302 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 303 data_sensitivity: 304 - technical 305 expires: never 306 send_in_pings: 307 - crash 308 structure: 309 type: object 310 properties: 311 phase: 312 type: string 313 conditions: 314 type: string 315 broken_add_blockers: 316 type: array 317 items: 318 type: string 319 320 background_task_name: 321 type: string 322 description: > 323 The name of the background task if launched as one. 324 notification_emails: 325 - crash-reporting-wg@mozilla.org 326 - stability@mozilla.org 327 bugs: 328 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 329 data_reviews: 330 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 331 data_sensitivity: 332 - technical 333 expires: never 334 send_in_pings: 335 - crash 336 337 event_loop_nesting_level: 338 type: quantity 339 unit: levels 340 description: > 341 Indicates the nesting level of the event loop. 342 notification_emails: 343 - crash-reporting-wg@mozilla.org 344 - stability@mozilla.org 345 bugs: 346 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 347 data_reviews: 348 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 349 data_sensitivity: 350 - technical 351 expires: never 352 send_in_pings: 353 - crash 354 355 font_name: 356 type: string 357 description: > 358 The font family name that is being loaded when the crash occurred. 359 notification_emails: 360 - crash-reporting-wg@mozilla.org 361 - stability@mozilla.org 362 bugs: 363 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 364 data_reviews: 365 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 366 data_sensitivity: 367 - technical 368 expires: never 369 send_in_pings: 370 - crash 371 372 gpu_process_launch: 373 type: quantity 374 unit: events 375 description: > 376 The number of times that the GPU process was launched. 377 notification_emails: 378 - crash-reporting-wg@mozilla.org 379 - stability@mozilla.org 380 bugs: 381 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 382 data_reviews: 383 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 384 data_sensitivity: 385 - technical 386 expires: never 387 send_in_pings: 388 - crash 389 390 ipc_channel_error: 391 type: string 392 description: > 393 The error reason for an ipc-based content crash. 394 notification_emails: 395 - crash-reporting-wg@mozilla.org 396 - stability@mozilla.org 397 bugs: 398 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 399 data_reviews: 400 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 401 data_sensitivity: 402 - technical 403 expires: never 404 send_in_pings: 405 - crash 406 407 is_garbage_collecting: 408 type: boolean 409 description: > 410 Indicates that the crash occurred while the garbage collector was 411 running. 412 notification_emails: 413 - crash-reporting-wg@mozilla.org 414 - stability@mozilla.org 415 bugs: 416 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 417 data_reviews: 418 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 419 data_sensitivity: 420 - technical 421 expires: never 422 send_in_pings: 423 - crash 424 425 main_thread_runnable_name: 426 type: string 427 description: > 428 Name of the currently executing `nsIRunnable` on the main thread. 429 Nightly-only. 430 notification_emails: 431 - crash-reporting-wg@mozilla.org 432 - stability@mozilla.org 433 bugs: 434 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 435 data_reviews: 436 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 437 data_sensitivity: 438 - technical 439 expires: never 440 send_in_pings: 441 - crash 442 443 moz_crash_reason: 444 type: string 445 description: > 446 Contains the string passed to `MOZ_CRASH()`. 447 notification_emails: 448 - crash-reporting-wg@mozilla.org 449 - stability@mozilla.org 450 bugs: 451 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 452 data_reviews: 453 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 454 data_sensitivity: 455 - technical 456 expires: never 457 send_in_pings: 458 - crash 459 460 profiler_child_shutdown_phase: 461 type: string 462 description: > 463 The shutdown phase of the profiler. 464 notification_emails: 465 - crash-reporting-wg@mozilla.org 466 - stability@mozilla.org 467 bugs: 468 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 469 data_reviews: 470 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 471 data_sensitivity: 472 - technical 473 expires: never 474 send_in_pings: 475 - crash 476 477 quota_manager_shutdown_timeout: 478 type: object 479 description: > 480 Contains a list of shutdown steps and status of the quota manager 481 clients. 482 notification_emails: 483 - crash-reporting-wg@mozilla.org 484 - stability@mozilla.org 485 bugs: 486 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 487 data_reviews: 488 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 489 data_sensitivity: 490 - technical 491 expires: never 492 send_in_pings: 493 - crash 494 structure: 495 type: array 496 items: 497 type: string 498 499 shutdown_progress: 500 type: string 501 description: > 502 The shutdown phase in which the crash occurred. 503 notification_emails: 504 - crash-reporting-wg@mozilla.org 505 - stability@mozilla.org 506 bugs: 507 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 508 data_reviews: 509 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 510 data_sensitivity: 511 - technical 512 expires: never 513 send_in_pings: 514 - crash 515 516 java_exception: 517 type: object 518 description: > 519 Error and stack trace information for a java exception. 520 notification_emails: 521 - crash-reporting-wg@mozilla.org 522 - stability@mozilla.org 523 bugs: 524 - https://bugzilla.mozilla.org/show_bug.cgi?id=1904847 525 - https://bugzilla.mozilla.org/show_bug.cgi?id=1961011 526 data_reviews: 527 - https://bugzilla.mozilla.org/show_bug.cgi?id=1904847 528 - https://bugzilla.mozilla.org/show_bug.cgi?id=1961011 529 data_sensitivity: 530 - technical 531 expires: never 532 send_in_pings: 533 - crash 534 # version history (typescript for brevity) 535 # # 0 536 # { 537 # messages: string[], 538 # stack: { file: string, line: number, class_name: string, method_name: string, is_native: boolean }[] 539 # } 540 # 541 # # 1 542 # { 543 # throwables: { 544 # message: string, 545 # type_name: string, 546 # stack: { file: string, line: number, class_name: string, method_name: string, is_native: boolean }[] 547 # }[] 548 # } 549 version: 1 550 structure: 551 type: object 552 properties: 553 # The Throwable and any cause Throwables. 554 # They are always in cause order (e.g., [`e`, `e.cause`, `e.cause.cause`, ...]). 555 throwables: 556 type: array 557 items: 558 type: object 559 properties: 560 # The message of the Throwable. 561 message: 562 type: string 563 # The java fully qualified type name of the Throwable. 564 type_name: 565 type: string 566 # The stack trace, from nearest to farthest execution point, of the Throwable. 567 # This may be omitted on `cause` Throwables. 568 stack: 569 type: array 570 items: 571 type: object 572 properties: 573 # The source file containing this stack trace element. 574 file: 575 type: string 576 # The line number of the source file containing this stack trace element. 577 line: 578 type: number 579 # The name of the class containing this stack trace element. 580 class_name: 581 type: string 582 # The name of the method containing this stack trace element. 583 method_name: 584 type: string 585 # Whether the method is native. 586 is_native: 587 type: boolean 588 589 breadcrumbs: 590 type: object 591 description: > 592 Crash breadcrumb information. 593 notification_emails: 594 - crash-reporting-wg@mozilla.org 595 - stability@mozilla.org 596 bugs: 597 - https://bugzilla.mozilla.org/show_bug.cgi?id=1904847 598 data_reviews: 599 - https://bugzilla.mozilla.org/show_bug.cgi?id=1904847 600 data_sensitivity: 601 - technical 602 expires: never 603 send_in_pings: 604 - crash 605 structure: 606 type: array 607 items: 608 type: object 609 properties: 610 timestamp: 611 type: string 612 message: 613 type: string 614 category: 615 type: string 616 level: 617 type: string 618 type: 619 type: string 620 data: 621 type: array 622 items: 623 type: object 624 properties: 625 key: 626 type: string 627 value: 628 type: string 629 630 631 memory: 632 available_commit: 633 type: quantity 634 unit: bytes 635 description: > 636 Available commit space. 637 notification_emails: 638 - crash-reporting-wg@mozilla.org 639 - stability@mozilla.org 640 bugs: 641 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 642 data_reviews: 643 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 644 data_sensitivity: 645 - technical 646 expires: never 647 send_in_pings: 648 - crash 649 650 available_physical: 651 type: quantity 652 unit: bytes 653 description: > 654 Available physical memory. 655 notification_emails: 656 - crash-reporting-wg@mozilla.org 657 - stability@mozilla.org 658 bugs: 659 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 660 data_reviews: 661 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 662 data_sensitivity: 663 - technical 664 expires: never 665 send_in_pings: 666 - crash 667 668 available_swap: 669 type: quantity 670 unit: bytes 671 description: > 672 Available swap memory. 673 notification_emails: 674 - crash-reporting-wg@mozilla.org 675 - stability@mozilla.org 676 bugs: 677 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 678 data_reviews: 679 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 680 data_sensitivity: 681 - technical 682 expires: never 683 send_in_pings: 684 - crash 685 686 available_virtual: 687 type: quantity 688 unit: bytes 689 description: > 690 Available virtual memory. 691 notification_emails: 692 - crash-reporting-wg@mozilla.org 693 - stability@mozilla.org 694 bugs: 695 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 696 data_reviews: 697 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 698 data_sensitivity: 699 - technical 700 expires: never 701 send_in_pings: 702 - crash 703 704 js_large_allocation_failure: 705 type: string 706 description: > 707 A large allocation couldn't be satisfied: What was 708 its state when the crash happened. 709 notification_emails: 710 - mgaudet@mozilla.com 711 bugs: 712 - https://bugzilla.mozilla.org/show_bug.cgi?id=1964092 713 data_reviews: 714 - https://bugzilla.mozilla.org/show_bug.cgi?id=1964092 715 data_sensitivity: 716 - technical 717 expires: never 718 send_in_pings: 719 - crash 720 721 js_out_of_memory: 722 type: string 723 description: > 724 A small allocation couldn't be satisfied: What was 725 its state when the crash happened. 726 notification_emails: 727 - mgaudet@mozilla.com 728 bugs: 729 - https://bugzilla.mozilla.org/show_bug.cgi?id=1964092 730 data_reviews: 731 - https://bugzilla.mozilla.org/show_bug.cgi?id=1964092 732 data_sensitivity: 733 - technical 734 expires: never 735 send_in_pings: 736 - crash 737 738 low_physical: 739 type: quantity 740 unit: events 741 description: > 742 The number of times the available memory tracker has detected that free 743 physical memory is running low. 744 notification_emails: 745 - crash-reporting-wg@mozilla.org 746 - stability@mozilla.org 747 bugs: 748 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 749 data_reviews: 750 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 751 data_sensitivity: 752 - technical 753 expires: never 754 send_in_pings: 755 - crash 756 757 oom_allocation_size: 758 type: quantity 759 unit: bytes 760 description: > 761 The size of the allocation that caused on OOM crash. 762 notification_emails: 763 - crash-reporting-wg@mozilla.org 764 - stability@mozilla.org 765 bugs: 766 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 767 data_reviews: 768 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 769 data_sensitivity: 770 - technical 771 expires: never 772 send_in_pings: 773 - crash 774 775 purgeable_physical: 776 type: quantity 777 unit: bytes 778 description: > 779 The amount of memory that can be deallocated by the OS in case of memory 780 pressure. 781 notification_emails: 782 - crash-reporting-wg@mozilla.org 783 - stability@mozilla.org 784 bugs: 785 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 786 data_reviews: 787 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 788 data_sensitivity: 789 - technical 790 expires: never 791 send_in_pings: 792 - crash 793 794 system_use_percentage: 795 type: quantity 796 unit: percent 797 description: > 798 The percentage of memory in use. 799 notification_emails: 800 - crash-reporting-wg@mozilla.org 801 - stability@mozilla.org 802 bugs: 803 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 804 data_reviews: 805 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 806 data_sensitivity: 807 - technical 808 expires: never 809 send_in_pings: 810 - crash 811 812 texture: 813 type: quantity 814 unit: bytes 815 description: > 816 The amount of memory used in textures. 817 notification_emails: 818 - crash-reporting-wg@mozilla.org 819 - stability@mozilla.org 820 bugs: 821 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 822 data_reviews: 823 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 824 data_sensitivity: 825 - technical 826 expires: never 827 send_in_pings: 828 - crash 829 830 total_page_file: 831 type: quantity 832 unit: bytes 833 description: > 834 The total page file size. 835 notification_emails: 836 - crash-reporting-wg@mozilla.org 837 - stability@mozilla.org 838 bugs: 839 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 840 data_reviews: 841 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 842 data_sensitivity: 843 - technical 844 expires: never 845 send_in_pings: 846 - crash 847 848 total_physical: 849 type: quantity 850 unit: bytes 851 description: > 852 The total physical memory. 853 notification_emails: 854 - crash-reporting-wg@mozilla.org 855 - stability@mozilla.org 856 bugs: 857 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 858 data_reviews: 859 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 860 data_sensitivity: 861 - technical 862 expires: never 863 send_in_pings: 864 - crash 865 866 total_virtual: 867 type: quantity 868 unit: bytes 869 description: > 870 The total virtual memory. 871 notification_emails: 872 - crash-reporting-wg@mozilla.org 873 - stability@mozilla.org 874 bugs: 875 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 876 data_reviews: 877 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 878 data_sensitivity: 879 - technical 880 expires: never 881 send_in_pings: 882 - crash 883 884 885 environment: 886 headless_mode: 887 type: boolean 888 description: > 889 Whether the app was invoked in headless mode via `--headless` or 890 `--backgroundtask`. 891 notification_emails: 892 - crash-reporting-wg@mozilla.org 893 - stability@mozilla.org 894 bugs: 895 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 896 data_reviews: 897 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 898 data_sensitivity: 899 - technical 900 expires: never 901 send_in_pings: 902 - crash 903 904 uptime: 905 type: timespan 906 time_unit: millisecond 907 description: > 908 The start time of the application. 909 notification_emails: 910 - crash-reporting-wg@mozilla.org 911 - stability@mozilla.org 912 bugs: 913 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 914 data_reviews: 915 - https://bugzilla.mozilla.org/show_bug.cgi?id=1830098 916 data_sensitivity: 917 - technical 918 expires: never 919 send_in_pings: 920 - crash