kind property

String? kind
getter/setter pair

Counter aggregation kind. Possible string values are:

  • "INVALID" : Counter aggregation kind was not set.
  • "SUM" : Aggregated value is the sum of all contributed values.
  • "MAX" : Aggregated value is the max of all contributed values.
  • "MIN" : Aggregated value is the min of all contributed values.
  • "MEAN" : Aggregated value is the mean of all contributed values.
  • "OR" : Aggregated value represents the logical 'or' of all contributed values.
  • "AND" : Aggregated value represents the logical 'and' of all contributed values.
  • "SET" : Aggregated value is a set of unique contributed values.
  • "DISTRIBUTION" : Aggregated value captures statistics about a distribution.
  • "LATEST_VALUE" : Aggregated value tracks the latest value of a variable.

Implementation

core.String? kind;