Closed alphafoobar closed 4 years ago
if you have a service running on JDK 11.0.0 - 11.0.4 and you're seeing "TLS record_overflow" exceptions, it's most likely caused by this JDK bug https://bugs.openjdk.java.net/browse/JDK-8221253
Updating to 11.0.6 should fix it.
I just realized this isn't the micrometer library we are using. But thanks a lot for the helpful suggestion!
if you have a service running on JDK 11.0.0 - 11.0.4 and you're seeing "TLS record_overflow" exceptions, it's most likely caused by this JDK bug https://bugs.openjdk.java.net/browse/JDK-8221253
Updating to 11.0.6 should fix it.
This has fixed our issue. Thank you again.
We are using Spring boot and micrometer.io to publish metrics to New Relic Insights. Since the weekend ~12 April 2020, most of our services have been unable to publish any metrics. We had not updated any libraries or pushed any changes at the time - we saw an almost complete outage of all published metrics across most of our services, with no changes deployed at the time.
We are seeing a lot of errors like:
2020-04-14 17:29:11.157 WARN 20650 --- [ Thread-5] i.m.newrelic.NewRelicMeterRegistry : failed to send metrics to new relic
With a stack trace:
It seems unlikely this is a configuration issue, or a code change since no changes have been deployed to our services over the weekend. And investigating the issue shows the problem is only intermittent. Running the same version of the application locally sometimes replicates the issue and sometimes it is able to publish metrics as designed.
Is anyone else experiencing this issue? The endpoint we are hitting is something like: https://insights-collector.newrelic.com/v1/accounts//events
We are using the following library to publish metrics
group: 'io.micrometer', name: 'micrometer-registry-new-relic', version: '1.2.0'