Separate minidump crashes from panics (#36267)
The minidump-based crash reporting is now entirely separate from our legacy panic_hook-based reporting. This should improve the association of minidumps with their metadata and give us more consistent crash reports. Release Notes: - N/A --------- Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
This commit is contained in:
parent
f5f14111ef
commit
7784fac288
8 changed files with 315 additions and 248 deletions
|
@ -28,11 +28,13 @@ message GetCrashFiles {
|
|||
|
||||
message GetCrashFilesResponse {
|
||||
repeated CrashReport crashes = 1;
|
||||
repeated string legacy_panics = 2;
|
||||
}
|
||||
|
||||
message CrashReport {
|
||||
optional string panic_contents = 1;
|
||||
optional bytes minidump_contents = 2;
|
||||
reserved 1, 2;
|
||||
string metadata = 3;
|
||||
bytes minidump_contents = 4;
|
||||
}
|
||||
|
||||
message Extension {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue