|
| 1 | +# Use this changelog template to create an entry for release notes. |
| 2 | +# |
| 3 | +# If your change doesn't affect end users you should instead start |
| 4 | +# your pull request title with [chore] or use the "Skip Changelog" label. |
| 5 | + |
| 6 | +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' |
| 7 | +change_type: breaking |
| 8 | + |
| 9 | +# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db) |
| 10 | +component: k8s |
| 11 | + |
| 12 | +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). |
| 13 | +note: "Fix plural-named updowncounter k8s metrics" |
| 14 | + |
| 15 | +# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. |
| 16 | +# The values here must be integers. |
| 17 | +issues: [2301] |
| 18 | + |
| 19 | +# (Optional) One or more lines of additional information to render under the primary note. |
| 20 | +# These lines will be padded with 2 spaces and then inserted directly into the document. |
| 21 | +# Use pipe (|) for multiline entries. |
| 22 | +subtext: | |
| 23 | + Renamed metrics: |
| 24 | + - k8s.node.allocatable.pods -> k8s.node.pod.allocatable |
| 25 | + - k8s.daemonset.current_scheduled_nodes -> k8s.daemonset.node.current_scheduled |
| 26 | + - k8s.daemonset.desired_scheduled_nodes -> k8s.daemonset.node.desired_scheduled |
| 27 | + - k8s.daemonset.misscheduled_nodes -> k8s.daemonset.node.misscheduled |
| 28 | + - k8s.daemonset.ready_nodes -> k8s.daemonset.node.ready |
| 29 | + - k8s.job.active_pods -> k8s.job.pod.active |
| 30 | + - k8s.job.failed_pods -> k8s.job.pod.failed |
| 31 | + - k8s.job.successful_pods -> k8s.job.pod.successful |
| 32 | + - k8s.job.desired_successful_pods -> k8s.job.pod.desired_successful |
| 33 | + - k8s.job.max_parallel_pods -> k8s.job.pod.max_parallel |
| 34 | + - k8s.cronjob.active_jobs -> k8s.cronjob.job.active |
| 35 | + - k8s.deployment.desired_pods -> k8s.deployment.pod.desired |
| 36 | + - k8s.deployment.available_pods -> k8s.deployment.pod.available |
| 37 | + - k8s.replicaset.desired_pods -> k8s.replicaset.pod.desired |
| 38 | + - k8s.replicaset.available_pods -> k8s.replicaset.pod.available |
| 39 | + - k8s.replicationcontroller.desired_pods -> k8s.replicationcontroller.pod.desired |
| 40 | + - k8s.replicationcontroller.available_pods -> k8s.replicationcontroller.pod.available |
| 41 | + - k8s.statefulset.desired_pods -> k8s.statefulset.pod.desired |
| 42 | + - k8s.statefulset.ready_pods -> k8s.statefulset.pod.ready |
| 43 | + - k8s.statefulset.current_pods -> k8s.statefulset.pod.current |
| 44 | + - k8s.statefulset.updated_pods -> k8s.statefulset.pod.updated |
| 45 | + - k8s.hpa.desired_pods -> k8s.hpa.pod.desired |
| 46 | + - k8s.hpa.current_pods -> k8s.hpa.pod.current |
| 47 | + - k8s.hpa.max_pods -> k8s.hpa.pod.max |
| 48 | + - k8s.hpa.min_pods -> k8s.hpa.pod.min |
0 commit comments