Chris Gray

Results 15 comments of Chris Gray

I believe that this would conform to the spec. There is conversation on open-telemetry/opentelemetry-java-contrib#65 and open-telemetry/opentelemetry-specification#1597 that lead me to this belief, but I may have misinterpreted.

I am using the javaagent with Spring Boot. The name does get changed somewhere down the line, but at the time that the sampling decision is made it seems to...

Thanks for checking in! I tried to set up a test today but I'm running into issues with C++ compilation. I don't do much C++ development so it's likely I...

To expand on @nickgooding's comment, if you use gazelle from within bazel, then putting the following in the `WORKSPACE` file worked for me: ```starlark ############################################################ # Define your own dependencies...

Yeah I'm not sure. I just learned about the `extra_args` and would be happy to use that if you don't want an explicit param. I started the PR before I...

I do see the example custom resolver in the examples directory. Perhaps that would be the way to go.

Thanks. I'm requesting the feature that allows for matching on parameters. I have used the custom nullability annotations that you mentioned, which is probably good enough for my personal use...

For what it's worth, it appears that boringssl is supported already. See https://github.com/google/s2geometry/blob/5b5eccd54a08ae03b4467e79ffbb076d0b5f221e/src/s2/util/math/exactfloat/exactfloat.cc#L67 which appears to be the only place that OpenSSL / boringssl is used.

I created https://github.com/chrismgrayftsinc/s2geometry/tree/bazel as a proof of concept. It compiles, but I have no idea if it works. If a maintainer is interested in a PR, let me know and...

@jmr I use boringssl here: https://github.com/chrismgrayftsinc/s2geometry/commit/df42fefaf6aafe2b66ee072f7529a11cd7ec0bb7#diff-75c3ab7c9e0e33383d592e445ca6474cf69fc07110a420f0069c7e2e2798691dR14 In my reading, that's the only place where OpenSSL is used, but I could be wrong.