DynamicLabelType
public enum DynamicLabelType
extension DynamicLabelType: Equatable, Hashable
The type of dynamic label applied to a base metric. Used to help identify the necessary validation to be performed.
-
A dynamic label applied from a
LabeledMetric
Declaration
Swift
case label(String )
-
A label applied by a
DualLabeledCounter
that contains a dynamic keyDeclaration
Swift
case keyOnly(String )
-
A label applied by a
DualLabeledCounter
that contains a dynamic categoryDeclaration
Swift
case categoryOnly(String )
-
A label applied by a
DualLabeledCounter
that contains a dynamic key and categoryDeclaration
Swift
case keyAndCategory(String )