transition.go
transition.go - Overview
-
Overview This file defines a map that specifies the transition of metric names, mapping old metric names to new metric names.
-
Detailed Documentation
MetricsUnderTransition
- Purpose: A map that stores metric name transitions. It maps old (deprecated) metric names (keys) to their corresponding new metric names (values).
- Type:
map[string]string
- Description: The keys are the original metric names (strings), and the values are the updated metric names (strings). For example,
"k8s_pod_cpu_utilization"
is being transitioned to"k8s_pod_cpu_usage"
.
-
Code Examples None.
-
Clarity and Accuracy The code is clear about its purpose.
-
Markdown & MDX Perfection Markdown is properly formatted.
-
Edge Cases To Avoid Breaking MDX No edge cases.
-
Getting Started Relevance Include in Getting Started: NO