storj/private/crashreportpb/crashreport.proto
Qweder93 a5c1e4b4a5 crashcollect: process for receiving panics
Added crashcollect server for tracking panics
on parent process and saving them in file.

Change-Id: I7926f9a16594227a3262e05d216199b7c2857385
2021-04-27 18:57:47 +03:00

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 {}