You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2
+
change_type: 'bug_fix'
3
+
4
+
# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action)
5
+
component: 'target allocator'
6
+
7
+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8
+
note: 'Fixes an issue where the same target from two different jobs was being allocated for only one job'
9
+
10
+
# One or more tracking issues related to the change
11
+
issues: [4044]
12
+
13
+
# (Optional) One or more lines of additional information to render under the primary note.
14
+
# These lines will be padded with 2 spaces and then inserted directly into the document.
// LabelsHashWithJobName computes a hash of the labels and the job name.
70
+
// Same logic as Prometheus labels.Hash: https://github.com/prometheus/prometheus/blob/8fd46f74aa0155e4d5aa30654f9c02e564e03743/model/labels/labels.go#L72
71
+
// but adds in the job name since this is not in the labelset from the discovery manager.
72
+
// The scrape manager adds it later. Address is already included in the labels, so it is not needed here.
0 commit comments