123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- syntax = "proto3";
- package google.devtools.clouderrorreporting.v1beta1;
- import "google/api/resource.proto";
- import "google/protobuf/timestamp.proto";
- option cc_enable_arenas = true;
- option csharp_namespace = "Google.Cloud.ErrorReporting.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/devtools/clouderrorreporting/v1beta1;clouderrorreporting";
- option java_multiple_files = true;
- option java_outer_classname = "CommonProto";
- option java_package = "com.google.devtools.clouderrorreporting.v1beta1";
- option php_namespace = "Google\\Cloud\\ErrorReporting\\V1beta1";
- option ruby_package = "Google::Cloud::ErrorReporting::V1beta1";
- message ErrorGroup {
- option (google.api.resource) = {
- type: "clouderrorreporting.googleapis.com/ErrorGroup"
- pattern: "projects/{project}/groups/{group}"
- };
-
-
- string name = 1;
-
-
- string group_id = 2;
-
- repeated TrackingIssue tracking_issues = 3;
-
-
- ResolutionStatus resolution_status = 5;
- }
- message TrackingIssue {
-
-
- string url = 1;
- }
- message ErrorEvent {
-
-
-
- google.protobuf.Timestamp event_time = 1;
-
- ServiceContext service_context = 2;
-
- string message = 3;
-
- ErrorContext context = 5;
- }
- message ServiceContext {
-
-
-
-
-
-
-
- string service = 2;
-
-
-
-
- string version = 3;
-
-
-
-
-
- string resource_type = 4;
- }
- message ErrorContext {
-
-
- HttpRequestContext http_request = 1;
-
-
-
-
-
-
-
-
- string user = 2;
-
-
-
-
-
- SourceLocation report_location = 3;
- }
- message HttpRequestContext {
-
- string method = 1;
-
- string url = 2;
-
- string user_agent = 3;
-
- string referrer = 4;
-
- int32 response_status_code = 5;
-
-
-
-
- string remote_ip = 6;
- }
- message SourceLocation {
-
-
- string file_path = 1;
-
- int32 line_number = 2;
-
-
-
- string function_name = 4;
- }
- enum ResolutionStatus {
-
-
- RESOLUTION_STATUS_UNSPECIFIED = 0;
-
-
- OPEN = 1;
-
- ACKNOWLEDGED = 2;
-
-
- RESOLVED = 3;
-
- MUTED = 4;
- }
|