MetricDescriptorLabel

data class MetricDescriptorLabel(val description: String? = null, val key: String, val valueType: String? = null)

Constructors

Link copied to clipboard
constructor(description: String? = null, key: String, valueType: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

A human-readable description for the label.

Link copied to clipboard
val key: String

The key for this label. The key must not exceed 100 characters. The first character of the key must be an upper- or lower-case letter, the remaining characters must be letters, digits or underscores, and the key must match the regular expression a-zA-Z0-9_*

Link copied to clipboard
val valueType: String? = null

The type of data that can be assigned to the label. Default value is STRING. Possible values are: STRING, BOOL, INT64.