Metric Metric Descriptor
data class MetricMetricDescriptor(val displayName: String? = null, val labels: List<MetricMetricDescriptorLabel>? = null, val metricKind: String, val unit: String? = null, val valueType: String)
Constructors
Link copied to clipboard
fun MetricMetricDescriptor(displayName: String? = null, labels: List<MetricMetricDescriptorLabel>? = null, metricKind: String, unit: String? = null, valueType: String)
Types
Properties
Link copied to clipboard
The set of labels that can be used to describe a specific instance of this metric type. For example, the appengine.googleapis.com/http/server/response_latencies metric type has a label for the HTTP response code, response_code, so you can look at latencies for successful responses or just for responses that failed. Structure is documented below.
Link copied to clipboard
The unit in which the metric value is reported. It is only applicable if the valueType is INT64
, DOUBLE
, or DISTRIBUTION
. The supported units are a subset of The Unified Code for Units of Measure standard
Link copied to clipboard