From 6884ca40ed20da72d4f2a0f9fe06e62039ef8a77 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Thu, 1 Dec 2022 07:31:18 -0800 Subject: [PATCH] docs: fix minor docstring formatting PiperOrigin-RevId: 492191109 --- google/monitoring/dashboard/v1/scorecard.proto | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/google/monitoring/dashboard/v1/scorecard.proto b/google/monitoring/dashboard/v1/scorecard.proto index 2cb2e4b2eb..27b0b15656 100644 --- a/google/monitoring/dashboard/v1/scorecard.proto +++ b/google/monitoring/dashboard/v1/scorecard.proto @@ -50,7 +50,8 @@ message Scorecard { // timeseries. message SparkChartView { // Required. The type of sparkchart to show in this chartView. - SparkChartType spark_chart_type = 1 [(google.api.field_behavior) = REQUIRED]; + SparkChartType spark_chart_type = 1 + [(google.api.field_behavior) = REQUIRED]; // The lower bound on data point frequency in the chart implemented by // specifying the minimum alignment period to use in a time series query. @@ -62,7 +63,8 @@ message Scorecard { // Required. Fields for querying time series data from the // Stackdriver metrics API. - TimeSeriesQuery time_series_query = 1 [(google.api.field_behavior) = REQUIRED]; + TimeSeriesQuery time_series_query = 1 + [(google.api.field_behavior) = REQUIRED]; // Defines the optional additional chart shown on the scorecard. If // neither is included - then a default scorecard is shown. @@ -83,6 +85,8 @@ message Scorecard { // it in a danger state. (Danger trumps warning.) // // As an example, consider a scorecard with the following four thresholds: + // + // ``` // { // value: 90, // category: 'DANGER', @@ -103,6 +107,7 @@ message Scorecard { // category: 'WARNING', // trigger: 'BELOW', // } + // ``` // // Then: values less than or equal to 10 would put the scorecard in a DANGER // state, values greater than 10 but less than or equal to 20 a WARNING state,