1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.cloud.backupdr.logging.v1;
- import "google/protobuf/timestamp.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/backupdr/logging/v1;logging";
- // This is an event
- message Event {
- // The event_time field displays the time when the event was reported
- google.protobuf.Timestamp event_time = 1;
- // The srcid field displays unique id of the event occurred in the backup
- // appliance
- int64 srcid = 2;
- // The error_message field describes the detailed error associated with the
- // event
- string error_message = 3;
- // The event_id field displays unique id associated with the error
- int32 event_id = 4;
- // The component field displays the source of the event
- string component = 5;
- // The appliance_id field displays unique id of the appliance on which event
- // occurred
- int64 appliance_id = 6;
- // The appliance_name field displays name of the appliance on which event
- // occurred
- string appliance_name = 7;
- // The source_event_time field displays the time when the event occurred at
- // appliance
- google.protobuf.Timestamp source_event_time = 8;
- // The app_name field displays name of the application associated with the
- // event
- string app_name = 9;
- // The app_type field displays type of the application associated with the
- // event
- string app_type = 10;
- // The job_name field displays name of the job associated with the event
- string job_name = 11;
- }
|