Cemalettin Koc

Results 84 comments of Cemalettin Koc

It seems alpine linux is not released with 2.4.8.

Here is a sample project: https://github.com/soulgalore/jdbcmetrics This one seems also very usabe https://github.com/gquintana/metrics-sql

@ohr this is fantastic. Thanks for sharing.

@pjfanning It is metrics for connection pool not JDBC.

Thanks I will take a look.

@pjfanning nice job.

@katbyte We hit same issue. Would you please review commit at https://github.com/krogon-dp/terraform-provider-mysql/commit/eed09ba7a0093018a46c2340494f31e15a29f5d3?

@adriancole seems this part should be splitted into if/else. https://github.com/openzipkin/zipkin-aws/blob/master/storage-xray-udp/src/main/java/zipkin2/storage/xray_udp/UDPMessageEncoder.java#L57 ``` if (span.kind() != null) writer.name("namespace").value("remote"); ``` to ``` if (span.kind() != null) { if(span.remoteEndpoint() != null && span.remoteEndpoint().serviceName() !=...

Seems you are right. I will give a try as early as possible.

@adriancole sorry for late reply. I have checked and [modified] as you wrote. Seems "remote" is mandatory. It starts to become visible when I set "http.url". I have checked brave's...