xref: /aosp_15_r20/external/googleapis/google/cloud/backupdr/logging/v1/eventlog.proto (revision d5c09012810ac0c9f33fe448fb6da8260d444cc9)
1// Copyright 2023 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16
17package google.cloud.backupdr.logging.v1;
18
19option go_package = "cloud.google.com/go/backupdr/logging/apiv1/loggingpb;loggingpb";
20
21// This is an event
22message Event {
23  // The event_time field displays the time when the event was reported
24  string event_time = 1;
25
26  // The srcid field displays unique id of the event occurred in the backup
27  // appliance
28  int64 srcid = 2;
29
30  // The errormessage field describes the detailed error associated with the
31  // event
32  string error_message = 3;
33
34  // The event_id field displays unique id associated with the error
35  int32 event_id = 4;
36
37  // The component field displays the source of the event
38  string component = 5;
39
40  // The appliance_id field displays unique id of the appliance on which event
41  // occurred
42  int64 appliance_name = 6;
43
44  // The appname field displays name of the application associated with the
45  // event
46  string app_name = 7;
47
48  // The apptype field displays type of the application associated with the
49  // event
50  string app_type = 8;
51
52  // The jobname field displays name of the job associated with the event
53  string job_name = 9;
54}
55