@@ -430,31 +430,33 @@ private void updateWeight() {
430
430
for (int i = 0 ; i < children .size (); i ++) {
431
431
double newWeight = ((WeightedChildLbState ) children .get (i )).getWeight (staleEndpoints ,
432
432
notYetUsableEndpoints );
433
- // TODO: add target and locality labels once available
433
+ // TODO: add locality label once available
434
434
helper .getMetricRecorder ()
435
- .recordDoubleHistogram (ENDPOINT_WEIGHTS_HISTOGRAM , newWeight , ImmutableList .of ("" ),
435
+ .recordDoubleHistogram (ENDPOINT_WEIGHTS_HISTOGRAM , newWeight ,
436
+ ImmutableList .of (helper .getChannelTarget ()),
436
437
ImmutableList .of ("" ));
437
438
newWeights [i ] = newWeight > 0 ? (float ) newWeight : 0.0f ;
438
439
}
439
440
if (staleEndpoints .get () > 0 ) {
440
- // TODO: add target and locality labels once available
441
+ // TODO: add locality label once available
441
442
helper .getMetricRecorder ()
442
443
.addLongCounter (ENDPOINT_WEIGHT_STALE_COUNTER , staleEndpoints .get (),
443
- ImmutableList .of ("" ),
444
+ ImmutableList .of (helper . getChannelTarget () ),
444
445
ImmutableList .of ("" ));
445
446
}
446
447
if (notYetUsableEndpoints .get () > 0 ) {
447
- // TODO: add target and locality labels once available
448
+ // TODO: add locality label once available
448
449
helper .getMetricRecorder ()
449
450
.addLongCounter (ENDPOINT_WEIGHT_NOT_YET_USEABLE_COUNTER , notYetUsableEndpoints .get (),
450
- ImmutableList .of ("" ), ImmutableList .of ("" ));
451
+ ImmutableList .of (helper . getChannelTarget () ), ImmutableList .of ("" ));
451
452
}
452
453
453
454
this .scheduler = new StaticStrideScheduler (newWeights , sequence );
454
455
if (this .scheduler .usesRoundRobin ()) {
455
- // TODO: add target and locality labels once available
456
+ // TODO: locality label once available
456
457
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 ("" ));
458
460
}
459
461
}
460
462
0 commit comments