Skip to content

Commit 35a171b

Browse files
authoredMay 1, 2024··
xds: include the target label to WRR metrics (#11141)
1 parent a9fb272 commit 35a171b

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed
 

‎xds/src/main/java/io/grpc/xds/WeightedRoundRobinLoadBalancer.java

+10-8
Original file line numberDiff line numberDiff line change
@@ -430,31 +430,33 @@ private void updateWeight() {
430430
for (int i = 0; i < children.size(); i++) {
431431
double newWeight = ((WeightedChildLbState) children.get(i)).getWeight(staleEndpoints,
432432
notYetUsableEndpoints);
433-
// TODO: add target and locality labels once available
433+
// TODO: add locality label once available
434434
helper.getMetricRecorder()
435-
.recordDoubleHistogram(ENDPOINT_WEIGHTS_HISTOGRAM, newWeight, ImmutableList.of(""),
435+
.recordDoubleHistogram(ENDPOINT_WEIGHTS_HISTOGRAM, newWeight,
436+
ImmutableList.of(helper.getChannelTarget()),
436437
ImmutableList.of(""));
437438
newWeights[i] = newWeight > 0 ? (float) newWeight : 0.0f;
438439
}
439440
if (staleEndpoints.get() > 0) {
440-
// TODO: add target and locality labels once available
441+
// TODO: add locality label once available
441442
helper.getMetricRecorder()
442443
.addLongCounter(ENDPOINT_WEIGHT_STALE_COUNTER, staleEndpoints.get(),
443-
ImmutableList.of(""),
444+
ImmutableList.of(helper.getChannelTarget()),
444445
ImmutableList.of(""));
445446
}
446447
if (notYetUsableEndpoints.get() > 0) {
447-
// TODO: add target and locality labels once available
448+
// TODO: add locality label once available
448449
helper.getMetricRecorder()
449450
.addLongCounter(ENDPOINT_WEIGHT_NOT_YET_USEABLE_COUNTER, notYetUsableEndpoints.get(),
450-
ImmutableList.of(""), ImmutableList.of(""));
451+
ImmutableList.of(helper.getChannelTarget()), ImmutableList.of(""));
451452
}
452453

453454
this.scheduler = new StaticStrideScheduler(newWeights, sequence);
454455
if (this.scheduler.usesRoundRobin()) {
455-
// TODO: add target and locality labels once available
456+
// TODO: locality label once available
456457
helper.getMetricRecorder()
457-
.addLongCounter(RR_FALLBACK_COUNTER, 1, ImmutableList.of(""), ImmutableList.of(""));
458+
.addLongCounter(RR_FALLBACK_COUNTER, 1, ImmutableList.of(helper.getChannelTarget()),
459+
ImmutableList.of(""));
458460
}
459461
}
460462

‎xds/src/test/java/io/grpc/xds/WeightedRoundRobinLoadBalancerTest.java

+9-2
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ public void uncaughtException(Thread t, Throwable e) {
144144
}
145145
});
146146

147+
private String channelTarget = "channel-target";
148+
147149
public WeightedRoundRobinLoadBalancerTest() {
148150
testHelperInstance = new TestHelper();
149151
helper = mock(Helper.class, delegatesTo(testHelperInstance));
@@ -1238,7 +1240,7 @@ private void verifyLongCounterRecord(String name, int times, long value) {
12381240
public boolean matches(LongCounterMetricInstrument longCounterInstrument) {
12391241
return longCounterInstrument.getName().equals(name);
12401242
}
1241-
}), eq(value), eq(Lists.newArrayList("")), eq(Lists.newArrayList("")));
1243+
}), eq(value), eq(Lists.newArrayList(channelTarget)), eq(Lists.newArrayList("")));
12421244
}
12431245

12441246
// Verifies that the MetricRecorder has been called to record a given double histogram value the
@@ -1250,7 +1252,7 @@ private void verifyDoubleHistogramRecord(String name, int times, double value) {
12501252
public boolean matches(DoubleHistogramMetricInstrument doubleHistogramInstrument) {
12511253
return doubleHistogramInstrument.getName().equals(name);
12521254
}
1253-
}), eq(value), eq(Lists.newArrayList("")), eq(Lists.newArrayList("")));
1255+
}), eq(value), eq(Lists.newArrayList(channelTarget)), eq(Lists.newArrayList("")));
12541256
}
12551257

12561258
private int getNumFilteredPendingTasks() {
@@ -1326,5 +1328,10 @@ public Map<Subchannel, SubchannelStateListener> getSubchannelStateListeners() {
13261328
public MetricRecorder getMetricRecorder() {
13271329
return mockMetricRecorder;
13281330
}
1331+
1332+
@Override
1333+
public String getChannelTarget() {
1334+
return channelTarget;
1335+
}
13291336
}
13301337
}

0 commit comments

Comments
 (0)
Please sign in to comment.