Mengyi Zhou (bjrara)

Results 20 comments of Mengyi Zhou (bjrara)

Since `failoverTimeMillis` is set to 30s, all the leases should be treated as expired after that duration if the previous owner fails to renew the expiry time. In the case...

@rtyley I agree that lease eviction can definitely help expedite the process of lease transfer. Just to let you know, I'm not a maintainer of this repository, but I'd like...

Jumped into the same issue, renaming the folder does the trick! Thanks for saving my day!

> LGTM! will click approve after the comments and build failures addressed. Thx Thanks for the review. The build includes AppSignals contract testing, it will keep failing until 1.33 is...

The same changes will be done in the opentelemetry-java-contrib. In fact, it seems the community will handle that for us. https://github.com/open-telemetry/opentelemetry-java-contrib/pull/1050 https://github.com/open-telemetry/opentelemetry-java-contrib/pull/1070

One visible change to the existing behavior is that we removed `OTelLib` from EMF log.

I'm proposing to OTEL that `aws.ecs.service.name` to be a supported [ECS resource attributes](https://opentelemetry.io/docs/specs/semconv/resource/cloud-provider/aws/ecs/), but even with that in place, as ECS Service is undetectable on Fargate, the attribute population will...

@xrmx @emdneto Thanks for taking a look at the PR. The issue is not with UpDownCounter, but the temporality used by **Observable**UpDownCounter. From the definition, [ObservableUpDownCounter is cumulative](https://github.com/open-telemetry/opentelemetry-python/blob/main/opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/aggregation.py#L1173-L1181), while these...

> Taking a second look, the issue makes sense. According to the specs, UpDownCounter is suitable because the metrics are additive and not monotonically increasing, but in practice, for our...

> As discussed in SIG (09/26) -- @bjrara will try using the LastValue aggregation in a View to configure the SDK to output this metric as a gauge. If it...