docs: change relative URLs to absolute URLs to fix broken links.
PiperOrigin-RevId: 314788297
This commit is contained in:
parent
8f41c697c6
commit
51362f378a
|
|
@ -30,7 +30,7 @@ option java_package = "com.google.monitoring.dashboard.v1";
|
|||
// series (`alignment_period` and `per_series_aligner`) followed by an optional
|
||||
// reduction step of the data across the aligned time series
|
||||
// (`cross_series_reducer` and `group_by_fields`). For more details, see
|
||||
// [Aggregation](/monitoring/api/learn_more#aggregation).
|
||||
// [Aggregation](https://cloud.google.com/monitoring/api/learn_more#aggregation).
|
||||
message Aggregation {
|
||||
// The Aligner describes how to bring the data points in a single
|
||||
// time series into temporal alignment.
|
||||
|
|
|
|||
|
|
@ -41,17 +41,17 @@ message TimeSeriesQuery {
|
|||
// The unit of data contained in fetched time series. If non-empty, this
|
||||
// unit will override any unit that accompanies fetched data. The format is
|
||||
// the same as the
|
||||
// [`unit`](/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors)
|
||||
// [`unit`](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors)
|
||||
// field in `MetricDescriptor`.
|
||||
string unit_override = 5;
|
||||
}
|
||||
|
||||
// A filter that defines a subset of time series data that is displayed in a
|
||||
// widget. Time series data is fetched using the
|
||||
// [`ListTimeSeries`](/monitoring/api/ref_v3/rest/v3/projects.timeSeries/list)
|
||||
// [`ListTimeSeries`](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.timeSeries/list)
|
||||
// method.
|
||||
message TimeSeriesFilter {
|
||||
// Required. The [monitoring filter](/monitoring/api/v3/filters) that identifies the
|
||||
// Required. The [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters) that identifies the
|
||||
// metric types, resources, and projects to query.
|
||||
string filter = 1 [(google.api.field_behavior) = REQUIRED];
|
||||
|
||||
|
|
@ -77,7 +77,7 @@ message TimeSeriesFilterRatio {
|
|||
// Describes a query to build the numerator or denominator of a
|
||||
// TimeSeriesFilterRatio.
|
||||
message RatioPart {
|
||||
// Required. The [monitoring filter](/monitoring/api/v3/filters) that identifies the
|
||||
// Required. The [monitoring filter](https://cloud.google.com/monitoring/api/v3/filters) that identifies the
|
||||
// metric types, resources, and projects to query.
|
||||
string filter = 1 [(google.api.field_behavior) = REQUIRED];
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,11 @@ message TypedValue {
|
|||
}
|
||||
}
|
||||
|
||||
// A closed time interval. It extends from the start time to the end time, and includes both: `[startTime, endTime]`. Valid time intervals depend on the [`MetricKind`](/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricKind) of the metric value. In no case can the end time be earlier than the start time.
|
||||
// A closed time interval. It extends from the start time to the end time, and
|
||||
// includes both: `[startTime, endTime]`. Valid time intervals depend on the
|
||||
// [`MetricKind`](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.metricDescriptors#MetricKind)
|
||||
// of the metric value. In no case can the end time be earlier than the start
|
||||
// time.
|
||||
//
|
||||
// * For a `GAUGE` metric, the `startTime` value is technically optional; if
|
||||
// no value is specified, the start time defaults to the value of the
|
||||
|
|
|
|||
Loading…
Reference in New Issue