Adrian Cole

Results 360 issues of Adrian Cole

In a recent pull request to zipkin, @devinsba noticed we are using the debug distroless image. We should be aware if this is adding heft to our based image which...

So, we should figure out how to cut images mostly for master, but possibly for feature branches also. This is just a dockerfile edit, but maybe helpful to start elaborating...

According to @dsyer, listing config locations can speed up things that otherwise require scanning. I tried this and it took off a couple hundred ms from the latest image: ```bash...

should have readme for rabbit and a compose file. base image could also be handy to lower size of layers downloaded cc @shakuzen

docker toolbox works fine on OS/X, but docker native might need some work. See https://github.com/openzipkin/docker-zipkin-java/issues/8

The same POST command I use for a local zipkin hangs for the one here in docker, unless I add `-H 'Expect:'`. I'm not sure why.. anyone have ideas? Ex...

_From @jahnkey on June 6, 2016 2:35_ Dears, let me talk about the issue. 1. i deployed zipkin server via docker and all server(collector、cassandra、query、web-UI) run normally ; 2. By the...

zipkin has self-tracing, which can generate pretty interesting stuff based on what zipkin is doing. Another option is to use spigo, which can simulate larger architectures. Here's something we might...

Keep a simple docker-compose for first-time users, but consider docker-compose{,-mysql}.yml using https://docs.docker.com/compose/extends/ for testing. Maybe even go as far as having docker-compose-{common,mysql,cassandra}.yml. The trade-off in the latter case is of...

We are at a point where we could start using docker for integration testing. The closest we have to automated integration is [ZipkinQueryServerFeatureTest](https://github.com/openzipkin/zipkin/blob/master/zipkin-query/src/test/scala/com/twitter/zipkin/query/ZipkinQueryServerFeatureTest.scala), as this actually issues GET requests against...