xref: /aosp_15_r20/external/googleapis/google/monitoring/dashboard/v1/error_reporting_panel.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.monitoring.dashboard.v1;
18
19option csharp_namespace = "Google.Cloud.Monitoring.Dashboard.V1";
20option go_package = "cloud.google.com/go/monitoring/dashboard/apiv1/dashboardpb;dashboardpb";
21option java_multiple_files = true;
22option java_outer_classname = "ErrorReportingPanelProto";
23option java_package = "com.google.monitoring.dashboard.v1";
24option php_namespace = "Google\\Cloud\\Monitoring\\Dashboard\\V1";
25
26// A widget that displays a list of error groups.
27message ErrorReportingPanel {
28  // The resource name of the Google Cloud Platform project. Written
29  // as `projects/{projectID}` or `projects/{projectNumber}`, where
30  // `{projectID}` and `{projectNumber}` can be found in the
31  // [Google Cloud console](https://support.google.com/cloud/answer/6158840).
32  //
33  // Examples: `projects/my-project-123`, `projects/5551234`.
34  repeated string project_names = 1;
35
36  // An identifier of the service, such as the name of the
37  // executable, job, or Google App Engine service name. This field is expected
38  // to have a low number of values that are relatively stable over time, as
39  // opposed to `version`, which can be changed whenever new code is deployed.
40  //
41  // Contains the service name for error reports extracted from Google
42  // App Engine logs or `default` if the App Engine default service is used.
43  repeated string services = 2;
44
45  // Represents the source code version that the developer provided,
46  // which could represent a version label or a Git SHA-1 hash, for example.
47  // For App Engine standard environment, the version is set to the version of
48  // the app.
49  repeated string versions = 3;
50}
51