a5c1e4b4a5
Added crashcollect server for tracking panics on parent process and saving them in file. Change-Id: I7926f9a16594227a3262e05d216199b7c2857385
18 lines
340 B
Protocol Buffer
18 lines
340 B
Protocol Buffer
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
option go_package = "storj.io/storj/private/crashreportpb";
|
|
|
|
package crash;
|
|
|
|
service CrashReport {
|
|
rpc Report(ReportRequest) returns(ReportResponse) {}
|
|
}
|
|
|
|
message ReportRequest {
|
|
bytes gzipped_panic = 1;
|
|
}
|
|
|
|
message ReportResponse {}
|