Created
October 20, 2018 06:10
-
-
Save ariefrahmansyah/89cecbd7f933f80a9258c0028c92a2f3 to your computer and use it in GitHub Desktop.
Compare glide novendor and go list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# To ensure that migrating from glide novendor to go list is giving us equal result. | |
# https://github.com/jaegertracing/jaeger/pull/1127 | |
GLIDE_PKGS=$(glide novendor | sort | grep -v -e ./thrift-gen/... -e ./swagger-gen/... -e ./examples/... -e ./scripts/...) | |
GO_PKGS=$(go list ./... | grep -v -e examples -e scripts -e swagger-gen -e thrift-gen) | |
GOCACHE="/Users/ariefrahmansyah/Library/Caches/go-build" | |
clear_cache() { | |
rm -rf ${GOCACHE} | |
} | |
RACE="-race" | |
GOTEST="go test -v ${RACE}" | |
echo "Comparing go list command..." | |
LIST_GLIDE_LC=$(go list ${GLIDE_PKGS} | wc -l) | |
LIST_GO_LC=$(go list ${GO_PKGS} | wc -l) | |
if [ ${LIST_GLIDE_LC} != ${LIST_GO_LC} ]; then echo "go list result are not same"; exit 1; fi | |
echo "Comparing go test command..." | |
clear_cache | |
TEST_GLIDE=$(${GOTEST} ${GLIDE_PKGS} > test_glide.out) | |
clear_cache | |
TEST_GO=$(${GOTEST} ${GO_PKGS} > test_go.out) | |
TEST_GLIDE_LC=$(cat test_glide.out | wc -l) | |
TEST_GO_LC=$(cat test_go.out | wc -l) | |
if [ ${TEST_GLIDE_LC} != ${TEST_GO_LC} ]; then echo "go test result are not same"; exit 1; fi | |
echo "Comparing go vet command..." | |
clear_cache | |
go vet ${GLIDE_PKGS} > vet_glide.out | |
clear_cache | |
go vet ${GO_PKGS} > vet_go.out | |
if [ "$(cat vet_glide.out)" != "$(cat vet_go.out)" ]; then echo "go vet result are not same"; exit 1; fi | |
echo "Comparing golint command..." | |
GOLINT_GLIDE_LC=$(golint ${GLIDE_PKGS} | wc -l) | |
GOLINT_GO_LC=$(golint ${GO_PKGS} | wc -l) | |
if [ ${GOLINT_GLIDE_LC} != ${GOLINT_GO_LC} ]; then echo "golint result are not same"; exit 1; fi | |
echo "Comparing gosec command..." | |
GOSEC="gosec -exclude=G104,G107" | |
GOSEC_GLIDE=$(${GOSEC} -log gosec_glide.log ${GLIDE_PKGS} > gosec_glide.out) | |
GOSEC_GO=$(${GOSEC} -log gosec_go.log ${GO_PKGS} > gosec_go.out) | |
GOSEC_GLIDE_LOG_LC=$(cat gosec_glide.log | wc -l) | |
GOSEC_GO_LOG_LC=$(cat gosec_go.log | wc -l) | |
if [ "$(cat gosec_glide.out)" != "$(cat gosec_go.out)" ]; then echo "gosec result are not same"; exit 1; fi | |
if [ ${GOSEC_GLIDE_LOG_LC} != ${GOSEC_GO_LOG_LC} ]; then echo "gosec log are not same"; exit 1; fi | |
echo "Comparing gosimple command..." | |
GOSIMPLE_GLIDE_LC=$(gosimple ${GLIDE_PKGS} | wc -l) | |
GOSIMPLE_GO_LC=$(gosimple ${GO_PKGS} | wc -l) | |
if [ ${GOSIMPLE_GLIDE_LC} != ${GOSIMPLE_GO_LC} ]; then echo "gosimple result are not same"; exit 1; fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[gosec] 2018/10/20 14:08:00 including rules: default | |
[gosec] 2018/10/20 14:08:00 excluding rules: G104,G107 | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/customtransports | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2 | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/processors | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/all-in-one | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/builder | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/builder | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/model | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/env | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/flags | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/builder | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/decorator | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/actual/statik | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/json | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/prototest | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cache | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/config | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql/testutils | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/metrics | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/config | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/config | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/healthcheck | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/consumer | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/producer | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/memory/config | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/metrics | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/multierror | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/queue | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/recoveryhandler | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/testutils | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/pkg/distributedlock/cassandra | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/samplingstore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/savetracetest | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/integration | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore/mocks | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/metrics | |
[gosec] 2018/10/20 14:08:00 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/mocks | |
[gosec] 2018/10/20 14:08:04 Checking package: jaeger | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/doc.go | |
[gosec] 2018/10/20 14:08:04 Checking package: main | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/main.go | |
[gosec] 2018/10/20 14:08:04 Checking package: app | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/agent.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/builder.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/flags.go | |
[gosec] 2018/10/20 14:08:04 Checking package: customtransport | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/customtransports/buffered_read_transport.go | |
[gosec] 2018/10/20 14:08:04 Checking package: httpserver | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/collector_proxy.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/manager.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/server.go | |
[gosec] 2018/10/20 14:08:04 Checking package: sampling | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2/constants.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2/ttypes.go | |
[gosec] 2018/10/20 14:08:04 Checking package: processors | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/processors/processor.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/processors/thrift_processor.go | |
[gosec] 2018/10/20 14:08:04 Checking package: reporter | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/reporter.go | |
[gosec] 2018/10/20 14:08:04 Checking package: tchannel | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel/builder.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel/reporter.go | |
[gosec] 2018/10/20 14:08:04 Checking package: servers | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/server.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/tbuffered_server.go | |
[gosec] 2018/10/20 14:08:04 Checking package: thriftudp | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp/transport.go | |
[gosec] 2018/10/20 14:08:04 Checking package: testutils | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/fixture.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/in_memory_reporter.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/mock_baggage_restriction_manager.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/mock_collector.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/mock_sampling_manager.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/thriftudp_client.go | |
[gosec] 2018/10/20 14:08:04 Checking package: main | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/all-in-one/main.go | |
[gosec] 2018/10/20 14:08:04 Checking package: builder | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/builder/builder_options.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/builder/doc.go | |
[gosec] 2018/10/20 14:08:04 Checking package: main | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/main.go | |
[gosec] 2018/10/20 14:08:04 Checking package: app | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/http_handler.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/metrics.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/model_consumer.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/options.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/service_name_normalizer.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/span_handler.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/span_processor.go | |
[gosec] 2018/10/20 14:08:04 Checking package: builder | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/builder/builder_flags.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/builder/span_handler_builder.go | |
[gosec] 2018/10/20 14:08:04 Checking package: sampling | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/handler.go | |
[gosec] 2018/10/20 14:08:04 Checking package: model | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/model/sampling.go | |
[gosec] 2018/10/20 14:08:04 Checking package: strategystore | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore/factory.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore/interface.go | |
[gosec] 2018/10/20 14:08:04 Checking package: sanitizer | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/sanitizer.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/service_name_sanitizer.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/utf8_sanitizer.go | |
[gosec] 2018/10/20 14:08:04 Checking package: cache | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/auto_refresh_cache.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/cache.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/service_alias.go | |
[gosec] 2018/10/20 14:08:04 Checking package: mocks | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks/ServiceAliasMappingExternalSource.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks/ServiceAliasMappingStorage.go | |
[gosec] 2018/10/20 14:08:04 Checking package: zipkin | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin/span_sanitizer.go | |
[gosec] 2018/10/20 14:08:04 Checking package: zipkin | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/annotation.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/http_handler.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/json.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/jsonv2.go | |
[gosec] 2018/10/20 14:08:04 Checking package: env | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/env/command.go | |
[gosec] 2018/10/20 14:08:04 Checking package: flags | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/flags/doc.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/flags/flags.go | |
[gosec] 2018/10/20 14:08:04 Checking package: main | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/main.go | |
[gosec] 2018/10/20 14:08:04 Checking package: app | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/flags.go | |
[gosec] 2018/10/20 14:08:04 Checking package: builder | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/builder/builder.go | |
[gosec] 2018/10/20 14:08:04 Checking package: consumer | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/committing_processor.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer_metrics.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/message.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/processor_factory.go | |
[gosec] 2018/10/20 14:08:04 Checking package: mocks | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks/Consumer.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks/Message.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks/PartitionConsumer.go | |
[gosec] 2018/10/20 14:08:04 Checking package: offset | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset/concurrent_list.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset/manager.go | |
[gosec] 2018/10/20 14:08:04 Checking package: processor | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/metrics_decorator.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/parallel_processor.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/span_processor.go | |
[gosec] 2018/10/20 14:08:04 Checking package: decorator | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/decorator/retry.go | |
[gosec] 2018/10/20 14:08:04 Checking package: mocks | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/mocks/SpanProcessor.go | |
[gosec] 2018/10/20 14:08:04 Checking package: main | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/main.go | |
[gosec] 2018/10/20 14:08:04 Checking package: app | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/adjusters.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/flags.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/handler.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/handler_options.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/query_parser.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/static_handler.go | |
[gosec] 2018/10/20 14:08:04 Checking package: ui | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/doc.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder.go | |
[gosec] 2018/10/20 14:08:04 Checking package: statik | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/actual/statik/doc.go | |
[gosec] 2018/10/20 14:08:04 Checking package: statik | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik/doc.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik/statik.go | |
[gosec] 2018/10/20 14:08:04 Checking package: main | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/main.go | |
[gosec] 2018/10/20 14:08:04 Checking package: services | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/agent.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/common.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/query.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/tracehandler.go | |
[gosec] 2018/10/20 14:08:04 Checking package: mocks | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks/AgentService.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks/QueryService.go | |
[gosec] 2018/10/20 14:08:04 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks/T.go | |
[gosec] 2018/10/20 14:08:05 Checking package: model | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/dependencies.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/hash.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/ids.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/keyvalue.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/model.pb.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/model.pb.gw.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/process.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/sort.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/span.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/spanref.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/time.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/trace.go | |
[gosec] 2018/10/20 14:08:05 Checking package: adjuster | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/adjuster.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/bad_span_references.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/clockskew.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/ip_tag.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/sort_log_fields.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/span_id_deduper.go | |
[gosec] 2018/10/20 14:08:05 Checking package: converter | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking package: json | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json/from_domain.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json/process_hashtable.go | |
[gosec] 2018/10/20 14:08:05 Checking package: thrift | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking package: jaeger | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger/from_domain.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger/to_domain.go | |
[gosec] 2018/10/20 14:08:05 Checking package: zipkin | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin/process_hashtable.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin/to_domain.go | |
[gosec] 2018/10/20 14:08:05 Checking package: json | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/json/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/json/model.go | |
[gosec] 2018/10/20 14:08:05 Checking package: prototest | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/prototest/model_test.pb.go | |
[gosec] 2018/10/20 14:08:05 Checking package: pkg | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking package: cache | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cache/cache.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cache/lru.go | |
[gosec] 2018/10/20 14:08:05 Checking package: cassandra | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/session.go | |
[gosec] 2018/10/20 14:08:05 Checking package: config | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/config/config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: gocql | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql/gocql.go | |
[gosec] 2018/10/20 14:08:05 Checking package: testutils | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql/testutils/udt.go | |
[gosec] 2018/10/20 14:08:05 Checking package: metrics | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/metrics/table.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks/Iterator.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks/Query.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks/Session.go | |
[gosec] 2018/10/20 14:08:05 Checking package: config | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/config/config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: discovery | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/discoverer.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/notifier.go | |
[gosec] 2018/10/20 14:08:05 Checking package: peerlistmgr | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr/options.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr/peer_list_mgr.go | |
[gosec] 2018/10/20 14:08:05 Checking package: distributedlock | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock/interface.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock/mocks/Lock.go | |
[gosec] 2018/10/20 14:08:05 Checking package: es | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/client.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/wrapper.go | |
[gosec] 2018/10/20 14:08:05 Checking package: config | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/config/config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/Client.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/IndexService.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/IndicesCreateService.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/IndicesExistsService.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/MultiSearchService.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/SearchService.go | |
[gosec] 2018/10/20 14:08:05 Checking package: healthcheck | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/healthcheck/handler.go | |
[gosec] 2018/10/20 14:08:05 Checking package: consumer | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/consumer/config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/mocks/Marshaller.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/mocks/Unmarshaller.go | |
[gosec] 2018/10/20 14:08:05 Checking package: producer | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/producer/config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: config | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/memory/config/config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: metrics | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/metrics/builder.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/metrics/package.go | |
[gosec] 2018/10/20 14:08:05 Checking package: multierror | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/multierror/multierror.go | |
[gosec] 2018/10/20 14:08:05 Checking package: queue | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/queue/bounded_queue.go | |
[gosec] 2018/10/20 14:08:05 Checking package: recoveryhandler | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/recoveryhandler/zap.go | |
[gosec] 2018/10/20 14:08:05 Checking package: testutils | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/testutils/logger.go | |
[gosec] 2018/10/20 14:08:05 Checking package: version | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version/build.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version/command.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version/handler.go | |
[gosec] 2018/10/20 14:08:05 Checking package: plugin | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/configurable.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking package: cassandra | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/pkg/distributedlock/cassandra/lock.go | |
[gosec] 2018/10/20 14:08:05 Checking package: strategystore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/factory_config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: static | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/constants.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/options.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/strategy.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/strategy_store.go | |
[gosec] 2018/10/20 14:08:05 Checking package: storage | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/factory_config.go | |
[gosec] 2018/10/20 14:08:05 Checking package: cassandra | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/options.go | |
[gosec] 2018/10/20 14:08:05 Checking package: dependencystore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore/model.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore/storage.go | |
[gosec] 2018/10/20 14:08:05 Checking package: samplingstore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/samplingstore/storage.go | |
[gosec] 2018/10/20 14:08:05 Checking package: main | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/savetracetest/main.go | |
[gosec] 2018/10/20 14:08:05 Checking package: spanstore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/operation_names.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/reader.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/service_names.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/writer.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/writer_options.go | |
[gosec] 2018/10/20 14:08:05 Checking package: dbmodel | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/converter.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/cql_udt.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/index_filter.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/log_fields_filter.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/model.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/tag_filter.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/unique_ids.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/unique_tags.go | |
[gosec] 2018/10/20 14:08:05 Checking package: es | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/options.go | |
[gosec] 2018/10/20 14:08:05 Checking package: dependencystore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/schema.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/storage.go | |
[gosec] 2018/10/20 14:08:05 Checking package: dbmodel | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel/converter.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel/model.go | |
[gosec] 2018/10/20 14:08:05 Checking package: spanstore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/reader.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/schema.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/service_operation.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/writer.go | |
[gosec] 2018/10/20 14:08:05 Checking package: dbmodel | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel/from_domain.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel/model.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel/to_domain.go | |
[gosec] 2018/10/20 14:08:05 Checking package: integration | |
[gosec] 2018/10/20 14:08:05 Checking package: kafka | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/marshaller.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/options.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/unmarshaller.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/writer.go | |
[gosec] 2018/10/20 14:08:05 Checking package: memory | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory/memory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory/options.go | |
[gosec] 2018/10/20 14:08:05 Checking package: storage | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/doc.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/factory.go | |
[gosec] 2018/10/20 14:08:05 Checking package: dependencystore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore/interface.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore/mocks/Reader.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/mocks/ArchiveFactory.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/mocks/Factory.go | |
[gosec] 2018/10/20 14:08:05 Checking package: samplingstore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore/interface.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore/mocks/Store.go | |
[gosec] 2018/10/20 14:08:05 Checking package: spanstore | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/composite.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/interface.go | |
[gosec] 2018/10/20 14:08:05 Checking package: metrics | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/metrics/decorator.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/metrics/write_metrics.go | |
[gosec] 2018/10/20 14:08:05 Checking package: mocks | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/mocks/Reader.go | |
[gosec] 2018/10/20 14:08:05 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/mocks/Writer.go |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Results: | |
Summary: | |
Files: 239 | |
Lines: 27309 | |
Nosec: 3 | |
Issues: 0 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[gosec] 2018/10/20 14:08:05 including rules: default | |
[gosec] 2018/10/20 14:08:05 excluding rules: G104,G107 | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/customtransports | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2 | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/processors | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/all-in-one | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/builder | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/builder | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/model | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/env | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/flags | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/builder | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/decorator | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/actual/statik | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/json | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/prototest | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cache | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/config | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql/testutils | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/metrics | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/config | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/config | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/healthcheck | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/consumer | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/producer | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/memory/config | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/metrics | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/multierror | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/queue | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/recoveryhandler | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/testutils | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/pkg/distributedlock/cassandra | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/samplingstore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/savetracetest | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/integration | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore/mocks | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/metrics | |
[gosec] 2018/10/20 14:08:05 Searching directory: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/mocks | |
[gosec] 2018/10/20 14:08:09 Checking package: jaeger | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking package: main | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/main.go | |
[gosec] 2018/10/20 14:08:09 Checking package: app | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/agent.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/builder.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/flags.go | |
[gosec] 2018/10/20 14:08:09 Checking package: customtransport | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/customtransports/buffered_read_transport.go | |
[gosec] 2018/10/20 14:08:09 Checking package: httpserver | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/collector_proxy.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/manager.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/server.go | |
[gosec] 2018/10/20 14:08:09 Checking package: sampling | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2/constants.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2/ttypes.go | |
[gosec] 2018/10/20 14:08:09 Checking package: processors | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/processors/processor.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/processors/thrift_processor.go | |
[gosec] 2018/10/20 14:08:09 Checking package: reporter | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/reporter.go | |
[gosec] 2018/10/20 14:08:09 Checking package: tchannel | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel/builder.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel/reporter.go | |
[gosec] 2018/10/20 14:08:09 Checking package: servers | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/server.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/tbuffered_server.go | |
[gosec] 2018/10/20 14:08:09 Checking package: thriftudp | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp/transport.go | |
[gosec] 2018/10/20 14:08:09 Checking package: testutils | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/fixture.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/in_memory_reporter.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/mock_baggage_restriction_manager.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/mock_collector.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/mock_sampling_manager.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/agent/app/testutils/thriftudp_client.go | |
[gosec] 2018/10/20 14:08:09 Checking package: main | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/all-in-one/main.go | |
[gosec] 2018/10/20 14:08:09 Checking package: builder | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/builder/builder_options.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/builder/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking package: main | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/main.go | |
[gosec] 2018/10/20 14:08:09 Checking package: app | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/http_handler.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/metrics.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/model_consumer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/options.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/service_name_normalizer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/span_handler.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/span_processor.go | |
[gosec] 2018/10/20 14:08:09 Checking package: builder | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/builder/builder_flags.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/builder/span_handler_builder.go | |
[gosec] 2018/10/20 14:08:09 Checking package: sampling | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/handler.go | |
[gosec] 2018/10/20 14:08:09 Checking package: model | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/model/sampling.go | |
[gosec] 2018/10/20 14:08:09 Checking package: strategystore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore/interface.go | |
[gosec] 2018/10/20 14:08:09 Checking package: sanitizer | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/sanitizer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/service_name_sanitizer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/utf8_sanitizer.go | |
[gosec] 2018/10/20 14:08:09 Checking package: cache | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/auto_refresh_cache.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/cache.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/service_alias.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks/ServiceAliasMappingExternalSource.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks/ServiceAliasMappingStorage.go | |
[gosec] 2018/10/20 14:08:09 Checking package: zipkin | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin/span_sanitizer.go | |
[gosec] 2018/10/20 14:08:09 Checking package: zipkin | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/annotation.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/http_handler.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/json.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/collector/app/zipkin/jsonv2.go | |
[gosec] 2018/10/20 14:08:09 Checking package: env | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/env/command.go | |
[gosec] 2018/10/20 14:08:09 Checking package: flags | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/flags/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/flags/flags.go | |
[gosec] 2018/10/20 14:08:09 Checking package: main | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/main.go | |
[gosec] 2018/10/20 14:08:09 Checking package: app | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/flags.go | |
[gosec] 2018/10/20 14:08:09 Checking package: builder | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/builder/builder.go | |
[gosec] 2018/10/20 14:08:09 Checking package: consumer | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/committing_processor.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer_metrics.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/message.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/processor_factory.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks/Consumer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks/Message.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks/PartitionConsumer.go | |
[gosec] 2018/10/20 14:08:09 Checking package: offset | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset/concurrent_list.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset/manager.go | |
[gosec] 2018/10/20 14:08:09 Checking package: processor | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/metrics_decorator.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/parallel_processor.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/span_processor.go | |
[gosec] 2018/10/20 14:08:09 Checking package: decorator | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/decorator/retry.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/processor/mocks/SpanProcessor.go | |
[gosec] 2018/10/20 14:08:09 Checking package: main | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/main.go | |
[gosec] 2018/10/20 14:08:09 Checking package: app | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/adjusters.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/flags.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/handler.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/handler_options.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/query_parser.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/static_handler.go | |
[gosec] 2018/10/20 14:08:09 Checking package: ui | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder.go | |
[gosec] 2018/10/20 14:08:09 Checking package: statik | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/actual/statik/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking package: statik | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik/statik.go | |
[gosec] 2018/10/20 14:08:09 Checking package: main | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/main.go | |
[gosec] 2018/10/20 14:08:09 Checking package: services | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/agent.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/common.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/query.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/tracehandler.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks/AgentService.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks/QueryService.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/crossdock/services/mocks/T.go | |
[gosec] 2018/10/20 14:08:09 Checking package: model | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/dependencies.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/hash.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/ids.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/keyvalue.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/model.pb.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/model.pb.gw.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/process.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/sort.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/span.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/spanref.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/time.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/trace.go | |
[gosec] 2018/10/20 14:08:09 Checking package: adjuster | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/adjuster.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/bad_span_references.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/clockskew.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/ip_tag.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/sort_log_fields.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/adjuster/span_id_deduper.go | |
[gosec] 2018/10/20 14:08:09 Checking package: converter | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking package: json | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json/from_domain.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/json/process_hashtable.go | |
[gosec] 2018/10/20 14:08:09 Checking package: thrift | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking package: jaeger | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger/from_domain.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/jaeger/to_domain.go | |
[gosec] 2018/10/20 14:08:09 Checking package: zipkin | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin/process_hashtable.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/converter/thrift/zipkin/to_domain.go | |
[gosec] 2018/10/20 14:08:09 Checking package: json | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/json/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/json/model.go | |
[gosec] 2018/10/20 14:08:09 Checking package: prototest | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/model/prototest/model_test.pb.go | |
[gosec] 2018/10/20 14:08:09 Checking package: pkg | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking package: cache | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cache/cache.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cache/lru.go | |
[gosec] 2018/10/20 14:08:09 Checking package: cassandra | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/session.go | |
[gosec] 2018/10/20 14:08:09 Checking package: config | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/config/config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: gocql | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql/gocql.go | |
[gosec] 2018/10/20 14:08:09 Checking package: testutils | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/gocql/testutils/udt.go | |
[gosec] 2018/10/20 14:08:09 Checking package: metrics | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/metrics/table.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks/Iterator.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks/Query.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/cassandra/mocks/Session.go | |
[gosec] 2018/10/20 14:08:09 Checking package: config | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/config/config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: discovery | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/discoverer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/notifier.go | |
[gosec] 2018/10/20 14:08:09 Checking package: peerlistmgr | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr/options.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr/peer_list_mgr.go | |
[gosec] 2018/10/20 14:08:09 Checking package: distributedlock | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock/interface.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/distributedlock/mocks/Lock.go | |
[gosec] 2018/10/20 14:08:09 Checking package: es | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/client.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/wrapper.go | |
[gosec] 2018/10/20 14:08:09 Checking package: config | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/config/config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/Client.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/IndexService.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/IndicesCreateService.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/IndicesExistsService.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/MultiSearchService.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/es/mocks/SearchService.go | |
[gosec] 2018/10/20 14:08:09 Checking package: healthcheck | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/healthcheck/handler.go | |
[gosec] 2018/10/20 14:08:09 Checking package: consumer | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/consumer/config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/mocks/Marshaller.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/mocks/Unmarshaller.go | |
[gosec] 2018/10/20 14:08:09 Checking package: producer | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/kafka/producer/config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: config | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/memory/config/config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: metrics | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/metrics/builder.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/metrics/package.go | |
[gosec] 2018/10/20 14:08:09 Checking package: multierror | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/multierror/multierror.go | |
[gosec] 2018/10/20 14:08:09 Checking package: queue | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/queue/bounded_queue.go | |
[gosec] 2018/10/20 14:08:09 Checking package: recoveryhandler | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/recoveryhandler/zap.go | |
[gosec] 2018/10/20 14:08:09 Checking package: testutils | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/testutils/logger.go | |
[gosec] 2018/10/20 14:08:09 Checking package: version | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version/build.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version/command.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/pkg/version/handler.go | |
[gosec] 2018/10/20 14:08:09 Checking package: plugin | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/configurable.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking package: cassandra | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/pkg/distributedlock/cassandra/lock.go | |
[gosec] 2018/10/20 14:08:09 Checking package: strategystore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/factory_config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: static | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/constants.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/options.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/strategy.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static/strategy_store.go | |
[gosec] 2018/10/20 14:08:09 Checking package: storage | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/factory_config.go | |
[gosec] 2018/10/20 14:08:09 Checking package: cassandra | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/options.go | |
[gosec] 2018/10/20 14:08:09 Checking package: dependencystore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore/model.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore/storage.go | |
[gosec] 2018/10/20 14:08:09 Checking package: samplingstore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/samplingstore/storage.go | |
[gosec] 2018/10/20 14:08:09 Checking package: main | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/savetracetest/main.go | |
[gosec] 2018/10/20 14:08:09 Checking package: spanstore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/operation_names.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/reader.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/service_names.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/writer.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/writer_options.go | |
[gosec] 2018/10/20 14:08:09 Checking package: dbmodel | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/converter.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/cql_udt.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/index_filter.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/log_fields_filter.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/model.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/tag_filter.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/unique_ids.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel/unique_tags.go | |
[gosec] 2018/10/20 14:08:09 Checking package: es | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/options.go | |
[gosec] 2018/10/20 14:08:09 Checking package: dependencystore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/schema.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/storage.go | |
[gosec] 2018/10/20 14:08:09 Checking package: dbmodel | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel/converter.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel/model.go | |
[gosec] 2018/10/20 14:08:09 Checking package: spanstore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/reader.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/schema.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/service_operation.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/writer.go | |
[gosec] 2018/10/20 14:08:09 Checking package: dbmodel | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel/from_domain.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel/model.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel/to_domain.go | |
[gosec] 2018/10/20 14:08:09 Checking package: integration | |
[gosec] 2018/10/20 14:08:09 Checking package: kafka | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/marshaller.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/options.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/unmarshaller.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/kafka/writer.go | |
[gosec] 2018/10/20 14:08:09 Checking package: memory | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory/memory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/plugin/storage/memory/options.go | |
[gosec] 2018/10/20 14:08:09 Checking package: storage | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/doc.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/factory.go | |
[gosec] 2018/10/20 14:08:09 Checking package: dependencystore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore/interface.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/dependencystore/mocks/Reader.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/mocks/ArchiveFactory.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/mocks/Factory.go | |
[gosec] 2018/10/20 14:08:09 Checking package: samplingstore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore/interface.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/samplingstore/mocks/Store.go | |
[gosec] 2018/10/20 14:08:09 Checking package: spanstore | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/composite.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/interface.go | |
[gosec] 2018/10/20 14:08:09 Checking package: metrics | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/metrics/decorator.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/metrics/write_metrics.go | |
[gosec] 2018/10/20 14:08:09 Checking package: mocks | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/mocks/Reader.go | |
[gosec] 2018/10/20 14:08:09 Checking file: /Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/storage/spanstore/mocks/Writer.go |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Results: | |
Summary: | |
Files: 239 | |
Lines: 27309 | |
Nosec: 3 | |
Issues: 0 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
? github.com/jaegertracing/jaeger [no test files] | |
? github.com/jaegertracing/jaeger/cmd/agent [no test files] | |
=== RUN TestAgentStartError | |
--- PASS: TestAgentStartError (0.00s) | |
=== RUN TestAgentSamplingEndpoint | |
--- PASS: TestAgentSamplingEndpoint (2.01s) | |
=== RUN TestAgentMetricsEndpoint | |
--- PASS: TestAgentMetricsEndpoint (2.01s) | |
=== RUN TestBuilderFromConfig | |
--- PASS: TestBuilderFromConfig (0.00s) | |
=== RUN TestBuilderWithExtraReporter | |
--- PASS: TestBuilderWithExtraReporter (0.00s) | |
=== RUN TestBuilderMetrics | |
--- PASS: TestBuilderMetrics (0.00s) | |
=== RUN TestBuilderMetricsHandler | |
--- PASS: TestBuilderMetricsHandler (0.00s) | |
=== RUN TestBuilderMetricsError | |
--- PASS: TestBuilderMetricsError (0.00s) | |
=== RUN TestBuilderWithDiscoveryError | |
--- PASS: TestBuilderWithDiscoveryError (0.00s) | |
=== RUN TestBuilderWithProcessorErrors | |
--- PASS: TestBuilderWithProcessorErrors (0.00s) | |
=== RUN TestBingFlags | |
--- PASS: TestBingFlags (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app 5.076s | |
=== RUN TestTBufferedReadTransport | |
--- PASS: TestTBufferedReadTransport (0.00s) | |
=== RUN TestTBufferedReadTransportEmptyFunctions | |
--- PASS: TestTBufferedReadTransportEmptyFunctions (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/customtransports 1.045s | |
=== RUN TestCollectorProxy | |
--- PASS: TestCollectorProxy (0.01s) | |
=== RUN TestTCollectorProxyClientErrorPropagates | |
--- PASS: TestTCollectorProxyClientErrorPropagates (0.00s) | |
=== RUN TestHTTPHandler | |
=== RUN TestHTTPHandler/request_against_endpoint_/ | |
=== RUN TestHTTPHandler/request_against_endpoint_/sampling | |
=== RUN TestHTTPHandler/request_against_endpoint_/baggage | |
--- PASS: TestHTTPHandler (0.01s) | |
--- PASS: TestHTTPHandler/request_against_endpoint_/ (0.00s) | |
--- PASS: TestHTTPHandler/request_against_endpoint_/sampling (0.00s) | |
--- PASS: TestHTTPHandler/request_against_endpoint_/baggage (0.00s) | |
=== RUN TestHTTPHandlerErrors | |
=== RUN TestHTTPHandlerErrors/no_service_name | |
=== RUN TestHTTPHandlerErrors/sampling_endpoint_too_many_service_names | |
=== RUN TestHTTPHandlerErrors/baggage_endpoint_too_many_service_names | |
=== RUN TestHTTPHandlerErrors/sampler_tcollector_error | |
=== RUN TestHTTPHandlerErrors/baggage_tcollector_error | |
=== RUN TestHTTPHandlerErrors/sampler_marshalling_error | |
=== RUN TestHTTPHandlerErrors/failure_to_write_a_response | |
--- PASS: TestHTTPHandlerErrors (0.02s) | |
--- PASS: TestHTTPHandlerErrors/no_service_name (0.00s) | |
--- PASS: TestHTTPHandlerErrors/sampling_endpoint_too_many_service_names (0.00s) | |
--- PASS: TestHTTPHandlerErrors/baggage_endpoint_too_many_service_names (0.00s) | |
--- PASS: TestHTTPHandlerErrors/sampler_tcollector_error (0.00s) | |
--- PASS: TestHTTPHandlerErrors/baggage_tcollector_error (0.00s) | |
--- PASS: TestHTTPHandlerErrors/sampler_marshalling_error (0.00s) | |
--- PASS: TestHTTPHandlerErrors/failure_to_write_a_response (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/httpserver 1.065s | |
? github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2 [no test files] | |
=== RUN TestNewThriftProcessor_ZeroCount | |
--- PASS: TestNewThriftProcessor_ZeroCount (0.00s) | |
=== RUN TestProcessorWithCompactZipkin | |
--- PASS: TestProcessorWithCompactZipkin (1.31s) | |
=== RUN TestProcessor_HandlerError | |
--- PASS: TestProcessor_HandlerError (0.00s) | |
=== RUN TestJaegerProcessor | |
--- PASS: TestJaegerProcessor (2.65s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/processors 4.988s | |
=== RUN TestMultiReporter | |
--- PASS: TestMultiReporter (0.00s) | |
=== RUN TestMultiReporterErrors | |
--- PASS: TestMultiReporterErrors (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/reporter 1.029s | |
=== RUN TestBuilderFromConfig | |
--- PASS: TestBuilderFromConfig (0.00s) | |
=== RUN TestBuilderWithDiscovery | |
--- PASS: TestBuilderWithDiscovery (0.00s) | |
=== RUN TestBuilderWithCollectorServiceName | |
--- PASS: TestBuilderWithCollectorServiceName (0.00s) | |
=== RUN TestBuilderWithChannel | |
--- PASS: TestBuilderWithChannel (0.00s) | |
=== RUN TestBuilderWithCollectors | |
--- PASS: TestBuilderWithCollectors (0.00s) | |
=== RUN TestZipkinTChannelReporterSuccess | |
--- PASS: TestZipkinTChannelReporterSuccess (0.11s) | |
=== RUN TestZipkinTChannelReporterFailure | |
--- PASS: TestZipkinTChannelReporterFailure (0.00s) | |
=== RUN TestJaegerTChannelReporterSuccess | |
--- PASS: TestJaegerTChannelReporterSuccess (0.10s) | |
=== RUN TestJaegerTChannelReporterFailure | |
--- PASS: TestJaegerTChannelReporterFailure (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel 1.250s | |
=== RUN TestReadBuf_EOF | |
--- PASS: TestReadBuf_EOF (0.00s) | |
=== RUN TestReadBuf_Read | |
--- PASS: TestReadBuf_Read (0.00s) | |
=== RUN TestTBufferedServer | |
=== RUN TestTBufferedServer/processed | |
=== RUN TestTBufferedServer/dropped | |
--- PASS: TestTBufferedServer (0.03s) | |
--- PASS: TestTBufferedServer/processed (0.01s) | |
--- PASS: TestTBufferedServer/dropped (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/servers 1.052s | |
=== RUN TestNewTUDPClientTransport | |
--- PASS: TestNewTUDPClientTransport (0.00s) | |
=== RUN TestNewTUDPServerTransport | |
--- PASS: TestNewTUDPServerTransport (0.00s) | |
=== RUN TestTUDPServerTransportIsOpen | |
--- PASS: TestTUDPServerTransportIsOpen (0.01s) | |
=== RUN TestWriteRead | |
--- PASS: TestWriteRead (0.00s) | |
=== RUN TestDoubleCloseError | |
--- PASS: TestDoubleCloseError (0.00s) | |
=== RUN TestConnClosedReadWrite | |
--- PASS: TestConnClosedReadWrite (0.00s) | |
=== RUN TestHugeWrite | |
--- PASS: TestHugeWrite (0.00s) | |
=== RUN TestFlushErrors | |
--- PASS: TestFlushErrors (0.00s) | |
=== RUN TestResetInFlush | |
--- PASS: TestResetInFlush (0.00s) | |
=== RUN TestCreateClient | |
--- PASS: TestCreateClient (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp 1.038s | |
=== RUN TestInMemoryReporter | |
--- PASS: TestInMemoryReporter (0.00s) | |
=== RUN TestMockTCollectorSampling | |
--- PASS: TestMockTCollectorSampling (0.02s) | |
=== RUN TestMockTCollectorBaggage | |
--- PASS: TestMockTCollectorBaggage (0.02s) | |
=== RUN TestMockTCollectorZipkin | |
--- PASS: TestMockTCollectorZipkin (0.02s) | |
=== RUN TestMockTCollector | |
--- PASS: TestMockTCollector (0.01s) | |
=== RUN TestMockTCollectorErrors | |
--- PASS: TestMockTCollectorErrors (0.00s) | |
=== RUN TestNewZipkinThriftUDPClient | |
--- PASS: TestNewZipkinThriftUDPClient (0.00s) | |
=== RUN TestNewJaegerThriftUDPClient | |
--- PASS: TestNewJaegerThriftUDPClient (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/testutils 1.095s | |
? github.com/jaegertracing/jaeger/cmd/all-in-one [no test files] | |
=== RUN TestApplyOptions | |
--- PASS: TestApplyOptions (0.00s) | |
=== RUN TestApplyNoOptions | |
--- PASS: TestApplyNoOptions (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/builder 1.034s | |
? github.com/jaegertracing/jaeger/cmd/collector [no test files] | |
=== RUN TestThriftFormat | |
--- PASS: TestThriftFormat (0.01s) | |
=== RUN TestViaClient | |
--- PASS: TestViaClient (0.01s) | |
=== RUN TestBadBody | |
--- PASS: TestBadBody (0.00s) | |
=== RUN TestWrongFormat | |
--- PASS: TestWrongFormat (0.00s) | |
=== RUN TestMalformedFormat | |
--- PASS: TestMalformedFormat (0.00s) | |
=== RUN TestCannotReadBodyFromRequest | |
--- PASS: TestCannotReadBodyFromRequest (0.00s) | |
=== RUN TestProcessorMetrics | |
--- PASS: TestProcessorMetrics (0.00s) | |
=== RUN TestNewCountsBySvc | |
--- PASS: TestNewCountsBySvc (0.00s) | |
=== RUN TestChainedProcessSpan | |
--- PASS: TestChainedProcessSpan (0.00s) | |
=== RUN TestAllOptionSet | |
--- PASS: TestAllOptionSet (0.00s) | |
=== RUN TestNoOptionsSet | |
--- PASS: TestNoOptionsSet (0.00s) | |
=== RUN TestServiceNameReplacer | |
--- PASS: TestServiceNameReplacer (0.00s) | |
=== RUN TestJaegerSpanHandler | |
--- PASS: TestJaegerSpanHandler (0.00s) | |
=== RUN TestZipkinSpanHandler | |
--- PASS: TestZipkinSpanHandler (0.00s) | |
=== RUN TestBySvcMetrics | |
--- PASS: TestBySvcMetrics (0.01s) | |
=== RUN TestSpanProcessor | |
--- PASS: TestSpanProcessor (0.01s) | |
=== RUN TestSpanProcessorErrors | |
--- PASS: TestSpanProcessorErrors (0.01s) | |
=== RUN TestSpanProcessorBusy | |
--- PASS: TestSpanProcessorBusy (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app 1.091s | |
=== RUN TestNewSpanHandlerBuilder | |
--- PASS: TestNewSpanHandlerBuilder (0.01s) | |
=== RUN TestDefaultSpanFilter | |
--- PASS: TestDefaultSpanFilter (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/builder 1.050s | |
=== RUN TestHandler | |
--- PASS: TestHandler (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sampling 1.028s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sampling/model 1.016s [no tests to run] | |
? github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore [no test files] | |
=== RUN TestSanitize | |
--- PASS: TestSanitize (0.00s) | |
=== RUN TestSanitizeEmptyCache | |
--- PASS: TestSanitizeEmptyCache (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeKV | |
--- PASS: TestUTF8Sanitizer_SanitizeKV (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeServiceName | |
--- PASS: TestUTF8Sanitizer_SanitizeServiceName (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeOperationName | |
--- PASS: TestUTF8Sanitizer_SanitizeOperationName (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeProcessTags | |
--- PASS: TestUTF8Sanitizer_SanitizeProcessTags (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeTags | |
--- PASS: TestUTF8Sanitizer_SanitizeTags (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeLogs | |
--- PASS: TestUTF8Sanitizer_SanitizeLogs (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer 1.041s | |
=== RUN TestConstructor | |
--- PASS: TestConstructor (0.00s) | |
=== RUN TestGetRandomSleepTime | |
--- PASS: TestGetRandomSleepTime (0.00s) | |
=== RUN TestGet | |
--- PASS: TestGet (0.00s) | |
=== RUN TestPut | |
--- PASS: TestPut (0.00s) | |
=== RUN TestInitialize | |
--- PASS: TestInitialize (0.00s) | |
=== RUN TestInitialize_error | |
--- PASS: TestInitialize_error (0.00s) | |
=== RUN TestWarmCache | |
--- PASS: TestWarmCache (0.00s) | |
=== RUN TestRefreshFromStorage | |
--- PASS: TestRefreshFromStorage (0.01s) | |
=== RUN TestRefreshFromStorage_error | |
--- PASS: TestRefreshFromStorage_error (0.01s) | |
=== RUN TestInitializeCacheRefresh | |
--- PASS: TestInitializeCacheRefresh (0.00s) | |
=== RUN TestRefreshFromExternalSource | |
--- PASS: TestRefreshFromExternalSource (0.01s) | |
=== RUN TestUpdateAndSaveToStorage | |
=== RUN TestUpdateAndSaveToStorage/load_error | |
=== RUN TestUpdateAndSaveToStorage/same_cache | |
=== RUN TestUpdateAndSaveToStorage/different_cache | |
--- PASS: TestUpdateAndSaveToStorage (0.00s) | |
--- PASS: TestUpdateAndSaveToStorage/load_error (0.00s) | |
--- PASS: TestUpdateAndSaveToStorage/same_cache (0.00s) | |
--- PASS: TestUpdateAndSaveToStorage/different_cache (0.00s) | |
=== RUN TestIsEmpty | |
--- PASS: TestIsEmpty (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache 1.066s | |
? github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks [no test files] | |
=== RUN TestChainedSanitizer | |
--- PASS: TestChainedSanitizer (0.00s) | |
=== RUN TestSpanDurationSanitizer | |
--- PASS: TestSpanDurationSanitizer (0.00s) | |
=== RUN TestSpanParentIDSanitizer | |
--- PASS: TestSpanParentIDSanitizer (0.00s) | |
=== RUN TestSpanErrorSanitizer | |
--- PASS: TestSpanErrorSanitizer (0.00s) | |
=== RUN TestSpanStartTimeSanitizer | |
--- PASS: TestSpanStartTimeSanitizer (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin 1.025s | |
=== RUN TestCoreChecks | |
--- PASS: TestCoreChecks (0.00s) | |
=== RUN TestFindServiceName | |
--- PASS: TestFindServiceName (0.00s) | |
=== RUN TestViaClient | |
--- PASS: TestViaClient (0.36s) | |
=== RUN TestThriftFormat | |
--- PASS: TestThriftFormat (0.43s) | |
=== RUN TestJsonFormat | |
--- PASS: TestJsonFormat (0.37s) | |
=== RUN TestGzipEncoding | |
--- PASS: TestGzipEncoding (0.47s) | |
=== RUN TestGzipBadBody | |
--- PASS: TestGzipBadBody (0.35s) | |
=== RUN TestMalformedContentType | |
--- PASS: TestMalformedContentType (0.37s) | |
=== RUN TestUnsupportedContentType | |
--- PASS: TestUnsupportedContentType (0.32s) | |
=== RUN TestFormatBadBody | |
--- PASS: TestFormatBadBody (0.27s) | |
=== RUN TestDeserializeWithBadListStart | |
--- PASS: TestDeserializeWithBadListStart (0.00s) | |
=== RUN TestCannotReadBodyFromRequest | |
--- PASS: TestCannotReadBodyFromRequest (0.26s) | |
=== RUN TestSaveSpansV2 | |
--- PASS: TestSaveSpansV2 (0.27s) | |
=== RUN TestDecodeWrongJson | |
--- PASS: TestDecodeWrongJson (0.00s) | |
=== RUN TestUnmarshalEndpoint | |
--- PASS: TestUnmarshalEndpoint (0.00s) | |
=== RUN TestUnmarshalAnnotation | |
--- PASS: TestUnmarshalAnnotation (0.00s) | |
=== RUN TestUnmarshalBinAnnotation | |
--- PASS: TestUnmarshalBinAnnotation (0.00s) | |
=== RUN TestUnmarshalBinAnnotationNumberValue | |
--- PASS: TestUnmarshalBinAnnotationNumberValue (0.00s) | |
=== RUN TestUnmarshalSpan | |
--- PASS: TestUnmarshalSpan (0.00s) | |
=== RUN TestIncorrectSpanIds | |
--- PASS: TestIncorrectSpanIds (0.00s) | |
=== RUN TestEndpointToThrift | |
--- PASS: TestEndpointToThrift (0.00s) | |
=== RUN TestAnnotationToThrift | |
--- PASS: TestAnnotationToThrift (0.00s) | |
=== RUN TestBinaryAnnotationToThrift | |
--- PASS: TestBinaryAnnotationToThrift (0.00s) | |
=== RUN TestSpanToThrift | |
--- PASS: TestSpanToThrift (0.00s) | |
=== RUN TestFixtures | |
--- PASS: TestFixtures (0.00s) | |
=== RUN TestLCFromLocalEndpoint | |
Span({TraceID:2 Name:foo ID:2 ParentID:<nil> Annotations:[] BinaryAnnotations:[BinaryAnnotation({Key:lc Value:[] AnnotationType:STRING Host:Endpoint({Ipv4:170594602 Port:8080 ServiceName:bar Ipv6:[]})})] Debug:false Timestamp:0xc000300e00 Duration:0xc000300da0 TraceIDHigh:<nil>}) | |
--- PASS: TestLCFromLocalEndpoint (0.00s) | |
=== RUN TestKindToThrift | |
--- PASS: TestKindToThrift (0.00s) | |
=== RUN TestRemoteEndpToThrift | |
--- PASS: TestRemoteEndpToThrift (0.00s) | |
=== RUN TestErrIds | |
--- PASS: TestErrIds (0.00s) | |
=== RUN TestErrEndpoints | |
--- PASS: TestErrEndpoints (0.00s) | |
=== RUN TestErrSpans | |
--- PASS: TestErrSpans (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/zipkin 5.088s | |
=== RUN TestCommand | |
--- PASS: TestCommand (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/env 1.043s | |
? github.com/jaegertracing/jaeger/cmd/flags [no test files] | |
? github.com/jaegertracing/jaeger/cmd/ingester [no test files] | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.00s) | |
=== RUN TestFlagDefaults | |
--- PASS: TestFlagDefaults (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app 1.033s | |
? github.com/jaegertracing/jaeger/cmd/ingester/app/builder [no test files] | |
=== RUN TestNewCommittingProcessor | |
--- PASS: TestNewCommittingProcessor (0.00s) | |
<autogenerated>:1: PASS: Process(string) | |
=== RUN TestNewCommittingProcessorError | |
--- PASS: TestNewCommittingProcessorError (0.00s) | |
<autogenerated>:1: PASS: Process(string) | |
=== RUN TestNewCommittingProcessorErrorNoKafkaMessage | |
--- PASS: TestNewCommittingProcessorErrorNoKafkaMessage (0.00s) | |
=== RUN TestConstructor | |
--- PASS: TestConstructor (0.00s) | |
=== RUN TestSaramaConsumerWrapper_MarkPartitionOffset | |
--- PASS: TestSaramaConsumerWrapper_MarkPartitionOffset (0.00s) | |
=== RUN TestSaramaConsumerWrapper_start_Messages | |
2018-10-20T14:06:35.150+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:06:35.150+0800 INFO consumer/consumer.go:73 Starting main loop | |
2018-10-20T14:06:35.152+0800 INFO consumer/consumer.go:149 Starting error handler {"partition": 316} | |
2018-10-20T14:06:35.152+0800 INFO consumer/consumer.go:102 Starting message handler {"partition": 316} | |
2018-10-20T14:06:35.152+0800 DEBUG consumer/consumer.go:121 Got msg {"msg": {"Key":null,"Value":null,"Topic":"morekuzambu","Partition":316,"Offset":1,"Timestamp":"0001-01-01T00:00:00Z","BlockTimestamp":"0001-01-01T00:00:00Z","Headers":null}} | |
2018-10-20T14:06:35.153+0800 INFO consumer/processor_factory.go:62 Creating new processors {"partition": 316} | |
2018-10-20T14:06:35.153+0800 DEBUG processor/parallel_processor.go:50 Spawning goroutines to process messages {"num_routines": 1} | |
2018-10-20T14:06:35.154+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:06:35.154+0800 INFO consumer/consumer.go:118 Message channel closed. {"partition": 316} | |
2018-10-20T14:06:35.154+0800 DEBUG processor/parallel_processor.go:75 Initiated shutdown of processor goroutines | |
2018-10-20T14:06:35.155+0800 INFO processor/parallel_processor.go:78 Completed shutdown of processor goroutines | |
2018-10-20T14:06:35.155+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 316} | |
2018-10-20T14:06:35.155+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:06:35.155+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 316} | |
2018-10-20T14:06:35.155+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:06:35.155+0800 INFO consumer/consumer.go:158 Finished handling errors {"partition": 316} | |
2018-10-20T14:06:35.156+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:06:35.156+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:06:35.156+0800 INFO consumer/consumer.go:97 Closing parent consumer | |
2018-10-20T14:06:35.156+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
--- PASS: TestSaramaConsumerWrapper_start_Messages (0.01s) | |
<autogenerated>:1: PASS: Process(*consumer.saramaMessageWrapper) | |
=== RUN TestSaramaConsumerWrapper_start_Errors | |
2018-10-20T14:06:35.157+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:06:35.157+0800 INFO consumer/consumer.go:73 Starting main loop | |
2018-10-20T14:06:35.157+0800 INFO consumer/consumer.go:102 Starting message handler {"partition": 316} | |
2018-10-20T14:06:35.158+0800 INFO consumer/consumer.go:149 Starting error handler {"partition": 316} | |
2018-10-20T14:06:35.158+0800 ERROR consumer/consumer.go:156 Error consuming from Kafka {"error": "kafka: error while consuming morekuzambu/316: Daisy, Daisy"} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).handleErrors | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:156 | |
2018-10-20T14:06:35.159+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:06:35.159+0800 INFO consumer/consumer.go:118 Message channel closed. {"partition": 316} | |
2018-10-20T14:06:35.159+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 316} | |
2018-10-20T14:06:35.159+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:06:35.159+0800 INFO consumer/consumer.go:158 Finished handling errors {"partition": 316} | |
2018-10-20T14:06:35.159+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 316} | |
2018-10-20T14:06:35.160+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:06:35.161+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:06:35.161+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:06:35.161+0800 INFO consumer/consumer.go:97 Closing parent consumer | |
2018-10-20T14:06:35.162+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
--- PASS: TestSaramaConsumerWrapper_start_Errors (0.01s) | |
=== RUN TestHandleClosePartition | |
2018-10-20T14:06:35.162+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:06:35.163+0800 INFO consumer/consumer.go:73 Starting main loop | |
2018-10-20T14:06:35.163+0800 INFO consumer/consumer.go:102 Starting message handler {"partition": 316} | |
2018-10-20T14:06:35.163+0800 INFO consumer/consumer.go:149 Starting error handler {"partition": 316} | |
2018-10-20T14:06:35.368+0800 INFO consumer/consumer.go:135 Closing partition due to inactivity {"partition": 316} | |
2018-10-20T14:06:35.368+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 316} | |
2018-10-20T14:06:35.368+0800 WARN consumer/deadlock_detector.go:115 Signalling partition close due to inactivity {"partition": 316} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*deadlockDetector).monitorForPartition | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:115 | |
2018-10-20T14:06:35.368+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 316} | |
2018-10-20T14:06:35.368+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:06:35.368+0800 INFO consumer/consumer.go:158 Finished handling errors {"partition": 316} | |
2018-10-20T14:06:35.369+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:06:35.468+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:06:35.468+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:06:35.469+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:06:35.469+0800 INFO consumer/consumer.go:97 Closing parent consumer | |
2018-10-20T14:06:35.469+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
--- PASS: TestHandleClosePartition (0.31s) | |
=== RUN TestClosingSignalEmitted | |
2018-10-20T14:06:35.471+0800 WARN consumer/deadlock_detector.go:115 Signalling partition close due to inactivity {"partition": 1} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*deadlockDetector).monitorForPartition | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:115 | |
2018-10-20T14:06:35.471+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 1} | |
--- PASS: TestClosingSignalEmitted (0.00s) | |
=== RUN TestNoClosingSignalIfMessagesProcessedInInterval | |
2018-10-20T14:06:35.471+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 1} | |
2018-10-20T14:06:35.472+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:06:35.472+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 1} | |
2018-10-20T14:06:35.472+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
--- PASS: TestNoClosingSignalIfMessagesProcessedInInterval (0.00s) | |
2018-10-20T14:06:35.472+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 1} | |
=== RUN TestResetMsgCount | |
2018-10-20T14:06:35.472+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
2018-10-20T14:06:35.472+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:06:35.547+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 1} | |
2018-10-20T14:06:35.548+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:06:35.548+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 1} | |
--- PASS: TestResetMsgCount (0.08s) | |
=== RUN TestPanicFunc | |
2018-10-20T14:06:35.548+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
2018-10-20T14:06:36.553+0800 PANIC consumer/deadlock_detector.go:69 No messages processed in the last check interval {"partition": 1, "stack": "goroutine 49 [running]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.newDeadlockDetector.func1(0x1)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:71 +0x233\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc.func1()\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:72 +0x45\ngithub.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic.func1(0xc0001f5dd8, 0xc0001f5dc6, 0xc0001e8b80)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:862 +0x69\ngithub.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic(0xc0001e8b80, 0x1bc7f00, 0xc00031c500, 0x4399218)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:864 +0x5e\ngithub.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.Panics(0x1bc7f00, 0xc00031c500, 0xc0001e8b80, 0x0, 0x0, 0x0, 0xc000204780)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:878 +0x7f\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc(0xc00031c500)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:71 +0x1ac\ntesting.tRunner(0xc00031c500, 0x1afaba0)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:827 +0x163\ncreated by testing.(*T).Run\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:878 +0x651\n\ngoroutine 1 [chan receive]:\ntesting.(*T).Run(0xc00013e300, 0x1ad20ba, 0xd, 0x1afaba0, 0xc000153c01)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:879 +0x689\ntesting.runTests.func1(0xc00013e300)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:1119 +0xa9\ntesting.tRunner(0xc00013e300, 0xc000153d88)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:827 +0x163\ntesting.runTests(0xc0000c5200, 0x21a9220, 0x12, 0x12, 0x1165e5d)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:1117 +0x4ef\ntesting.(*M).Run(0xc000144280, 0x0)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:1034 +0x2ef\nmain.main()\n\t_testmain.go:76 +0x222\n\ngoroutine 9 [chan receive]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start.func1(0xc0001ba0b0)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:74 +0x190\ncreated by github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:72 +0x61\n\ngoroutine 71 [chan receive]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start.func1(0xc0002962c0)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:74 +0x190\ncreated by github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:72 +0x61\n\ngoroutine 13 [chan receive]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start.func1(0xc0001ba2c0)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:74 +0x190\ncreated by github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:72 +0x61\n"} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.newDeadlockDetector.func1 | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:69 | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc.func1 | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:72 | |
github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic.func1 | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:862 | |
github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:864 | |
github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.Panics | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:878 | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:71 | |
testing.tRunner | |
/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:827 | |
--- PASS: TestPanicFunc (1.01s) | |
=== RUN TestPanicForPartition | |
2018-10-20T14:06:36.554+0800 WARN consumer/deadlock_detector.go:115 Signalling partition close due to inactivity {"partition": 1} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*deadlockDetector).monitorForPartition | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:115 | |
--- PASS: TestPanicForPartition (0.00s) | |
=== RUN TestGlobalPanic | |
2018-10-20T14:06:36.555+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
--- PASS: TestGlobalPanic (0.00s) | |
=== RUN TestSaramaMessageWrapper | |
--- PASS: TestSaramaMessageWrapper (0.00s) | |
=== RUN Test_NewFactory | |
--- PASS: Test_NewFactory (0.00s) | |
=== RUN Test_new | |
--- PASS: Test_new (0.15s) | |
=== RUN Test_startedProcessor_Process | |
--- PASS: Test_startedProcessor_Process (0.00s) | |
<autogenerated>:1: PASS: Close() | |
<autogenerated>:1: PASS: Process(*consumer.fakeMsg) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/consumer 2.601s | |
? github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks [no test files] | |
=== RUN TestInsert | |
--- PASS: TestInsert (0.00s) | |
=== RUN TestGetHighestAndReset | |
=== RUN TestGetHighestAndReset/[1] | |
=== RUN TestGetHighestAndReset/[1_20] | |
=== RUN TestGetHighestAndReset/[20_1] | |
=== RUN TestGetHighestAndReset/[1_2] | |
=== RUN TestGetHighestAndReset/[2_1] | |
=== RUN TestGetHighestAndReset/[4_5_6] | |
=== RUN TestGetHighestAndReset/[5_4_6] | |
=== RUN TestGetHighestAndReset/[6_5_4] | |
=== RUN TestGetHighestAndReset/[5_6_4] | |
=== RUN TestGetHighestAndReset/[6_4_5] | |
=== RUN TestGetHighestAndReset/[4_6_5] | |
=== RUN TestGetHighestAndReset/[1_2_4_5] | |
=== RUN TestGetHighestAndReset/[2_1_4_5] | |
=== RUN TestGetHighestAndReset/[4_2_1_5] | |
=== RUN TestGetHighestAndReset/[2_4_1_5] | |
=== RUN TestGetHighestAndReset/[4_1_2_5] | |
=== RUN TestGetHighestAndReset/[1_4_2_5] | |
=== RUN TestGetHighestAndReset/[5_1_2_4] | |
=== RUN TestGetHighestAndReset/[1_5_2_4] | |
=== RUN TestGetHighestAndReset/[2_1_5_4] | |
=== RUN TestGetHighestAndReset/[1_2_5_4] | |
=== RUN TestGetHighestAndReset/[2_5_1_4] | |
=== RUN TestGetHighestAndReset/[5_2_1_4] | |
=== RUN TestGetHighestAndReset/[4_5_1_2] | |
=== RUN TestGetHighestAndReset/[5_4_1_2] | |
=== RUN TestGetHighestAndReset/[1_5_4_2] | |
=== RUN TestGetHighestAndReset/[5_1_4_2] | |
=== RUN TestGetHighestAndReset/[1_4_5_2] | |
=== RUN TestGetHighestAndReset/[4_1_5_2] | |
=== RUN TestGetHighestAndReset/[2_4_5_1] | |
=== RUN TestGetHighestAndReset/[4_2_5_1] | |
=== RUN TestGetHighestAndReset/[5_4_2_1] | |
=== RUN TestGetHighestAndReset/[4_5_2_1] | |
=== RUN TestGetHighestAndReset/[5_2_4_1] | |
=== RUN TestGetHighestAndReset/[2_5_4_1] | |
--- PASS: TestGetHighestAndReset (0.01s) | |
--- PASS: TestGetHighestAndReset/[1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_20] (0.00s) | |
--- PASS: TestGetHighestAndReset/[20_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_5_6] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_4_6] (0.00s) | |
--- PASS: TestGetHighestAndReset/[6_5_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_6_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[6_4_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_6_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_2_4_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_1_4_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_2_1_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_4_1_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_1_2_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_4_2_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_1_2_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_5_2_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_1_5_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_2_5_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_5_1_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_2_1_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_5_1_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_4_1_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_5_4_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_1_4_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_4_5_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_1_5_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_4_5_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_2_5_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_4_2_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_5_2_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_2_4_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_5_4_1] (0.00s) | |
=== RUN TestMultipleInsertsAndResets | |
--- PASS: TestMultipleInsertsAndResets (0.00s) | |
=== RUN TestHandleReset | |
--- PASS: TestHandleReset (0.10s) | |
=== RUN TestCache | |
--- PASS: TestCache (0.10s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset 1.247s | |
=== RUN TestNewSpanProcessor | |
--- PASS: TestNewSpanProcessor (0.00s) | |
=== RUN TestSpanProcessor_Process | |
--- PASS: TestSpanProcessor_Process (0.00s) | |
<autogenerated>:1: PASS: Value() | |
<autogenerated>:1: PASS: WriteSpan(*model.Span) | |
=== RUN TestSpanProcessor_ProcessError | |
--- PASS: TestSpanProcessor_ProcessError (0.00s) | |
<autogenerated>:1: PASS: Value() | |
=== RUN TestProcess | |
--- PASS: TestProcess (0.00s) | |
<autogenerated>:1: PASS: Process(processor_test.fakeMsg) | |
=== RUN TestProcessErr | |
--- PASS: TestProcessErr (0.00s) | |
<autogenerated>:1: PASS: Process(processor_test.fakeMsg) | |
=== RUN TestNewParallelProcessor | |
--- PASS: TestNewParallelProcessor (0.10s) | |
<autogenerated>:1: PASS: Process(*processor_test.fakeMessage) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/processor 1.141s | |
=== RUN TestNewRetryingProcessor | |
--- PASS: TestNewRetryingProcessor (0.00s) | |
<autogenerated>:1: PASS: Process(*decorator.fakeMsg) | |
=== RUN TestNewRetryingProcessorError | |
--- PASS: TestNewRetryingProcessorError (2.01s) | |
=== RUN TestNewRetryingProcessorNoErrorPropagation | |
--- PASS: TestNewRetryingProcessorNoErrorPropagation (1.00s) | |
=== RUN Test_ProcessBackoff | |
=== RUN Test_ProcessBackoff/zeroth_retry_attempt,_minBackoff | |
=== RUN Test_ProcessBackoff/first_retry_attempt,_2_x_minBackoff | |
=== RUN Test_ProcessBackoff/second_attempt,_4_x_minBackoff | |
=== RUN Test_ProcessBackoff/sixth_attempt,_maxBackoff | |
=== RUN Test_ProcessBackoff/overflows,_maxBackoff | |
--- PASS: Test_ProcessBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/zeroth_retry_attempt,_minBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/first_retry_attempt,_2_x_minBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/second_attempt,_4_x_minBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/sixth_attempt,_maxBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/overflows,_maxBackoff (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/processor/decorator 4.048s | |
? github.com/jaegertracing/jaeger/cmd/ingester/app/processor/mocks [no test files] | |
? github.com/jaegertracing/jaeger/cmd/query [no test files] | |
=== RUN TestQueryBuilderFlags | |
--- PASS: TestQueryBuilderFlags (0.00s) | |
=== RUN TestGetArchivedTrace_NotFound | |
=== RUN TestGetArchivedTrace_NotFound/<nil> | |
=== RUN TestGetArchivedTrace_NotFound/&{{[0xc00016e510]_[]_<nil>_map[]_{0_0}}} | |
--- PASS: TestGetArchivedTrace_NotFound (0.01s) | |
--- PASS: TestGetArchivedTrace_NotFound/<nil> (0.01s) | |
--- PASS: TestGetArchivedTrace_NotFound/&{{[0xc00016e510]_[]_<nil>_map[]_{0_0}}} (0.00s) | |
=== RUN TestGetArchivedTraceSuccess | |
--- PASS: TestGetArchivedTraceSuccess (0.01s) | |
=== RUN TestArchiveTrace_NoStorage | |
--- PASS: TestArchiveTrace_NoStorage (0.00s) | |
=== RUN TestArchiveTrace_Success | |
--- PASS: TestArchiveTrace_Success (0.01s) | |
=== RUN TestArchiveTrace_WriteErrors | |
--- PASS: TestArchiveTrace_WriteErrors (0.01s) | |
=== RUN TestDeduplicateDependencies | |
--- PASS: TestDeduplicateDependencies (0.00s) | |
=== RUN TestFilterDependencies | |
--- PASS: TestFilterDependencies (0.00s) | |
=== RUN TestGetDependenciesSuccess | |
--- PASS: TestGetDependenciesSuccess (0.00s) | |
=== RUN TestGetDependenciesCassandraFailure | |
--- PASS: TestGetDependenciesCassandraFailure (0.00s) | |
=== RUN TestGetDependenciesEndTimeParsingFailure | |
--- PASS: TestGetDependenciesEndTimeParsingFailure (0.00s) | |
=== RUN TestGetDependenciesLookbackParsingFailure | |
--- PASS: TestGetDependenciesLookbackParsingFailure (0.00s) | |
=== RUN TestGetTraceSuccess | |
--- PASS: TestGetTraceSuccess (0.00s) | |
=== RUN TestLogOnServerError | |
--- PASS: TestLogOnServerError (0.00s) | |
=== RUN TestPrettyPrint | |
=== RUN TestPrettyPrint/#00 | |
=== RUN TestPrettyPrint/?prettyPrint=false | |
=== RUN TestPrettyPrint/?prettyPrint=x | |
--- PASS: TestPrettyPrint (0.01s) | |
--- PASS: TestPrettyPrint/#00 (0.00s) | |
--- PASS: TestPrettyPrint/?prettyPrint=false (0.00s) | |
--- PASS: TestPrettyPrint/?prettyPrint=x (0.00s) | |
=== RUN TestGetTrace | |
=== RUN TestGetTrace/#00 | |
=== RUN TestGetTrace/?raw=true | |
=== RUN TestGetTrace/?raw=false | |
--- PASS: TestGetTrace (0.02s) | |
--- PASS: TestGetTrace/#00 (0.01s) | |
--- PASS: TestGetTrace/?raw=true (0.01s) | |
--- PASS: TestGetTrace/?raw=false (0.01s) | |
=== RUN TestGetTraceDBFailure | |
--- PASS: TestGetTraceDBFailure (0.00s) | |
=== RUN TestGetTraceNotFound | |
--- PASS: TestGetTraceNotFound (0.00s) | |
=== RUN TestGetTraceAdjustmentFailure | |
--- PASS: TestGetTraceAdjustmentFailure (0.00s) | |
=== RUN TestGetTraceBadTraceID | |
--- PASS: TestGetTraceBadTraceID (0.00s) | |
=== RUN TestSearchSuccess | |
--- PASS: TestSearchSuccess (0.00s) | |
=== RUN TestSearchByTraceIDSuccess | |
--- PASS: TestSearchByTraceIDSuccess (0.00s) | |
=== RUN TestSearchByTraceIDSuccessWithArchive | |
--- PASS: TestSearchByTraceIDSuccessWithArchive (0.01s) | |
=== RUN TestSearchByTraceIDNotFound | |
--- PASS: TestSearchByTraceIDNotFound (0.00s) | |
=== RUN TestSearchByTraceIDFailure | |
--- PASS: TestSearchByTraceIDFailure (0.00s) | |
=== RUN TestSearchModelConversionFailure | |
--- PASS: TestSearchModelConversionFailure (0.00s) | |
=== RUN TestSearchDBFailure | |
--- PASS: TestSearchDBFailure (0.00s) | |
=== RUN TestSearchFailures | |
--- PASS: TestSearchFailures (0.01s) | |
=== RUN TestGetServicesSuccess | |
--- PASS: TestGetServicesSuccess (0.00s) | |
=== RUN TestGetServicesStorageFailure | |
--- PASS: TestGetServicesStorageFailure (0.00s) | |
=== RUN TestGetOperationsSuccess | |
--- PASS: TestGetOperationsSuccess (0.00s) | |
=== RUN TestGetOperationsNoServiceName | |
--- PASS: TestGetOperationsNoServiceName (0.00s) | |
=== RUN TestGetOperationsStorageFailure | |
--- PASS: TestGetOperationsStorageFailure (0.00s) | |
=== RUN TestGetOperationsLegacySuccess | |
--- PASS: TestGetOperationsLegacySuccess (0.00s) | |
=== RUN TestGetOperationsLegacyStorageFailure | |
--- PASS: TestGetOperationsLegacyStorageFailure (0.00s) | |
=== RUN TestParseTraceQuery | |
=== RUN TestParseTraceQuery/#00 | |
=== RUN TestParseTraceQuery/x?service=service&start=string | |
=== RUN TestParseTraceQuery/x?service=service&end=string | |
=== RUN TestParseTraceQuery/x?service=service&limit=string | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20 | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20s&maxDuration=30 | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&minDuration=1s | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y&tag=k&log=k:v&log=k | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=25s&maxDuration=1s | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":123} | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":"y"} | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags=%7B%22x%22%3A%22y%22%7D | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s&maxDuration=20s | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s | |
=== RUN TestParseTraceQuery/x?traceID=1f00&traceID=1E00 | |
=== RUN TestParseTraceQuery/x?traceID=100&traceID=x200 | |
--- PASS: TestParseTraceQuery (0.00s) | |
--- PASS: TestParseTraceQuery/#00 (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=string (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&end=string (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&limit=string (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20 (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20s&maxDuration=30 (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&minDuration=1s (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y&tag=k&log=k:v&log=k (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=25s&maxDuration=1s (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":123} (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":"y"} (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags=%7B%22x%22%3A%22y%22%7D (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s&maxDuration=20s (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s (0.00s) | |
--- PASS: TestParseTraceQuery/x?traceID=1f00&traceID=1E00 (0.00s) | |
--- PASS: TestParseTraceQuery/x?traceID=100&traceID=x200 (0.00s) | |
=== RUN TestNotExistingUiConfig | |
--- PASS: TestNotExistingUiConfig (0.00s) | |
=== RUN TestRegisterStaticHandlerPanic | |
--- PASS: TestRegisterStaticHandlerPanic (0.00s) | |
=== RUN TestRegisterStaticHandler | |
=== RUN TestRegisterStaticHandler/basePath= | |
=== RUN TestRegisterStaticHandler/basePath=/ | |
=== RUN TestRegisterStaticHandler/basePath=/jaeger | |
--- PASS: TestRegisterStaticHandler (0.03s) | |
--- PASS: TestRegisterStaticHandler/basePath= (0.02s) | |
--- PASS: TestRegisterStaticHandler/basePath=/ (0.00s) | |
--- PASS: TestRegisterStaticHandler/basePath=/jaeger (0.00s) | |
=== RUN TestNewStaticAssetsHandlerErrors | |
--- PASS: TestNewStaticAssetsHandlerErrors (0.00s) | |
=== RUN TestLoadUIConfig | |
=== RUN TestLoadUIConfig/no_config | |
=== RUN TestLoadUIConfig/invalid_config | |
=== RUN TestLoadUIConfig/unsupported_type | |
=== RUN TestLoadUIConfig/malformed | |
=== RUN TestLoadUIConfig/json | |
=== RUN TestLoadUIConfig/json-menu | |
--- PASS: TestLoadUIConfig (0.00s) | |
--- PASS: TestLoadUIConfig/no_config (0.00s) | |
--- PASS: TestLoadUIConfig/invalid_config (0.00s) | |
--- PASS: TestLoadUIConfig/unsupported_type (0.00s) | |
--- PASS: TestLoadUIConfig/malformed (0.00s) | |
--- PASS: TestLoadUIConfig/json (0.00s) | |
--- PASS: TestLoadUIConfig/json-menu (0.00s) | |
=== RUN TestLoadIndexHTMLReadError | |
--- PASS: TestLoadIndexHTMLReadError (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/query/app 1.249s | |
? github.com/jaegertracing/jaeger/cmd/query/app/ui [no test files] | |
? github.com/jaegertracing/jaeger/cmd/query/app/ui/actual/statik [no test files] | |
? github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik [no test files] | |
? github.com/jaegertracing/jaeger/crossdock [no test files] | |
=== RUN TestGetSamplingRateInternal | |
--- PASS: TestGetSamplingRateInternal (0.00s) | |
=== RUN TestGetSamplingRate | |
--- PASS: TestGetSamplingRate (0.01s) | |
=== RUN TestGetTracerServiceName | |
--- PASS: TestGetTracerServiceName (0.00s) | |
=== RUN TestGetTraces | |
--- PASS: TestGetTraces (0.01s) | |
=== RUN TestCreateTraceRequest | |
--- PASS: TestCreateTraceRequest (0.00s) | |
=== RUN TestExpectedTagsExist | |
--- PASS: TestExpectedTagsExist (0.00s) | |
=== RUN TestConvertTagsIntoMap | |
--- PASS: TestConvertTagsIntoMap (0.00s) | |
=== RUN TestRunTest | |
--- PASS: TestRunTest (0.00s) | |
=== RUN TestValidateTracesWithCount | |
--- PASS: TestValidateTracesWithCount (0.00s) | |
=== RUN TestCreateTrace | |
--- PASS: TestCreateTrace (0.00s) | |
=== RUN TestTraceHandlerGetTraces | |
--- PASS: TestTraceHandlerGetTraces (0.02s) | |
=== RUN TestCreateTracesLoop | |
--- PASS: TestCreateTracesLoop (0.00s) | |
=== RUN TestValidateAdaptiveSamplingTraces | |
--- PASS: TestValidateAdaptiveSamplingTraces (0.00s) | |
=== RUN TestAdaptiveSamplingTestInternal | |
=== RUN TestAdaptiveSamplingTestInternal/0 | |
=== RUN TestAdaptiveSamplingTestInternal/1 | |
=== RUN TestAdaptiveSamplingTestInternal/2 | |
=== RUN TestAdaptiveSamplingTestInternal/3 | |
--- PASS: TestAdaptiveSamplingTestInternal (0.06s) | |
--- PASS: TestAdaptiveSamplingTestInternal/0 (0.00s) | |
--- PASS: TestAdaptiveSamplingTestInternal/1 (0.03s) | |
--- PASS: TestAdaptiveSamplingTestInternal/2 (0.02s) | |
--- PASS: TestAdaptiveSamplingTestInternal/3 (0.00s) | |
=== RUN TestEndToEndTest | |
--- PASS: TestEndToEndTest (0.02s) | |
=== RUN TestAdaptiveSamplingTest | |
--- PASS: TestAdaptiveSamplingTest (0.03s) | |
PASS | |
ok github.com/jaegertracing/jaeger/crossdock/services 1.190s | |
? github.com/jaegertracing/jaeger/crossdock/services/mocks [no test files] | |
=== RUN TestSortTraces | |
--- PASS: TestSortTraces (0.00s) | |
=== RUN TestSortListOfTraces | |
--- PASS: TestSortListOfTraces (0.00s) | |
=== RUN TestHasCodeError | |
--- PASS: TestHasCodeError (0.00s) | |
=== RUN TestTraceSpanIDMarshalProto | |
=== RUN TestTraceSpanIDMarshalProto/protobuf | |
=== RUN TestTraceSpanIDMarshalProto/JSON | |
--- PASS: TestTraceSpanIDMarshalProto (0.00s) | |
--- PASS: TestTraceSpanIDMarshalProto/protobuf (0.00s) | |
--- PASS: TestTraceSpanIDMarshalProto/JSON (0.00s) | |
=== RUN TestKeyValueString | |
--- PASS: TestKeyValueString (0.00s) | |
=== RUN TestKeyValueBool | |
--- PASS: TestKeyValueBool (0.00s) | |
=== RUN TestKeyValueInt64 | |
--- PASS: TestKeyValueInt64 (0.00s) | |
=== RUN TestKeyValueFloat64 | |
--- PASS: TestKeyValueFloat64 (0.00s) | |
=== RUN TestKeyValueBinary | |
--- PASS: TestKeyValueBinary (0.00s) | |
=== RUN TestKeyValueIsLessAndEqual | |
=== RUN TestKeyValueIsLessAndEqual/different_keys | |
=== RUN TestKeyValueIsLessAndEqual/same_key_different_types | |
=== RUN TestKeyValueIsLessAndEqual/different_string_values | |
=== RUN TestKeyValueIsLessAndEqual/different_bool_values | |
=== RUN TestKeyValueIsLessAndEqual/different_int64_values | |
=== RUN TestKeyValueIsLessAndEqual/different_float64_values | |
=== RUN TestKeyValueIsLessAndEqual/different_blob_length | |
=== RUN TestKeyValueIsLessAndEqual/different_blob_values | |
=== RUN TestKeyValueIsLessAndEqual/empty_blob | |
=== RUN TestKeyValueIsLessAndEqual/identical_blob | |
=== RUN TestKeyValueIsLessAndEqual/invalid_type | |
--- PASS: TestKeyValueIsLessAndEqual (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_keys (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/same_key_different_types (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_string_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_bool_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_int64_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_float64_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_blob_length (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_blob_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/empty_blob (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/identical_blob (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/invalid_type (0.00s) | |
=== RUN TestKeyValueAsStringAndValue | |
=== RUN TestKeyValueAsStringAndValue/Bender_is_great! | |
=== RUN TestKeyValueAsStringAndValue/false | |
=== RUN TestKeyValueAsStringAndValue/true | |
=== RUN TestKeyValueAsStringAndValue/3000 | |
=== RUN TestKeyValueAsStringAndValue/-1947 | |
=== RUN TestKeyValueAsStringAndValue/3.141592654 | |
=== RUN TestKeyValueAsStringAndValue/42656e646572 | |
=== RUN TestKeyValueAsStringAndValue/42656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e64... | |
=== RUN TestKeyValueAsStringAndValue/invalid_type | |
--- PASS: TestKeyValueAsStringAndValue (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/Bender_is_great! (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/false (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/true (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/3000 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/-1947 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/3.141592654 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/42656e646572 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/42656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e64... (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/invalid_type (0.00s) | |
=== RUN TestKeyValueHash | |
=== RUN TestKeyValueHash/key:"x"_v_str:"Bender_is_great!"_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:BOOL_v_bool:true_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:INT64_v_int64:3000_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:FLOAT64_v_float64:3.14159265359_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:BINARY_v_binary:"Bender"_ | |
--- PASS: TestKeyValueHash (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_str:"Bender_is_great!"_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:BOOL_v_bool:true_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:INT64_v_int64:3000_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:FLOAT64_v_float64:3.14159265359_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:BINARY_v_binary:"Bender"_ (0.00s) | |
=== RUN TestKeyValuesSort | |
--- PASS: TestKeyValuesSort (0.00s) | |
=== RUN TestKeyValuesFindByKey | |
=== RUN TestKeyValuesFindByKey/{key:b_found:false_kv:{Key:_VType:0_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} | |
=== RUN TestKeyValuesFindByKey/{key:a_found:true_kv:{Key:a_VType:2_VStr:_VBool:false_VInt64:2_VFloat64:0_VBinary:[]}} | |
=== RUN TestKeyValuesFindByKey/{key:x_found:true_kv:{Key:x_VType:0_VStr:z_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} | |
--- PASS: TestKeyValuesFindByKey (0.00s) | |
--- PASS: TestKeyValuesFindByKey/{key:b_found:false_kv:{Key:_VType:0_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} (0.00s) | |
--- PASS: TestKeyValuesFindByKey/{key:a_found:true_kv:{Key:a_VType:2_VStr:_VBool:false_VInt64:2_VFloat64:0_VBinary:[]}} (0.00s) | |
--- PASS: TestKeyValuesFindByKey/{key:x_found:true_kv:{Key:x_VType:0_VStr:z_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} (0.00s) | |
=== RUN TestKeyValuesEqual | |
--- PASS: TestKeyValuesEqual (0.00s) | |
=== RUN TestKeyValuesHashErrors | |
--- PASS: TestKeyValuesHashErrors (0.00s) | |
=== RUN TestProcessEqual | |
--- PASS: TestProcessEqual (0.00s) | |
=== RUN TestX | |
--- PASS: TestX (0.00s) | |
=== RUN TestProcessHash | |
--- PASS: TestProcessHash (0.00s) | |
=== RUN TestProcessHashError | |
--- PASS: TestProcessHashError (0.00s) | |
=== RUN TestTraceIDMarshalJSONPB | |
=== RUN TestTraceIDMarshalJSONPB/1 | |
=== RUN TestTraceIDMarshalJSONPB/f | |
=== RUN TestTraceIDMarshalJSONPB/1f | |
=== RUN TestTraceIDMarshalJSONPB/101 | |
=== RUN TestTraceIDMarshalJSONPB/10000000000000001 | |
=== RUN TestTraceIDMarshalJSONPB/1010000000000000001 | |
--- PASS: TestTraceIDMarshalJSONPB (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/1 (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/f (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/1f (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/101 (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/10000000000000001 (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/1010000000000000001 (0.00s) | |
=== RUN TestTraceIDUnmarshalJSONPBErrors | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/#00 | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/x | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/x0000000000000001 | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/1x000000000000001 | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/10123456789abcdef0123456789abcdef | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/AAAAAAE= | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/#00 (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/x (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/x0000000000000001 (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/1x000000000000001 (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/10123456789abcdef0123456789abcdef (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/AAAAAAE= (0.00s) | |
=== RUN TestSpanIDMarshalJSON | |
=== RUN TestSpanIDMarshalJSON/1 | |
=== RUN TestSpanIDMarshalJSON/f | |
=== RUN TestSpanIDMarshalJSON/1f | |
=== RUN TestSpanIDMarshalJSON/101 | |
=== RUN TestSpanIDMarshalJSON/ffffffffffffffff | |
--- PASS: TestSpanIDMarshalJSON (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/1 (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/f (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/1f (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/101 (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/ffffffffffffffff (0.00s) | |
=== RUN TestSpanIDUnmarshalJSONErrors | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":""} | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x"} | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x123"} | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"10123456789abcdef"} | |
--- PASS: TestSpanIDUnmarshalJSONErrors (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":""} (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x"} (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x123"} (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"10123456789abcdef"} (0.00s) | |
=== RUN TestIsRPCClientServer | |
--- PASS: TestIsRPCClientServer (0.00s) | |
=== RUN TestIsDebug | |
--- PASS: TestIsDebug (0.00s) | |
=== RUN TestIsSampled | |
--- PASS: TestIsSampled (0.00s) | |
=== RUN TestSpanHash | |
--- PASS: TestSpanHash (0.00s) | |
=== RUN TestParentSpanID | |
--- PASS: TestParentSpanID (0.00s) | |
=== RUN TestReplaceParentSpanID | |
--- PASS: TestReplaceParentSpanID (0.00s) | |
=== RUN TestSpanRefTypeToFromJSON | |
--- PASS: TestSpanRefTypeToFromJSON (0.00s) | |
=== RUN TestMaybeAddParentSpanID | |
--- PASS: TestMaybeAddParentSpanID (0.00s) | |
=== RUN TestTimeConversion | |
--- PASS: TestTimeConversion (0.00s) | |
=== RUN TestDurationConversion | |
--- PASS: TestDurationConversion (0.00s) | |
=== RUN TestTimeZoneUTC | |
--- PASS: TestTimeZoneUTC (0.00s) | |
=== RUN TestTraceFindSpanByID | |
--- PASS: TestTraceFindSpanByID (0.00s) | |
=== RUN TestTraceNormalizeTimestamps | |
--- PASS: TestTraceNormalizeTimestamps (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model 1.048s | |
=== RUN TestSpanReferencesAdjuster | |
--- PASS: TestSpanReferencesAdjuster (0.00s) | |
=== RUN TestClockSkewAdjuster | |
=== RUN TestClockSkewAdjuster/single_span_with_bad_parent | |
=== RUN TestClockSkewAdjuster/single_span_with_empty_host_key | |
=== RUN TestClockSkewAdjuster/two_spans_with_the_same_ID | |
=== RUN TestClockSkewAdjuster/parent-child_on_the_same_host | |
=== RUN TestClockSkewAdjuster/do_not_ajust_parent-child_on_the_same_host | |
=== RUN TestClockSkewAdjuster/do_not_adjust_child_that_fits_inside_parent | |
=== RUN TestClockSkewAdjuster/do_not_ajust_child_that_is_longer_than_parent | |
=== RUN TestClockSkewAdjuster/adjust_child_starting_before_parent | |
=== RUN TestClockSkewAdjuster/adjust_child_starting_before_parent_even_if_it_is_longer | |
=== RUN TestClockSkewAdjuster/adjust_child_ending_after_parent_but_being_shorter | |
--- PASS: TestClockSkewAdjuster (0.00s) | |
--- PASS: TestClockSkewAdjuster/single_span_with_bad_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/single_span_with_empty_host_key (0.00s) | |
--- PASS: TestClockSkewAdjuster/two_spans_with_the_same_ID (0.00s) | |
--- PASS: TestClockSkewAdjuster/parent-child_on_the_same_host (0.00s) | |
--- PASS: TestClockSkewAdjuster/do_not_ajust_parent-child_on_the_same_host (0.00s) | |
--- PASS: TestClockSkewAdjuster/do_not_adjust_child_that_fits_inside_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/do_not_ajust_child_that_is_longer_than_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/adjust_child_starting_before_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/adjust_child_starting_before_parent_even_if_it_is_longer (0.00s) | |
--- PASS: TestClockSkewAdjuster/adjust_child_ending_after_parent_but_being_shorter (0.00s) | |
=== RUN TestHostKey | |
=== RUN TestHostKey/{Key:ip_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} | |
=== RUN TestHostKey/{Key:ipv4_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} | |
=== RUN TestHostKey/{Key:ip_VType:INT64_VStr:_VBool:false_VInt64:16909060_VFloat64:0_VBinary:[]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_255_255_1_2_3_4]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_0_0_1_2_3_4]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4_5]} | |
=== RUN TestHostKey/{Key:ip_VType:FLOAT64_VStr:_VBool:false_VInt64:0_VFloat64:123.4_VBinary:[]} | |
--- PASS: TestHostKey (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} (0.00s) | |
--- PASS: TestHostKey/{Key:ipv4_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:INT64_VStr:_VBool:false_VInt64:16909060_VFloat64:0_VBinary:[]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_255_255_1_2_3_4]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_0_0_1_2_3_4]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4_5]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:FLOAT64_VStr:_VBool:false_VInt64:0_VFloat64:123.4_VBinary:[]} (0.00s) | |
=== RUN TestIPTagAdjuster | |
--- PASS: TestIPTagAdjuster (0.00s) | |
=== RUN TestSortLogFields | |
--- PASS: TestSortLogFields (0.00s) | |
=== RUN TestSpanIDDeduperTriggered | |
--- PASS: TestSpanIDDeduperTriggered (0.00s) | |
=== RUN TestSpanIDDeduperNotTriggered | |
--- PASS: TestSpanIDDeduperNotTriggered (0.00s) | |
=== RUN TestSpanIDDeduperError | |
--- PASS: TestSpanIDDeduperError (0.00s) | |
=== RUN TestSequences | |
--- PASS: TestSequences (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/adjuster 1.030s | |
? github.com/jaegertracing/jaeger/model/converter [no test files] | |
=== RUN TestMarshalJSON | |
--- PASS: TestMarshalJSON (0.00s) | |
=== RUN TestFromDomain | |
--- PASS: TestFromDomain (0.01s) | |
=== RUN TestFromDomainEmbedProcess | |
--- PASS: TestFromDomainEmbedProcess (0.00s) | |
=== RUN TestDependenciesFromDomain | |
--- PASS: TestDependenciesFromDomain (0.00s) | |
=== RUN TestProcessHashtable | |
--- PASS: TestProcessHashtable (0.00s) | |
=== RUN TestProcessHashtableCollision | |
--- PASS: TestProcessHashtableCollision (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/converter/json 1.036s | |
? github.com/jaegertracing/jaeger/model/converter/thrift [no test files] | |
=== RUN TestFromDomainOneSpan | |
--- PASS: TestFromDomainOneSpan (0.01s) | |
=== RUN TestFromDomain | |
--- PASS: TestFromDomain (0.01s) | |
=== RUN TestKeyValueToTag | |
--- PASS: TestKeyValueToTag (0.00s) | |
=== RUN TestToDomain | |
=== RUN TestToDomain/fixtures/thrift_batch_01.json_->_fixtures/domain_01.json_:_api | |
=== RUN TestToDomain/ToDomainSpan | |
=== RUN TestToDomain/fixtures/thrift_batch_02.json_->_fixtures/domain_02.json_:_api | |
--- PASS: TestToDomain (0.01s) | |
--- PASS: TestToDomain/fixtures/thrift_batch_01.json_->_fixtures/domain_01.json_:_api (0.00s) | |
--- PASS: TestToDomain/ToDomainSpan (0.00s) | |
--- PASS: TestToDomain/fixtures/thrift_batch_02.json_->_fixtures/domain_02.json_:_api (0.00s) | |
=== RUN TestUnknownJaegerType | |
--- PASS: TestUnknownJaegerType (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/converter/thrift/jaeger 1.063s | |
=== RUN TestProcessHashtable | |
--- PASS: TestProcessHashtable (0.00s) | |
=== RUN TestProcessHashtableCollision | |
--- PASS: TestProcessHashtableCollision (0.00s) | |
=== RUN TestToDomain | |
=== RUN TestToDomain/fixtures/zipkin_01.json_->_fixtures/domain_01.json_:_test-general-conversion | |
=== RUN TestToDomain/ToDomainSpans | |
=== RUN TestToDomain/fixtures/zipkin_02.json_->_fixtures/domain_02.json_:_test-process-tags | |
=== RUN TestToDomain/fixtures/zipkin_03.json_->_fixtures/domain_03.json_:_test-custom-tags | |
--- PASS: TestToDomain (0.01s) | |
--- PASS: TestToDomain/fixtures/zipkin_01.json_->_fixtures/domain_01.json_:_test-general-conversion (0.00s) | |
--- PASS: TestToDomain/ToDomainSpans (0.00s) | |
--- PASS: TestToDomain/fixtures/zipkin_02.json_->_fixtures/domain_02.json_:_test-process-tags (0.00s) | |
--- PASS: TestToDomain/fixtures/zipkin_03.json_->_fixtures/domain_03.json_:_test-custom-tags (0.00s) | |
=== RUN TestToDomainNoServiceNameError | |
--- PASS: TestToDomainNoServiceNameError (0.00s) | |
=== RUN TestToDomainServiceNameInBinAnnotation | |
--- PASS: TestToDomainServiceNameInBinAnnotation (0.00s) | |
=== RUN TestToDomainMultipleSpanKinds | |
--- PASS: TestToDomainMultipleSpanKinds (0.00s) | |
=== RUN TestInvalidAnnotationTypeError | |
--- PASS: TestInvalidAnnotationTypeError (0.00s) | |
=== RUN TestValidateBase64Values | |
--- PASS: TestValidateBase64Values (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/converter/thrift/zipkin 1.040s | |
? github.com/jaegertracing/jaeger/model/json [no test files] | |
? github.com/jaegertracing/jaeger/model/prototest [no test files] | |
? github.com/jaegertracing/jaeger/pkg [no test files] | |
=== RUN TestLRU | |
--- PASS: TestLRU (0.00s) | |
=== RUN TestCompareAndSwap | |
--- PASS: TestCompareAndSwap (0.00s) | |
=== RUN TestLRUWithTTL | |
--- PASS: TestLRUWithTTL (0.00s) | |
=== RUN TestDefaultClock | |
--- PASS: TestDefaultClock (0.00s) | |
=== RUN TestLRUCacheConcurrentAccess | |
--- PASS: TestLRUCacheConcurrentAccess (0.03s) | |
=== RUN TestRemoveFunc | |
--- PASS: TestRemoveFunc (0.00s) | |
=== RUN TestRemovedFuncWithTTL | |
--- PASS: TestRemovedFuncWithTTL (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/cache 1.077s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/cassandra 1.014s [no tests to run] | |
? github.com/jaegertracing/jaeger/pkg/cassandra/config [no test files] | |
? github.com/jaegertracing/jaeger/pkg/cassandra/gocql [no test files] | |
? github.com/jaegertracing/jaeger/pkg/cassandra/gocql/testutils [no test files] | |
=== RUN TestTableEmit | |
--- PASS: TestTableEmit (0.00s) | |
=== RUN TestTableExec | |
--- PASS: TestTableExec (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/cassandra/metrics 1.040s | |
? github.com/jaegertracing/jaeger/pkg/cassandra/mocks [no test files] | |
=== RUN TestViperize | |
--- PASS: TestViperize (0.00s) | |
=== RUN TestEnv | |
--- PASS: TestEnv (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/config 1.029s | |
=== RUN TestFixedDiscoverer | |
--- PASS: TestFixedDiscoverer (0.00s) | |
=== RUN TestDispatcher | |
--- PASS: TestDispatcher (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/discovery 1.021s | |
=== RUN TestOptions | |
--- PASS: TestOptions (0.00s) | |
=== RUN TestOptionsDefaults | |
--- PASS: TestOptionsDefaults (0.00s) | |
=== RUN TestPeerListManager_NoInstances | |
--- PASS: TestPeerListManager_NoInstances (0.00s) | |
=== RUN TestPeerListManager_updatePeers | |
=== RUN TestPeerListManager_updatePeers/initial | |
=== RUN TestPeerListManager_updatePeers/add_one | |
=== RUN TestPeerListManager_updatePeers/remove_one | |
=== RUN TestPeerListManager_updatePeers/replace_all | |
--- PASS: TestPeerListManager_updatePeers (0.01s) | |
--- PASS: TestPeerListManager_updatePeers/initial (0.00s) | |
--- PASS: TestPeerListManager_updatePeers/add_one (0.00s) | |
--- PASS: TestPeerListManager_updatePeers/remove_one (0.00s) | |
--- PASS: TestPeerListManager_updatePeers/replace_all (0.00s) | |
=== RUN TestPeerListManager_getMinPeers | |
--- PASS: TestPeerListManager_getMinPeers (0.00s) | |
=== RUN TestPeerListManager_ensureConnection | |
=== RUN TestPeerListManager_ensureConnection/{numServers:3_numSeeds:1_minPeers:2_numConnected1:1} | |
=== RUN TestPeerListManager_ensureConnection/{numServers:3_numSeeds:2_minPeers:2_numConnected1:2} | |
=== RUN TestPeerListManager_ensureConnection/{numServers:3_numSeeds:3_minPeers:2_numConnected1:2} | |
--- PASS: TestPeerListManager_ensureConnection (0.04s) | |
--- PASS: TestPeerListManager_ensureConnection/{numServers:3_numSeeds:1_minPeers:2_numConnected1:1} (0.02s) | |
--- PASS: TestPeerListManager_ensureConnection/{numServers:3_numSeeds:2_minPeers:2_numConnected1:2} (0.01s) | |
--- PASS: TestPeerListManager_ensureConnection/{numServers:3_numSeeds:3_minPeers:2_numConnected1:2} (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr 1.088s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/distributedlock 1.014s [no tests to run] | |
? github.com/jaegertracing/jaeger/pkg/distributedlock/mocks [no test files] | |
? github.com/jaegertracing/jaeger/pkg/es [no test files] | |
? github.com/jaegertracing/jaeger/pkg/es/config [no test files] | |
? github.com/jaegertracing/jaeger/pkg/es/mocks [no test files] | |
=== RUN TestHttpCall | |
--- PASS: TestHttpCall (0.00s) | |
=== RUN TestListenerClose | |
--- PASS: TestListenerClose (0.00s) | |
=== RUN TestStatusString | |
--- PASS: TestStatusString (0.00s) | |
=== RUN TestStatusSetGet | |
--- PASS: TestStatusSetGet (0.00s) | |
=== RUN TestPortBusy | |
--- PASS: TestPortBusy (0.00s) | |
=== RUN TestServeHandler | |
--- PASS: TestServeHandler (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/healthcheck 1.034s | |
? github.com/jaegertracing/jaeger/pkg/kafka/consumer [no test files] | |
? github.com/jaegertracing/jaeger/pkg/kafka/mocks [no test files] | |
? github.com/jaegertracing/jaeger/pkg/kafka/producer [no test files] | |
? github.com/jaegertracing/jaeger/pkg/memory/config [no test files] | |
=== RUN TestAddFlags | |
--- PASS: TestAddFlags (0.00s) | |
=== RUN TestBuilder | |
--- PASS: TestBuilder (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/metrics 1.033s | |
=== RUN TestWrapEmptySlice | |
--- PASS: TestWrapEmptySlice (0.00s) | |
=== RUN TestWrapSingleError | |
--- PASS: TestWrapSingleError (0.00s) | |
=== RUN TestWrapManyErrors | |
--- PASS: TestWrapManyErrors (0.00s) | |
=== RUN ExampleWrap | |
--- PASS: ExampleWrap (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/multierror 1.034s | |
=== RUN TestBoundedQueue | |
--- PASS: TestBoundedQueue (0.07s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/queue 1.106s | |
=== RUN TestNewRecoveryHandler | |
--- PASS: TestNewRecoveryHandler (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/recoveryhandler 1.028s | |
=== RUN TestNewLogger | |
--- PASS: TestNewLogger (0.00s) | |
=== RUN TestJSONLineError | |
--- PASS: TestJSONLineError (0.00s) | |
=== RUN TestRaceCondition | |
--- PASS: TestRaceCondition (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/testutils 1.027s | |
? github.com/jaegertracing/jaeger/pkg/version [no test files] | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin 1.020s [no tests to run] | |
=== RUN TestExtendLease | |
=== RUN TestExtendLease/cassandra_error | |
=== RUN TestExtendLease/successfully_extended_lease | |
=== RUN TestExtendLease/failed_to_extend_lease | |
--- PASS: TestExtendLease (0.00s) | |
--- PASS: TestExtendLease/cassandra_error (0.00s) | |
--- PASS: TestExtendLease/successfully_extended_lease (0.00s) | |
--- PASS: TestExtendLease/failed_to_extend_lease (0.00s) | |
=== RUN TestAcquire | |
=== RUN TestAcquire/cassandra_error | |
=== RUN TestAcquire/successfully_created_lock | |
=== RUN TestAcquire/lock_already_exists_and_belongs_to_localhost | |
=== RUN TestAcquire/lock_already_exists_and_belongs_to_localhost_but_is_lost | |
=== RUN TestAcquire/failed_to_acquire_lock | |
--- PASS: TestAcquire (0.01s) | |
--- PASS: TestAcquire/cassandra_error (0.00s) | |
--- PASS: TestAcquire/successfully_created_lock (0.00s) | |
--- PASS: TestAcquire/lock_already_exists_and_belongs_to_localhost (0.00s) | |
--- PASS: TestAcquire/lock_already_exists_and_belongs_to_localhost_but_is_lost (0.00s) | |
--- PASS: TestAcquire/failed_to_acquire_lock (0.00s) | |
=== RUN TestForfeit | |
=== RUN TestForfeit/cassandra_error | |
=== RUN TestForfeit/successfully_forfeited_lock | |
=== RUN TestForfeit/failed_to_delete_lock | |
--- PASS: TestForfeit (0.00s) | |
--- PASS: TestForfeit/cassandra_error (0.00s) | |
--- PASS: TestForfeit/successfully_forfeited_lock (0.00s) | |
--- PASS: TestForfeit/failed_to_delete_lock (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/pkg/distributedlock/cassandra 1.042s | |
=== RUN TestFactoryConfigFromEnv | |
--- PASS: TestFactoryConfigFromEnv (0.00s) | |
=== RUN TestNewFactory | |
--- PASS: TestNewFactory (0.00s) | |
=== RUN TestConfigurable | |
--- PASS: TestConfigurable (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/sampling/strategystore 1.038s | |
=== RUN TestFactory | |
--- PASS: TestFactory (0.00s) | |
=== RUN TestStrategyStore | |
--- PASS: TestStrategyStore (0.00s) | |
=== RUN TestPerOperationSamplingStrategies | |
--- PASS: TestPerOperationSamplingStrategies (0.00s) | |
=== RUN TestParseStrategy | |
=== RUN TestParseStrategy/#00 | |
=== RUN TestParseStrategy/#01 | |
--- PASS: TestParseStrategy (0.00s) | |
--- PASS: TestParseStrategy/#00 (0.00s) | |
--- PASS: TestParseStrategy/#01 (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static 1.042s | |
=== RUN TestFactoryConfigFromEnv | |
--- PASS: TestFactoryConfigFromEnv (0.00s) | |
=== RUN TestFactoryConfigFromEnvDeprecated | |
--- PASS: TestFactoryConfigFromEnvDeprecated (0.00s) | |
=== RUN TestNewFactory | |
--- PASS: TestNewFactory (0.00s) | |
=== RUN TestInitialize | |
--- PASS: TestInitialize (0.00s) | |
=== RUN TestCreate | |
--- PASS: TestCreate (0.00s) | |
=== RUN TestCreateMulti | |
--- PASS: TestCreateMulti (0.00s) | |
=== RUN TestCreateArchive | |
--- PASS: TestCreateArchive (0.00s) | |
=== RUN TestCreateError | |
--- PASS: TestCreateError (0.00s) | |
=== RUN TestConfigurable | |
--- PASS: TestConfigurable (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage 1.055s | |
=== RUN TestCassandraFactory | |
--- PASS: TestCassandraFactory (0.02s) | |
=== RUN TestOptions | |
--- PASS: TestOptions (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.02s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra 1.076s | |
=== RUN TestDependencyUDT | |
=== RUN TestDependencyUDT/Dependency-parent | |
=== RUN TestDependencyUDT/Dependency-child | |
=== RUN TestDependencyUDT/Dependency-call_count | |
=== RUN TestDependencyUDT/Dependency-wrong-field | |
--- PASS: TestDependencyUDT (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-parent (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-child (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-call_count (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-wrong-field (0.00s) | |
=== RUN TestDependencyStoreWrite | |
--- PASS: TestDependencyStoreWrite (0.00s) | |
=== RUN TestDependencyStoreGetDependencies | |
=== RUN TestDependencyStoreGetDependencies/success | |
=== RUN TestDependencyStoreGetDependencies/failure | |
--- PASS: TestDependencyStoreGetDependencies (0.01s) | |
--- PASS: TestDependencyStoreGetDependencies/success (0.00s) | |
--- PASS: TestDependencyStoreGetDependencies/failure (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore 1.067s | |
=== RUN TestInsertThroughput | |
--- PASS: TestInsertThroughput (0.00s) | |
=== RUN TestInsertProbabilitiesAndQPS | |
--- PASS: TestInsertProbabilitiesAndQPS (0.00s) | |
=== RUN TestGetThroughput | |
=== RUN TestGetThroughput/success | |
=== RUN TestGetThroughput/failure | |
--- PASS: TestGetThroughput (0.01s) | |
--- PASS: TestGetThroughput/success (0.00s) | |
--- PASS: TestGetThroughput/failure (0.00s) | |
=== RUN TestGetProbabilitiesAndQPS | |
=== RUN TestGetProbabilitiesAndQPS/success | |
=== RUN TestGetProbabilitiesAndQPS/failure | |
--- PASS: TestGetProbabilitiesAndQPS (0.01s) | |
--- PASS: TestGetProbabilitiesAndQPS/success (0.00s) | |
--- PASS: TestGetProbabilitiesAndQPS/failure (0.00s) | |
=== RUN TestGetLatestProbabilities | |
=== RUN TestGetLatestProbabilities/success | |
=== RUN TestGetLatestProbabilities/failure | |
--- PASS: TestGetLatestProbabilities (0.00s) | |
--- PASS: TestGetLatestProbabilities/success (0.00s) | |
--- PASS: TestGetLatestProbabilities/failure (0.00s) | |
=== RUN TestGenerateRandomBucket | |
--- PASS: TestGenerateRandomBucket (0.00s) | |
=== RUN TestThroughputToString | |
--- PASS: TestThroughputToString (0.00s) | |
=== RUN TestStringToThroughput | |
--- PASS: TestStringToThroughput (0.00s) | |
=== RUN TestProbabilitiesAndQPSToString | |
--- PASS: TestProbabilitiesAndQPSToString (0.00s) | |
=== RUN TestStringToProbabilitiesAndQPS | |
--- PASS: TestStringToProbabilitiesAndQPS (0.00s) | |
=== RUN TestStringToProbabilities | |
--- PASS: TestStringToProbabilities (0.00s) | |
=== RUN TestProbabilitiesSetToString | |
--- PASS: TestProbabilitiesSetToString (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/samplingstore 1.063s | |
? github.com/jaegertracing/jaeger/plugin/storage/cassandra/savetracetest [no test files] | |
=== RUN TestOperationNamesStorageWrite | |
=== RUN TestOperationNamesStorageWrite/writeCacheTTL=0s | |
=== RUN TestOperationNamesStorageWrite/writeCacheTTL=1m0s | |
--- PASS: TestOperationNamesStorageWrite (0.01s) | |
--- PASS: TestOperationNamesStorageWrite/writeCacheTTL=0s (0.00s) | |
--- PASS: TestOperationNamesStorageWrite/writeCacheTTL=1m0s (0.00s) | |
=== RUN TestOperationNamesStorageGetServices | |
--- PASS: TestOperationNamesStorageGetServices (0.01s) | |
=== RUN TestSpanReaderGetServices | |
--- PASS: TestSpanReaderGetServices (0.00s) | |
=== RUN TestSpanReaderGetOperations | |
--- PASS: TestSpanReaderGetOperations (0.00s) | |
=== RUN TestSpanReaderGetTrace | |
=== RUN TestSpanReaderGetTrace/expected_err= | |
=== RUN TestSpanReaderGetTrace/expected_err=invalid_ValueType_in | |
=== RUN TestSpanReaderGetTrace/expected_err=Error_reading_traces_from_storage:_error_on_close() | |
--- PASS: TestSpanReaderGetTrace (0.01s) | |
--- PASS: TestSpanReaderGetTrace/expected_err= (0.00s) | |
--- PASS: TestSpanReaderGetTrace/expected_err=invalid_ValueType_in (0.00s) | |
--- PASS: TestSpanReaderGetTrace/expected_err=Error_reading_traces_from_storage:_error_on_close() (0.00s) | |
=== RUN TestSpanReaderGetTrace_TraceNotFound | |
--- PASS: TestSpanReaderGetTrace_TraceNotFound (0.00s) | |
=== RUN TestSpanReaderFindTracesBadRequest | |
--- PASS: TestSpanReaderFindTracesBadRequest (0.00s) | |
=== RUN TestSpanReaderFindTraces | |
=== RUN TestSpanReaderFindTraces/main_query | |
=== RUN TestSpanReaderFindTraces/tag_query | |
=== RUN TestSpanReaderFindTraces/with_limit | |
=== RUN TestSpanReaderFindTraces/main_query_error | |
=== RUN TestSpanReaderFindTraces/tags_query_error | |
=== RUN TestSpanReaderFindTraces/operation_name_query | |
=== RUN TestSpanReaderFindTraces/operation_name_and_tag_query | |
=== RUN TestSpanReaderFindTraces/operation_name_and_tag_error_on_operation_query | |
=== RUN TestSpanReaderFindTraces/operation_name_and_tag_error_on_tag_query | |
=== RUN TestSpanReaderFindTraces/duration_query | |
=== RUN TestSpanReaderFindTraces/duration_query_error | |
=== RUN TestSpanReaderFindTraces/load_trace_error | |
--- PASS: TestSpanReaderFindTraces (0.07s) | |
--- PASS: TestSpanReaderFindTraces/main_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/tag_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/with_limit (0.01s) | |
--- PASS: TestSpanReaderFindTraces/main_query_error (0.00s) | |
--- PASS: TestSpanReaderFindTraces/tags_query_error (0.00s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_and_tag_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_and_tag_error_on_operation_query (0.00s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_and_tag_error_on_tag_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/duration_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/duration_query_error (0.00s) | |
--- PASS: TestSpanReaderFindTraces/load_trace_error (0.01s) | |
=== RUN TestTraceQueryParameterValidation | |
--- PASS: TestTraceQueryParameterValidation (0.00s) | |
=== RUN TestServiceNamesStorageWrite | |
=== RUN TestServiceNamesStorageWrite/writeCacheTTL=0s | |
=== RUN TestServiceNamesStorageWrite/writeCacheTTL=1m0s | |
--- PASS: TestServiceNamesStorageWrite (0.01s) | |
--- PASS: TestServiceNamesStorageWrite/writeCacheTTL=0s (0.00s) | |
--- PASS: TestServiceNamesStorageWrite/writeCacheTTL=1m0s (0.00s) | |
=== RUN TestServiceNamesStorageGetServices | |
--- PASS: TestServiceNamesStorageGetServices (0.00s) | |
=== RUN TestWriterOptions | |
--- PASS: TestWriterOptions (0.00s) | |
=== RUN TestWriterOptions_StorageMode | |
=== RUN TestWriterOptions_StorageMode/Default | |
=== RUN TestWriterOptions_StorageMode/Index_Only | |
=== RUN TestWriterOptions_StorageMode/Store_Only | |
--- PASS: TestWriterOptions_StorageMode (0.00s) | |
--- PASS: TestWriterOptions_StorageMode/Default (0.00s) | |
--- PASS: TestWriterOptions_StorageMode/Index_Only (0.00s) | |
--- PASS: TestWriterOptions_StorageMode/Store_Only (0.00s) | |
=== RUN TestClientClose | |
--- PASS: TestClientClose (0.00s) | |
=== RUN TestSpanWriter | |
=== RUN TestSpanWriter/main_query | |
=== RUN TestSpanWriter/main_query_error | |
=== RUN TestSpanWriter/tags_query_error | |
=== RUN TestSpanWriter/save_service_name_query_error | |
=== RUN TestSpanWriter/add_span_to_service_name_index | |
=== RUN TestSpanWriter/add_span_to_operation_name_index | |
=== RUN TestSpanWriter/add_duration_with_no_operation_name | |
--- PASS: TestSpanWriter (0.03s) | |
--- PASS: TestSpanWriter/main_query (0.01s) | |
--- PASS: TestSpanWriter/main_query_error (0.00s) | |
--- PASS: TestSpanWriter/tags_query_error (0.00s) | |
--- PASS: TestSpanWriter/save_service_name_query_error (0.00s) | |
--- PASS: TestSpanWriter/add_span_to_service_name_index (0.00s) | |
--- PASS: TestSpanWriter/add_span_to_operation_name_index (0.00s) | |
--- PASS: TestSpanWriter/add_duration_with_no_operation_name (0.01s) | |
=== RUN TestSpanWriterSaveServiceNameAndOperationName | |
--- PASS: TestSpanWriterSaveServiceNameAndOperationName (0.00s) | |
=== RUN TestSpanWriterSkippingTags | |
--- PASS: TestSpanWriterSkippingTags (0.00s) | |
=== RUN TestStorageMode_IndexOnly | |
--- PASS: TestStorageMode_IndexOnly (0.00s) | |
<autogenerated>:1: PASS: Bind(mock.argumentMatcher) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Bind(mock.argumentMatcher) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Bind(mock.argumentMatcher) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
=== RUN TestStorageMode_IndexOnly_WithFilter | |
--- PASS: TestStorageMode_IndexOnly_WithFilter (0.00s) | |
=== RUN TestStorageMode_StoreWithoutIndexing | |
--- PASS: TestStorageMode_StoreWithoutIndexing (0.00s) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore 1.188s | |
=== RUN TestToSpan | |
--- PASS: TestToSpan (0.00s) | |
=== RUN TestFromSpan | |
--- PASS: TestFromSpan (0.00s) | |
=== RUN TestFailingFromDBSpanBadTags | |
--- PASS: TestFailingFromDBSpanBadTags (0.00s) | |
=== RUN TestFailingFromDBSpanBadLogs | |
--- PASS: TestFailingFromDBSpanBadLogs (0.00s) | |
=== RUN TestFailingFromDBSpanBadProcess | |
--- PASS: TestFailingFromDBSpanBadProcess (0.00s) | |
=== RUN TestFailingFromDBSpanBadRefs | |
--- PASS: TestFailingFromDBSpanBadRefs (0.00s) | |
=== RUN TestFailingFromDBLogs | |
--- PASS: TestFailingFromDBLogs (0.00s) | |
=== RUN TestDBTagTypeError | |
--- PASS: TestDBTagTypeError (0.00s) | |
=== RUN TestGenerateHashCode | |
--- PASS: TestGenerateHashCode (0.00s) | |
=== RUN TestDBModelUDTMarshall | |
=== RUN TestDBModelUDTMarshall/KeyValue-key | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_type | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_string | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_bool | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_long | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_double | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_binary | |
=== RUN TestDBModelUDTMarshall/KeyValue-wrong-field | |
=== RUN TestDBModelUDTMarshall/Log-ts | |
=== RUN TestDBModelUDTMarshall/Log-fields | |
=== RUN TestDBModelUDTMarshall/Log-wrong-field | |
=== RUN TestDBModelUDTMarshall/SpanRef-ref_type | |
=== RUN TestDBModelUDTMarshall/SpanRef-trace_id | |
=== RUN TestDBModelUDTMarshall/SpanRef-span_id | |
=== RUN TestDBModelUDTMarshall/SpanRef-wrong-field | |
=== RUN TestDBModelUDTMarshall/Process-service_name | |
=== RUN TestDBModelUDTMarshall/Process-tags | |
=== RUN TestDBModelUDTMarshall/Process-wrong-field | |
--- PASS: TestDBModelUDTMarshall (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-key (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_type (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_string (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_bool (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_long (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_double (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_binary (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-wrong-field (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Log-ts (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Log-fields (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Log-wrong-field (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-ref_type (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-trace_id (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-span_id (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-wrong-field (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Process-service_name (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Process-tags (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Process-wrong-field (0.00s) | |
=== RUN TestDefaultIndexFilter | |
--- PASS: TestDefaultIndexFilter (0.00s) | |
=== RUN TestFilterLogTags | |
--- PASS: TestFilterLogTags (0.00s) | |
=== RUN TestTagInsertionString | |
--- PASS: TestTagInsertionString (0.00s) | |
=== RUN TestTraceIDString | |
--- PASS: TestTraceIDString (0.00s) | |
=== RUN TestDefaultTagFilter | |
--- PASS: TestDefaultTagFilter (0.00s) | |
=== RUN TestChainedTagFilter | |
--- PASS: TestChainedTagFilter (0.00s) | |
=== RUN TestGetIntersectedTraceIDs | |
--- PASS: TestGetIntersectedTraceIDs (0.00s) | |
=== RUN TestAdd | |
--- PASS: TestAdd (0.00s) | |
=== RUN TestFromList | |
--- PASS: TestFromList (0.00s) | |
=== RUN TestGetUniqueTags | |
--- PASS: TestGetUniqueTags (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel 1.038s | |
=== RUN TestElasticsearchFactory | |
--- PASS: TestElasticsearchFactory (0.00s) | |
=== RUN TestElasticsearchTagsFileDoNotExist | |
--- PASS: TestElasticsearchTagsFileDoNotExist (0.00s) | |
=== RUN TestLoadTagsFromFile | |
--- PASS: TestLoadTagsFromFile (0.00s) | |
=== RUN TestOptions | |
--- PASS: TestOptions (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es 1.048s | |
=== RUN TestNewSpanReaderIndexPrefix | |
--- PASS: TestNewSpanReaderIndexPrefix (0.00s) | |
=== RUN TestWriteDependencies | |
--- PASS: TestWriteDependencies (0.00s) | |
=== RUN TestGetDependencies | |
--- PASS: TestGetDependencies (0.01s) | |
=== RUN TestGetIndices | |
--- PASS: TestGetIndices (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore 1.043s | |
=== RUN TestConvertDependencies | |
=== RUN TestConvertDependencies/0 | |
=== RUN TestConvertDependencies/1 | |
=== RUN TestConvertDependencies/2 | |
=== RUN TestConvertDependencies/3 | |
--- PASS: TestConvertDependencies (0.00s) | |
--- PASS: TestConvertDependencies/0 (0.00s) | |
--- PASS: TestConvertDependencies/1 (0.00s) | |
--- PASS: TestConvertDependencies/2 (0.00s) | |
--- PASS: TestConvertDependencies/3 (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel 1.044s | |
=== RUN TestNewSpanReader | |
--- PASS: TestNewSpanReader (0.00s) | |
=== RUN TestNewSpanReaderIndexPrefix | |
--- PASS: TestNewSpanReaderIndexPrefix (0.00s) | |
=== RUN TestSpanReader_GetTrace | |
--- PASS: TestSpanReader_GetTrace (0.00s) | |
=== RUN TestSpanReader_SearchAfter | |
--- PASS: TestSpanReader_SearchAfter (5.45s) | |
=== RUN TestSpanReader_GetTraceQueryError | |
--- PASS: TestSpanReader_GetTraceQueryError (0.00s) | |
=== RUN TestSpanReader_GetTraceNilHits | |
--- PASS: TestSpanReader_GetTraceNilHits (0.00s) | |
=== RUN TestSpanReader_GetTraceInvalidSpanError | |
--- PASS: TestSpanReader_GetTraceInvalidSpanError (0.00s) | |
=== RUN TestSpanReader_GetTraceSpanConversionError | |
--- PASS: TestSpanReader_GetTraceSpanConversionError (0.00s) | |
=== RUN TestSpanReader_esJSONtoJSONSpanModel | |
--- PASS: TestSpanReader_esJSONtoJSONSpanModel (0.00s) | |
=== RUN TestSpanReader_esJSONtoJSONSpanModelError | |
--- PASS: TestSpanReader_esJSONtoJSONSpanModelError (0.00s) | |
=== RUN TestSpanReaderFindIndices | |
--- PASS: TestSpanReaderFindIndices (0.00s) | |
=== RUN TestSpanReader_indexWithDate | |
--- PASS: TestSpanReader_indexWithDate (0.00s) | |
=== RUN TestSpanReader_bucketToStringArray | |
--- PASS: TestSpanReader_bucketToStringArray (0.00s) | |
=== RUN TestSpanReader_bucketToStringArrayError | |
--- PASS: TestSpanReader_bucketToStringArrayError (0.00s) | |
=== RUN TestSpanReader_FindTraces | |
--- PASS: TestSpanReader_FindTraces (0.00s) | |
=== RUN TestSpanReader_FindTracesInvalidQuery | |
--- PASS: TestSpanReader_FindTracesInvalidQuery (0.00s) | |
=== RUN TestSpanReader_FindTracesAggregationFailure | |
--- PASS: TestSpanReader_FindTracesAggregationFailure (0.00s) | |
=== RUN TestSpanReader_FindTracesNoTraceIDs | |
--- PASS: TestSpanReader_FindTracesNoTraceIDs (0.00s) | |
=== RUN TestSpanReader_FindTracesReadTraceFailure | |
--- PASS: TestSpanReader_FindTracesReadTraceFailure (0.00s) | |
=== RUN TestSpanReader_FindTracesSpanCollectionFailure | |
--- PASS: TestSpanReader_FindTracesSpanCollectionFailure (0.00s) | |
=== RUN TestFindTraceIDs | |
=== RUN TestFindTraceIDs/traceIDs_full_behavior | |
=== RUN TestFindTraceIDs/traceIDs_search_error | |
=== RUN TestFindTraceIDs/traceIDs_search_error#01 | |
--- PASS: TestFindTraceIDs (0.01s) | |
--- PASS: TestFindTraceIDs/traceIDs_full_behavior (0.00s) | |
--- PASS: TestFindTraceIDs/traceIDs_search_error (0.00s) | |
--- PASS: TestFindTraceIDs/traceIDs_search_error#01 (0.00s) | |
=== RUN TestTraceQueryParameterValidation | |
--- PASS: TestTraceQueryParameterValidation (0.00s) | |
=== RUN TestSpanReader_buildTraceIDAggregation | |
--- PASS: TestSpanReader_buildTraceIDAggregation (0.00s) | |
=== RUN TestSpanReader_buildFindTraceIDsQuery | |
--- PASS: TestSpanReader_buildFindTraceIDsQuery (0.00s) | |
=== RUN TestSpanReader_buildDurationQuery | |
--- PASS: TestSpanReader_buildDurationQuery (0.00s) | |
=== RUN TestSpanReader_buildStartTimeQuery | |
--- PASS: TestSpanReader_buildStartTimeQuery (0.00s) | |
=== RUN TestSpanReader_buildServiceNameQuery | |
--- PASS: TestSpanReader_buildServiceNameQuery (0.00s) | |
=== RUN TestSpanReader_buildOperationNameQuery | |
--- PASS: TestSpanReader_buildOperationNameQuery (0.00s) | |
=== RUN TestSpanReader_buildTagQuery | |
--- PASS: TestSpanReader_buildTagQuery (0.00s) | |
=== RUN TestSpanReader_GetEmptyIndex | |
--- PASS: TestSpanReader_GetEmptyIndex (0.00s) | |
=== RUN TestWriteService | |
--- PASS: TestWriteService (0.00s) | |
=== RUN TestWriteServiceError | |
--- PASS: TestWriteServiceError (0.00s) | |
=== RUN TestSpanReader_GetServices | |
=== RUN TestSpanReader_GetServices/distinct_services_full_behavior | |
=== RUN TestSpanReader_GetServices/distinct_services_search_error | |
=== RUN TestSpanReader_GetServices/distinct_services_search_error#01 | |
--- PASS: TestSpanReader_GetServices (0.01s) | |
--- PASS: TestSpanReader_GetServices/distinct_services_full_behavior (0.00s) | |
--- PASS: TestSpanReader_GetServices/distinct_services_search_error (0.00s) | |
--- PASS: TestSpanReader_GetServices/distinct_services_search_error#01 (0.00s) | |
=== RUN TestSpanReader_GetOperations | |
=== RUN TestSpanReader_GetOperations/distinct_operations_full_behavior | |
=== RUN TestSpanReader_GetOperations/distinct_operations_search_error | |
=== RUN TestSpanReader_GetOperations/distinct_operations_search_error#01 | |
--- PASS: TestSpanReader_GetOperations (0.01s) | |
--- PASS: TestSpanReader_GetOperations/distinct_operations_full_behavior (0.00s) | |
--- PASS: TestSpanReader_GetOperations/distinct_operations_search_error (0.00s) | |
--- PASS: TestSpanReader_GetOperations/distinct_operations_search_error#01 (0.00s) | |
=== RUN TestSpanReader_GetServicesEmptyIndex | |
--- PASS: TestSpanReader_GetServicesEmptyIndex (0.00s) | |
=== RUN TestSpanReader_GetOperationsEmptyIndex | |
--- PASS: TestSpanReader_GetOperationsEmptyIndex (0.00s) | |
=== RUN TestNewSpanWriterIndexPrefix | |
--- PASS: TestNewSpanWriterIndexPrefix (0.00s) | |
=== RUN TestClientClose | |
--- PASS: TestClientClose (0.00s) | |
=== RUN TestSpanWriter_WriteSpan | |
=== RUN TestSpanWriter_WriteSpan/index_creation_error | |
=== RUN TestSpanWriter_WriteSpan/span_insertion_error | |
=== RUN TestSpanWriter_WriteSpan/span_index_dne_error | |
--- PASS: TestSpanWriter_WriteSpan (0.01s) | |
--- PASS: TestSpanWriter_WriteSpan/index_creation_error (0.00s) | |
--- PASS: TestSpanWriter_WriteSpan/span_insertion_error (0.00s) | |
--- PASS: TestSpanWriter_WriteSpan/span_index_dne_error (0.00s) | |
=== RUN TestSpanIndexName | |
--- PASS: TestSpanIndexName (0.00s) | |
=== RUN TestFixMapping | |
--- PASS: TestFixMapping (0.00s) | |
=== RUN TestWriteSpanInternal | |
--- PASS: TestWriteSpanInternal (0.00s) | |
=== RUN TestWriteSpanInternalError | |
--- PASS: TestWriteSpanInternalError (0.00s) | |
=== RUN TestNewSpanTags | |
=== RUN TestNewSpanTags/allTagsAsFields | |
=== RUN TestNewSpanTags/definedTagNames | |
=== RUN TestNewSpanTags/noAllTagsAsFields | |
--- PASS: TestNewSpanTags (0.00s) | |
--- PASS: TestNewSpanTags/allTagsAsFields (0.00s) | |
--- PASS: TestNewSpanTags/definedTagNames (0.00s) | |
--- PASS: TestNewSpanTags/noAllTagsAsFields (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/spanstore 6.573s | |
=== RUN TestFromDomainEmbedProcess | |
=== RUN TestFromDomainEmbedProcess/fixture_1 | |
--- PASS: TestFromDomainEmbedProcess (0.01s) | |
--- PASS: TestFromDomainEmbedProcess/fixture_1 (0.01s) | |
=== RUN TestEmptyTags | |
--- PASS: TestEmptyTags (0.00s) | |
=== RUN TestTagMap | |
--- PASS: TestTagMap (0.00s) | |
=== RUN TestToDomain | |
--- PASS: TestToDomain (0.01s) | |
=== RUN TestFailureBadTypeTags | |
--- PASS: TestFailureBadTypeTags (0.00s) | |
=== RUN TestFailureBadBoolTags | |
--- PASS: TestFailureBadBoolTags (0.00s) | |
=== RUN TestFailureBadIntTags | |
--- PASS: TestFailureBadIntTags (0.00s) | |
=== RUN TestFailureBadFloatTags | |
--- PASS: TestFailureBadFloatTags (0.00s) | |
=== RUN TestFailureBadBinaryTags | |
--- PASS: TestFailureBadBinaryTags (0.00s) | |
=== RUN TestFailureBadLogs | |
--- PASS: TestFailureBadLogs (0.00s) | |
=== RUN TestRevertKeyValueOfType | |
=== RUN TestRevertKeyValueOfType/not_a_valid_ValueType_string | |
=== RUN TestRevertKeyValueOfType/invalid_nil_Value | |
=== RUN TestRevertKeyValueOfType/non-string_Value_of_type | |
--- PASS: TestRevertKeyValueOfType (0.00s) | |
--- PASS: TestRevertKeyValueOfType/not_a_valid_ValueType_string (0.00s) | |
--- PASS: TestRevertKeyValueOfType/invalid_nil_Value (0.00s) | |
--- PASS: TestRevertKeyValueOfType/non-string_Value_of_type (0.00s) | |
=== RUN TestFailureBadRefs | |
--- PASS: TestFailureBadRefs (0.00s) | |
=== RUN TestFailureBadTraceIDRefs | |
--- PASS: TestFailureBadTraceIDRefs (0.00s) | |
=== RUN TestFailureBadSpanIDRefs | |
--- PASS: TestFailureBadSpanIDRefs (0.00s) | |
=== RUN TestFailureBadProcess | |
--- PASS: TestFailureBadProcess (0.00s) | |
=== RUN TestFailureBadTraceID | |
--- PASS: TestFailureBadTraceID (0.00s) | |
=== RUN TestFailureBadSpanID | |
--- PASS: TestFailureBadSpanID (0.00s) | |
=== RUN TestFailureBadParentSpanID | |
--- PASS: TestFailureBadParentSpanID (0.00s) | |
=== RUN TestFailureBadSpanFieldTag | |
--- PASS: TestFailureBadSpanFieldTag (0.00s) | |
=== RUN TestFailureBadProcessFieldTag | |
--- PASS: TestFailureBadProcessFieldTag (0.00s) | |
=== RUN TestTagsMap | |
=== RUN TestTagsMap/0,_map[bool:bool:%!s(bool=true)] | |
=== RUN TestTagsMap/1,_map[int.int:%!s(int64=1)] | |
=== RUN TestTagsMap/2,_map[float:%!s(float64=1.1)] | |
=== RUN TestTagsMap/3,_map[float:%!s(float64=123)] | |
=== RUN TestTagsMap/4,_map[float:%!s(float64=123)] | |
=== RUN TestTagsMap/5,_map[str:foo] | |
=== RUN TestTagsMap/6,_map[binary:foo] | |
=== RUN TestTagsMap/7,_map[unsupported:{}] | |
--- PASS: TestTagsMap (0.00s) | |
--- PASS: TestTagsMap/0,_map[bool:bool:%!s(bool=true)] (0.00s) | |
--- PASS: TestTagsMap/1,_map[int.int:%!s(int64=1)] (0.00s) | |
--- PASS: TestTagsMap/2,_map[float:%!s(float64=1.1)] (0.00s) | |
--- PASS: TestTagsMap/3,_map[float:%!s(float64=123)] (0.00s) | |
--- PASS: TestTagsMap/4,_map[float:%!s(float64=123)] (0.00s) | |
--- PASS: TestTagsMap/5,_map[str:foo] (0.00s) | |
--- PASS: TestTagsMap/6,_map[binary:foo] (0.00s) | |
--- PASS: TestTagsMap/7,_map[unsupported:{}] (0.00s) | |
=== RUN TestDotReplacement | |
--- PASS: TestDotReplacement (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel 1.068s | |
=== RUN TestElasticsearchStorage | |
--- SKIP: TestElasticsearchStorage (0.00s) | |
elasticsearch_test.go:129: Integration test against ElasticSearch skipped; set STORAGE env var to elasticsearch to run this | |
=== RUN TestElasticsearchStorageAllTagsAsObjectFields | |
--- SKIP: TestElasticsearchStorageAllTagsAsObjectFields (0.00s) | |
elasticsearch_test.go:129: Integration test against ElasticSearch skipped; set STORAGE env var to elasticsearch to run this | |
=== RUN TestParseAllFixtures | |
--- PASS: TestParseAllFixtures (0.04s) | |
integration_test.go:53: Parsing fixtures/traces/default.json | |
integration_test.go:53: Parsing fixtures/traces/dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/example_trace.json | |
integration_test.go:53: Parsing fixtures/traces/log_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/max_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multi_index_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multi_spot_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multiple1_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multiple2_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multiple3_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_opname_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_opname_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_opname_trace.json | |
integration_test.go:53: Parsing fixtures/traces/opname_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/opname_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/opname_trace.json | |
integration_test.go:53: Parsing fixtures/traces/process_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/span_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_opname_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_opname_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_opname_trace.json | |
=== RUN TestKafkaStorage | |
--- SKIP: TestKafkaStorage (0.00s) | |
kafka_test.go:118: Integration test against kafka skipped; set STORAGE env var to kafka to run this | |
=== RUN TestMemoryStorage | |
=== RUN TestMemoryStorage/GetServices | |
=== RUN TestMemoryStorage/GetOperations | |
=== RUN TestMemoryStorage/GetTrace | |
=== RUN TestMemoryStorage/GetLargeSpans | |
=== RUN TestMemoryStorage/FindTraces | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Tags | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Logs | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Process | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_different_spots | |
=== RUN TestMemoryStorage/FindTraces/Trace_spans_over_multiple_indices | |
=== RUN TestMemoryStorage/FindTraces/Operation_name | |
=== RUN TestMemoryStorage/FindTraces/Operation_name_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Operation_name_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Duration_range | |
=== RUN TestMemoryStorage/FindTraces/max_Duration | |
=== RUN TestMemoryStorage/FindTraces/default | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Operation_name | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Multiple_Traces | |
=== RUN TestMemoryStorage/GetDependencies | |
--- PASS: TestMemoryStorage (0.08s) | |
--- PASS: TestMemoryStorage/GetServices (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/GetOperations (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/GetTrace (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/GetLargeSpans (0.03s) | |
integration_test.go:132: Testing Large Trace over 10K ... | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces (0.04s) | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Tags (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Logs (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Process (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_different_spots (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Trace_spans_over_multiple_indices (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Operation_name (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Operation_name_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Operation_name_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/default (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Operation_name (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multiple_Traces (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- SKIP: TestMemoryStorage/GetDependencies (0.00s) | |
integration_test.go:350: Skipping GetDependencies test because dependency reader or writer is nil | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/integration 1.148s | |
=== RUN TestKafkaFactory | |
--- PASS: TestKafkaFactory (0.00s) | |
=== RUN TestKafkaFactoryEncoding | |
=== RUN TestKafkaFactoryEncoding/protobuf | |
=== RUN TestKafkaFactoryEncoding/json | |
--- PASS: TestKafkaFactoryEncoding (0.00s) | |
--- PASS: TestKafkaFactoryEncoding/protobuf (0.00s) | |
--- PASS: TestKafkaFactoryEncoding/json (0.00s) | |
=== RUN TestKafkaFactoryMarshallerErr | |
--- PASS: TestKafkaFactoryMarshallerErr (0.00s) | |
=== RUN TestProtobufMarshallerAndUnmarshaller | |
--- PASS: TestProtobufMarshallerAndUnmarshaller (0.00s) | |
=== RUN TestJSONMarshallerAndUnmarshaller | |
--- PASS: TestJSONMarshallerAndUnmarshaller (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.00s) | |
=== RUN TestFlagDefaults | |
--- PASS: TestFlagDefaults (0.00s) | |
=== RUN TestKafkaWriter | |
--- PASS: TestKafkaWriter (0.00s) | |
=== RUN TestKafkaWriterErr | |
--- PASS: TestKafkaWriterErr (0.00s) | |
=== RUN TestMarshallerErr | |
--- PASS: TestMarshallerErr (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/kafka 1.041s | |
=== RUN TestMemoryStorageFactory | |
--- PASS: TestMemoryStorageFactory (0.00s) | |
=== RUN TestWithConfiguration | |
--- PASS: TestWithConfiguration (0.00s) | |
=== RUN TestStoreGetEmptyDependencies | |
--- PASS: TestStoreGetEmptyDependencies (0.00s) | |
=== RUN TestStoreGetDependencies | |
--- PASS: TestStoreGetDependencies (0.00s) | |
=== RUN TestStoreWriteSpan | |
--- PASS: TestStoreWriteSpan (0.00s) | |
=== RUN TestStoreWithLimit | |
--- PASS: TestStoreWithLimit (0.00s) | |
=== RUN TestStoreGetTraceSuccess | |
--- PASS: TestStoreGetTraceSuccess (0.00s) | |
=== RUN TestStoreGetTraceFailure | |
--- PASS: TestStoreGetTraceFailure (0.00s) | |
=== RUN TestStoreGetServices | |
--- PASS: TestStoreGetServices (0.00s) | |
=== RUN TestStoreGetOperationsFound | |
--- PASS: TestStoreGetOperationsFound (0.00s) | |
=== RUN TestStoreGetOperationsNotFound | |
--- PASS: TestStoreGetOperationsNotFound (0.00s) | |
=== RUN TestStoreGetEmptyTraceSet | |
--- PASS: TestStoreGetEmptyTraceSet (0.00s) | |
=== RUN TestStoreGetTrace | |
--- PASS: TestStoreGetTrace (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/memory 1.036s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/storage 1.036s [no tests to run] | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/dependencystore 1.031s [no tests to run] | |
? github.com/jaegertracing/jaeger/storage/dependencystore/mocks [no test files] | |
? github.com/jaegertracing/jaeger/storage/mocks [no test files] | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/samplingstore 1.017s [no tests to run] | |
? github.com/jaegertracing/jaeger/storage/samplingstore/mocks [no test files] | |
=== RUN TestCompositeWriteSpanStoreSuccess | |
--- PASS: TestCompositeWriteSpanStoreSuccess (0.00s) | |
=== RUN TestCompositeWriteSpanStoreSecondFailure | |
--- PASS: TestCompositeWriteSpanStoreSecondFailure (0.00s) | |
=== RUN TestCompositeWriteSpanStoreFirstFailure | |
--- PASS: TestCompositeWriteSpanStoreFirstFailure (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/spanstore 1.026s | |
=== RUN TestTableEmit | |
--- PASS: TestTableEmit (0.00s) | |
=== RUN TestSuccessfulUnderlyingCalls | |
--- PASS: TestSuccessfulUnderlyingCalls (0.00s) | |
=== RUN TestFailingUnderlyingCalls | |
--- PASS: TestFailingUnderlyingCalls (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/spanstore/metrics 1.035s | |
? github.com/jaegertracing/jaeger/storage/spanstore/mocks [no test files] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
? github.com/jaegertracing/jaeger [no test files] | |
? github.com/jaegertracing/jaeger/cmd/agent [no test files] | |
=== RUN TestAgentStartError | |
--- PASS: TestAgentStartError (0.00s) | |
=== RUN TestAgentSamplingEndpoint | |
--- PASS: TestAgentSamplingEndpoint (2.01s) | |
=== RUN TestAgentMetricsEndpoint | |
--- PASS: TestAgentMetricsEndpoint (2.01s) | |
=== RUN TestBuilderFromConfig | |
--- PASS: TestBuilderFromConfig (0.00s) | |
=== RUN TestBuilderWithExtraReporter | |
--- PASS: TestBuilderWithExtraReporter (0.00s) | |
=== RUN TestBuilderMetrics | |
--- PASS: TestBuilderMetrics (0.00s) | |
=== RUN TestBuilderMetricsHandler | |
--- PASS: TestBuilderMetricsHandler (0.00s) | |
=== RUN TestBuilderMetricsError | |
--- PASS: TestBuilderMetricsError (0.00s) | |
=== RUN TestBuilderWithDiscoveryError | |
--- PASS: TestBuilderWithDiscoveryError (0.00s) | |
=== RUN TestBuilderWithProcessorErrors | |
--- PASS: TestBuilderWithProcessorErrors (0.00s) | |
=== RUN TestBingFlags | |
--- PASS: TestBingFlags (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app 5.069s | |
=== RUN TestTBufferedReadTransport | |
--- PASS: TestTBufferedReadTransport (0.00s) | |
=== RUN TestTBufferedReadTransportEmptyFunctions | |
--- PASS: TestTBufferedReadTransportEmptyFunctions (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/customtransports 1.038s | |
=== RUN TestCollectorProxy | |
--- PASS: TestCollectorProxy (0.01s) | |
=== RUN TestTCollectorProxyClientErrorPropagates | |
--- PASS: TestTCollectorProxyClientErrorPropagates (0.00s) | |
=== RUN TestHTTPHandler | |
=== RUN TestHTTPHandler/request_against_endpoint_/ | |
=== RUN TestHTTPHandler/request_against_endpoint_/sampling | |
=== RUN TestHTTPHandler/request_against_endpoint_/baggage | |
--- PASS: TestHTTPHandler (0.01s) | |
--- PASS: TestHTTPHandler/request_against_endpoint_/ (0.00s) | |
--- PASS: TestHTTPHandler/request_against_endpoint_/sampling (0.00s) | |
--- PASS: TestHTTPHandler/request_against_endpoint_/baggage (0.00s) | |
=== RUN TestHTTPHandlerErrors | |
=== RUN TestHTTPHandlerErrors/no_service_name | |
=== RUN TestHTTPHandlerErrors/sampling_endpoint_too_many_service_names | |
=== RUN TestHTTPHandlerErrors/baggage_endpoint_too_many_service_names | |
=== RUN TestHTTPHandlerErrors/sampler_tcollector_error | |
=== RUN TestHTTPHandlerErrors/baggage_tcollector_error | |
=== RUN TestHTTPHandlerErrors/sampler_marshalling_error | |
=== RUN TestHTTPHandlerErrors/failure_to_write_a_response | |
--- PASS: TestHTTPHandlerErrors (0.02s) | |
--- PASS: TestHTTPHandlerErrors/no_service_name (0.00s) | |
--- PASS: TestHTTPHandlerErrors/sampling_endpoint_too_many_service_names (0.00s) | |
--- PASS: TestHTTPHandlerErrors/baggage_endpoint_too_many_service_names (0.00s) | |
--- PASS: TestHTTPHandlerErrors/sampler_tcollector_error (0.00s) | |
--- PASS: TestHTTPHandlerErrors/baggage_tcollector_error (0.00s) | |
--- PASS: TestHTTPHandlerErrors/sampler_marshalling_error (0.00s) | |
--- PASS: TestHTTPHandlerErrors/failure_to_write_a_response (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/httpserver 1.069s | |
? github.com/jaegertracing/jaeger/cmd/agent/app/httpserver/thrift-0.9.2 [no test files] | |
=== RUN TestNewThriftProcessor_ZeroCount | |
--- PASS: TestNewThriftProcessor_ZeroCount (0.00s) | |
=== RUN TestProcessorWithCompactZipkin | |
--- PASS: TestProcessorWithCompactZipkin (1.30s) | |
=== RUN TestProcessor_HandlerError | |
--- PASS: TestProcessor_HandlerError (0.00s) | |
=== RUN TestJaegerProcessor | |
--- PASS: TestJaegerProcessor (2.67s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/processors 5.007s | |
=== RUN TestMultiReporter | |
--- PASS: TestMultiReporter (0.00s) | |
=== RUN TestMultiReporterErrors | |
--- PASS: TestMultiReporterErrors (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/reporter 1.031s | |
=== RUN TestBuilderFromConfig | |
--- PASS: TestBuilderFromConfig (0.00s) | |
=== RUN TestBuilderWithDiscovery | |
--- PASS: TestBuilderWithDiscovery (0.00s) | |
=== RUN TestBuilderWithCollectorServiceName | |
--- PASS: TestBuilderWithCollectorServiceName (0.00s) | |
=== RUN TestBuilderWithChannel | |
--- PASS: TestBuilderWithChannel (0.00s) | |
=== RUN TestBuilderWithCollectors | |
--- PASS: TestBuilderWithCollectors (0.00s) | |
=== RUN TestZipkinTChannelReporterSuccess | |
--- PASS: TestZipkinTChannelReporterSuccess (0.11s) | |
=== RUN TestZipkinTChannelReporterFailure | |
--- PASS: TestZipkinTChannelReporterFailure (0.00s) | |
=== RUN TestJaegerTChannelReporterSuccess | |
--- PASS: TestJaegerTChannelReporterSuccess (0.11s) | |
=== RUN TestJaegerTChannelReporterFailure | |
--- PASS: TestJaegerTChannelReporterFailure (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/reporter/tchannel 1.249s | |
=== RUN TestReadBuf_EOF | |
--- PASS: TestReadBuf_EOF (0.00s) | |
=== RUN TestReadBuf_Read | |
--- PASS: TestReadBuf_Read (0.00s) | |
=== RUN TestTBufferedServer | |
=== RUN TestTBufferedServer/processed | |
=== RUN TestTBufferedServer/dropped | |
--- PASS: TestTBufferedServer (0.03s) | |
--- PASS: TestTBufferedServer/processed (0.01s) | |
--- PASS: TestTBufferedServer/dropped (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/servers 1.052s | |
=== RUN TestNewTUDPClientTransport | |
--- PASS: TestNewTUDPClientTransport (0.00s) | |
=== RUN TestNewTUDPServerTransport | |
--- PASS: TestNewTUDPServerTransport (0.00s) | |
=== RUN TestTUDPServerTransportIsOpen | |
--- PASS: TestTUDPServerTransportIsOpen (0.01s) | |
=== RUN TestWriteRead | |
--- PASS: TestWriteRead (0.00s) | |
=== RUN TestDoubleCloseError | |
--- PASS: TestDoubleCloseError (0.00s) | |
=== RUN TestConnClosedReadWrite | |
--- PASS: TestConnClosedReadWrite (0.00s) | |
=== RUN TestHugeWrite | |
--- PASS: TestHugeWrite (0.00s) | |
=== RUN TestFlushErrors | |
--- PASS: TestFlushErrors (0.00s) | |
=== RUN TestResetInFlush | |
--- PASS: TestResetInFlush (0.00s) | |
=== RUN TestCreateClient | |
--- PASS: TestCreateClient (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/servers/thriftudp 1.043s | |
=== RUN TestInMemoryReporter | |
--- PASS: TestInMemoryReporter (0.00s) | |
=== RUN TestMockTCollectorSampling | |
--- PASS: TestMockTCollectorSampling (0.02s) | |
=== RUN TestMockTCollectorBaggage | |
--- PASS: TestMockTCollectorBaggage (0.02s) | |
=== RUN TestMockTCollectorZipkin | |
--- PASS: TestMockTCollectorZipkin (0.02s) | |
=== RUN TestMockTCollector | |
--- PASS: TestMockTCollector (0.02s) | |
=== RUN TestMockTCollectorErrors | |
--- PASS: TestMockTCollectorErrors (0.00s) | |
=== RUN TestNewZipkinThriftUDPClient | |
--- PASS: TestNewZipkinThriftUDPClient (0.00s) | |
=== RUN TestNewJaegerThriftUDPClient | |
--- PASS: TestNewJaegerThriftUDPClient (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/agent/app/testutils 1.097s | |
? github.com/jaegertracing/jaeger/cmd/all-in-one [no test files] | |
=== RUN TestApplyOptions | |
--- PASS: TestApplyOptions (0.00s) | |
=== RUN TestApplyNoOptions | |
--- PASS: TestApplyNoOptions (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/builder 1.026s | |
? github.com/jaegertracing/jaeger/cmd/collector [no test files] | |
=== RUN TestThriftFormat | |
--- PASS: TestThriftFormat (0.01s) | |
=== RUN TestViaClient | |
--- PASS: TestViaClient (0.01s) | |
=== RUN TestBadBody | |
--- PASS: TestBadBody (0.00s) | |
=== RUN TestWrongFormat | |
--- PASS: TestWrongFormat (0.00s) | |
=== RUN TestMalformedFormat | |
--- PASS: TestMalformedFormat (0.00s) | |
=== RUN TestCannotReadBodyFromRequest | |
--- PASS: TestCannotReadBodyFromRequest (0.00s) | |
=== RUN TestProcessorMetrics | |
--- PASS: TestProcessorMetrics (0.00s) | |
=== RUN TestNewCountsBySvc | |
--- PASS: TestNewCountsBySvc (0.00s) | |
=== RUN TestChainedProcessSpan | |
--- PASS: TestChainedProcessSpan (0.00s) | |
=== RUN TestAllOptionSet | |
--- PASS: TestAllOptionSet (0.00s) | |
=== RUN TestNoOptionsSet | |
--- PASS: TestNoOptionsSet (0.00s) | |
=== RUN TestServiceNameReplacer | |
--- PASS: TestServiceNameReplacer (0.00s) | |
=== RUN TestJaegerSpanHandler | |
--- PASS: TestJaegerSpanHandler (0.00s) | |
=== RUN TestZipkinSpanHandler | |
--- PASS: TestZipkinSpanHandler (0.00s) | |
=== RUN TestBySvcMetrics | |
--- PASS: TestBySvcMetrics (0.01s) | |
=== RUN TestSpanProcessor | |
--- PASS: TestSpanProcessor (0.01s) | |
=== RUN TestSpanProcessorErrors | |
--- PASS: TestSpanProcessorErrors (0.01s) | |
=== RUN TestSpanProcessorBusy | |
--- PASS: TestSpanProcessorBusy (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app 1.094s | |
=== RUN TestNewSpanHandlerBuilder | |
--- PASS: TestNewSpanHandlerBuilder (0.01s) | |
=== RUN TestDefaultSpanFilter | |
--- PASS: TestDefaultSpanFilter (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/builder 1.044s | |
=== RUN TestHandler | |
--- PASS: TestHandler (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sampling 1.031s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sampling/model 1.015s [no tests to run] | |
? github.com/jaegertracing/jaeger/cmd/collector/app/sampling/strategystore [no test files] | |
=== RUN TestSanitize | |
--- PASS: TestSanitize (0.00s) | |
=== RUN TestSanitizeEmptyCache | |
--- PASS: TestSanitizeEmptyCache (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeKV | |
--- PASS: TestUTF8Sanitizer_SanitizeKV (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeServiceName | |
--- PASS: TestUTF8Sanitizer_SanitizeServiceName (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeOperationName | |
--- PASS: TestUTF8Sanitizer_SanitizeOperationName (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeProcessTags | |
--- PASS: TestUTF8Sanitizer_SanitizeProcessTags (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeTags | |
--- PASS: TestUTF8Sanitizer_SanitizeTags (0.00s) | |
=== RUN TestUTF8Sanitizer_SanitizeLogs | |
--- PASS: TestUTF8Sanitizer_SanitizeLogs (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer 1.043s | |
=== RUN TestConstructor | |
--- PASS: TestConstructor (0.00s) | |
=== RUN TestGetRandomSleepTime | |
--- PASS: TestGetRandomSleepTime (0.00s) | |
=== RUN TestGet | |
--- PASS: TestGet (0.00s) | |
=== RUN TestPut | |
--- PASS: TestPut (0.00s) | |
=== RUN TestInitialize | |
--- PASS: TestInitialize (0.00s) | |
=== RUN TestInitialize_error | |
--- PASS: TestInitialize_error (0.00s) | |
=== RUN TestWarmCache | |
--- PASS: TestWarmCache (0.00s) | |
=== RUN TestRefreshFromStorage | |
--- PASS: TestRefreshFromStorage (0.01s) | |
=== RUN TestRefreshFromStorage_error | |
--- PASS: TestRefreshFromStorage_error (0.01s) | |
=== RUN TestInitializeCacheRefresh | |
--- PASS: TestInitializeCacheRefresh (0.00s) | |
=== RUN TestRefreshFromExternalSource | |
--- PASS: TestRefreshFromExternalSource (0.01s) | |
=== RUN TestUpdateAndSaveToStorage | |
=== RUN TestUpdateAndSaveToStorage/load_error | |
=== RUN TestUpdateAndSaveToStorage/same_cache | |
=== RUN TestUpdateAndSaveToStorage/different_cache | |
--- PASS: TestUpdateAndSaveToStorage (0.00s) | |
--- PASS: TestUpdateAndSaveToStorage/load_error (0.00s) | |
--- PASS: TestUpdateAndSaveToStorage/same_cache (0.00s) | |
--- PASS: TestUpdateAndSaveToStorage/different_cache (0.00s) | |
=== RUN TestIsEmpty | |
--- PASS: TestIsEmpty (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache 1.067s | |
? github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/cache/mocks [no test files] | |
=== RUN TestChainedSanitizer | |
--- PASS: TestChainedSanitizer (0.00s) | |
=== RUN TestSpanDurationSanitizer | |
--- PASS: TestSpanDurationSanitizer (0.00s) | |
=== RUN TestSpanParentIDSanitizer | |
--- PASS: TestSpanParentIDSanitizer (0.00s) | |
=== RUN TestSpanErrorSanitizer | |
--- PASS: TestSpanErrorSanitizer (0.00s) | |
=== RUN TestSpanStartTimeSanitizer | |
--- PASS: TestSpanStartTimeSanitizer (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/sanitizer/zipkin 1.027s | |
=== RUN TestCoreChecks | |
--- PASS: TestCoreChecks (0.00s) | |
=== RUN TestFindServiceName | |
--- PASS: TestFindServiceName (0.00s) | |
=== RUN TestViaClient | |
--- PASS: TestViaClient (0.35s) | |
=== RUN TestThriftFormat | |
--- PASS: TestThriftFormat (0.44s) | |
=== RUN TestJsonFormat | |
--- PASS: TestJsonFormat (0.36s) | |
=== RUN TestGzipEncoding | |
--- PASS: TestGzipEncoding (0.43s) | |
=== RUN TestGzipBadBody | |
--- PASS: TestGzipBadBody (0.37s) | |
=== RUN TestMalformedContentType | |
--- PASS: TestMalformedContentType (0.37s) | |
=== RUN TestUnsupportedContentType | |
--- PASS: TestUnsupportedContentType (0.33s) | |
=== RUN TestFormatBadBody | |
--- PASS: TestFormatBadBody (0.28s) | |
=== RUN TestDeserializeWithBadListStart | |
--- PASS: TestDeserializeWithBadListStart (0.00s) | |
=== RUN TestCannotReadBodyFromRequest | |
--- PASS: TestCannotReadBodyFromRequest (0.32s) | |
=== RUN TestSaveSpansV2 | |
--- PASS: TestSaveSpansV2 (0.27s) | |
=== RUN TestDecodeWrongJson | |
--- PASS: TestDecodeWrongJson (0.00s) | |
=== RUN TestUnmarshalEndpoint | |
--- PASS: TestUnmarshalEndpoint (0.00s) | |
=== RUN TestUnmarshalAnnotation | |
--- PASS: TestUnmarshalAnnotation (0.00s) | |
=== RUN TestUnmarshalBinAnnotation | |
--- PASS: TestUnmarshalBinAnnotation (0.00s) | |
=== RUN TestUnmarshalBinAnnotationNumberValue | |
--- PASS: TestUnmarshalBinAnnotationNumberValue (0.00s) | |
=== RUN TestUnmarshalSpan | |
--- PASS: TestUnmarshalSpan (0.00s) | |
=== RUN TestIncorrectSpanIds | |
--- PASS: TestIncorrectSpanIds (0.00s) | |
=== RUN TestEndpointToThrift | |
--- PASS: TestEndpointToThrift (0.00s) | |
=== RUN TestAnnotationToThrift | |
--- PASS: TestAnnotationToThrift (0.00s) | |
=== RUN TestBinaryAnnotationToThrift | |
--- PASS: TestBinaryAnnotationToThrift (0.00s) | |
=== RUN TestSpanToThrift | |
--- PASS: TestSpanToThrift (0.00s) | |
=== RUN TestFixtures | |
--- PASS: TestFixtures (0.00s) | |
=== RUN TestLCFromLocalEndpoint | |
Span({TraceID:2 Name:foo ID:2 ParentID:<nil> Annotations:[] BinaryAnnotations:[BinaryAnnotation({Key:lc Value:[] AnnotationType:STRING Host:Endpoint({Ipv4:170594602 Port:8080 ServiceName:bar Ipv6:[]})})] Debug:false Timestamp:0xc0002e18b0 Duration:0xc0002e1850 TraceIDHigh:<nil>}) | |
--- PASS: TestLCFromLocalEndpoint (0.00s) | |
=== RUN TestKindToThrift | |
--- PASS: TestKindToThrift (0.00s) | |
=== RUN TestRemoteEndpToThrift | |
--- PASS: TestRemoteEndpToThrift (0.00s) | |
=== RUN TestErrIds | |
--- PASS: TestErrIds (0.00s) | |
=== RUN TestErrEndpoints | |
--- PASS: TestErrEndpoints (0.00s) | |
=== RUN TestErrSpans | |
--- PASS: TestErrSpans (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/collector/app/zipkin 5.148s | |
=== RUN TestCommand | |
--- PASS: TestCommand (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/env 1.042s | |
? github.com/jaegertracing/jaeger/cmd/flags [no test files] | |
? github.com/jaegertracing/jaeger/cmd/ingester [no test files] | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.00s) | |
=== RUN TestFlagDefaults | |
--- PASS: TestFlagDefaults (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app 1.038s | |
? github.com/jaegertracing/jaeger/cmd/ingester/app/builder [no test files] | |
=== RUN TestNewCommittingProcessor | |
--- PASS: TestNewCommittingProcessor (0.00s) | |
<autogenerated>:1: PASS: Process(string) | |
=== RUN TestNewCommittingProcessorError | |
--- PASS: TestNewCommittingProcessorError (0.00s) | |
<autogenerated>:1: PASS: Process(string) | |
=== RUN TestNewCommittingProcessorErrorNoKafkaMessage | |
--- PASS: TestNewCommittingProcessorErrorNoKafkaMessage (0.00s) | |
=== RUN TestConstructor | |
--- PASS: TestConstructor (0.00s) | |
=== RUN TestSaramaConsumerWrapper_MarkPartitionOffset | |
--- PASS: TestSaramaConsumerWrapper_MarkPartitionOffset (0.00s) | |
=== RUN TestSaramaConsumerWrapper_start_Messages | |
2018-10-20T14:07:15.535+0800 INFO consumer/consumer.go:73 Starting main loop | |
2018-10-20T14:07:15.535+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:07:15.536+0800 INFO consumer/consumer.go:102 Starting message handler {"partition": 316} | |
2018-10-20T14:07:15.536+0800 INFO consumer/consumer.go:149 Starting error handler {"partition": 316} | |
2018-10-20T14:07:15.537+0800 DEBUG consumer/consumer.go:121 Got msg {"msg": {"Key":null,"Value":null,"Topic":"morekuzambu","Partition":316,"Offset":1,"Timestamp":"0001-01-01T00:00:00Z","BlockTimestamp":"0001-01-01T00:00:00Z","Headers":null}} | |
2018-10-20T14:07:15.537+0800 INFO consumer/processor_factory.go:62 Creating new processors {"partition": 316} | |
2018-10-20T14:07:15.538+0800 DEBUG processor/parallel_processor.go:50 Spawning goroutines to process messages {"num_routines": 1} | |
2018-10-20T14:07:15.541+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:07:15.541+0800 INFO consumer/consumer.go:158 Finished handling errors {"partition": 316} | |
2018-10-20T14:07:15.541+0800 INFO consumer/consumer.go:118 Message channel closed. {"partition": 316} | |
2018-10-20T14:07:15.541+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:07:15.541+0800 DEBUG processor/parallel_processor.go:75 Initiated shutdown of processor goroutines | |
2018-10-20T14:07:15.541+0800 INFO processor/parallel_processor.go:78 Completed shutdown of processor goroutines | |
2018-10-20T14:07:15.541+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 316} | |
2018-10-20T14:07:15.541+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:07:15.541+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 316} | |
2018-10-20T14:07:15.542+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:07:15.542+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:07:15.542+0800 INFO consumer/consumer.go:97 Closing parent consumer | |
2018-10-20T14:07:15.542+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
--- PASS: TestSaramaConsumerWrapper_start_Messages (0.01s) | |
<autogenerated>:1: PASS: Process(*consumer.saramaMessageWrapper) | |
=== RUN TestSaramaConsumerWrapper_start_Errors | |
2018-10-20T14:07:15.543+0800 INFO consumer/consumer.go:73 Starting main loop | |
2018-10-20T14:07:15.544+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:07:15.544+0800 INFO consumer/consumer.go:102 Starting message handler {"partition": 316} | |
2018-10-20T14:07:15.544+0800 INFO consumer/consumer.go:149 Starting error handler {"partition": 316} | |
2018-10-20T14:07:15.545+0800 ERROR consumer/consumer.go:156 Error consuming from Kafka {"error": "kafka: error while consuming morekuzambu/316: Daisy, Daisy"} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).handleErrors | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:156 | |
2018-10-20T14:07:15.546+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:07:15.546+0800 INFO consumer/consumer.go:118 Message channel closed. {"partition": 316} | |
2018-10-20T14:07:15.546+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 316} | |
2018-10-20T14:07:15.546+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:07:15.546+0800 INFO consumer/consumer.go:158 Finished handling errors {"partition": 316} | |
2018-10-20T14:07:15.546+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:07:15.547+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 316} | |
2018-10-20T14:07:15.547+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:07:15.547+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:07:15.547+0800 INFO consumer/consumer.go:97 Closing parent consumer | |
2018-10-20T14:07:15.547+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
--- PASS: TestSaramaConsumerWrapper_start_Errors (0.00s) | |
=== RUN TestHandleClosePartition | |
2018-10-20T14:07:15.548+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:07:15.548+0800 INFO consumer/consumer.go:73 Starting main loop | |
2018-10-20T14:07:15.548+0800 INFO consumer/consumer.go:102 Starting message handler {"partition": 316} | |
2018-10-20T14:07:15.548+0800 INFO consumer/consumer.go:149 Starting error handler {"partition": 316} | |
2018-10-20T14:07:15.753+0800 INFO consumer/consumer.go:135 Closing partition due to inactivity {"partition": 316} | |
2018-10-20T14:07:15.753+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 316} | |
2018-10-20T14:07:15.753+0800 WARN consumer/deadlock_detector.go:115 Signalling partition close due to inactivity {"partition": 316} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*deadlockDetector).monitorForPartition | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:115 | |
2018-10-20T14:07:15.753+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:07:15.753+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 316} | |
2018-10-20T14:07:15.753+0800 INFO consumer/consumer.go:158 Finished handling errors {"partition": 316} | |
2018-10-20T14:07:15.753+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:07:15.853+0800 INFO consumer/consumer.go:142 Closing partition consumer {"partition": 316} | |
2018-10-20T14:07:15.854+0800 INFO consumer/consumer.go:145 Closed partition consumer {"partition": 316} | |
2018-10-20T14:07:15.854+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:07:15.854+0800 INFO consumer/consumer.go:97 Closing parent consumer | |
2018-10-20T14:07:15.854+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
--- PASS: TestHandleClosePartition (0.31s) | |
=== RUN TestClosingSignalEmitted | |
2018-10-20T14:07:15.856+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 1} | |
2018-10-20T14:07:15.856+0800 WARN consumer/deadlock_detector.go:115 Signalling partition close due to inactivity {"partition": 1} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*deadlockDetector).monitorForPartition | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:115 | |
--- PASS: TestClosingSignalEmitted (0.00s) | |
2018-10-20T14:07:15.856+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 1} | |
=== RUN TestNoClosingSignalIfMessagesProcessedInInterval | |
2018-10-20T14:07:15.857+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:07:15.857+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 1} | |
2018-10-20T14:07:15.857+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
2018-10-20T14:07:15.857+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 1} | |
--- PASS: TestNoClosingSignalIfMessagesProcessedInInterval (0.00s) | |
2018-10-20T14:07:15.857+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
=== RUN TestResetMsgCount | |
2018-10-20T14:07:15.857+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
2018-10-20T14:07:15.934+0800 DEBUG consumer/deadlock_detector.go:177 Closing deadlock detector {"partition": 1} | |
2018-10-20T14:07:15.935+0800 DEBUG consumer/deadlock_detector.go:164 Closing all partitions deadlock detector | |
--- PASS: TestResetMsgCount (0.08s) | |
=== RUN TestPanicFunc | |
2018-10-20T14:07:15.935+0800 INFO consumer/deadlock_detector.go:108 Closing ticker routine {"partition": 1} | |
2018-10-20T14:07:15.935+0800 DEBUG consumer/deadlock_detector.go:148 Closing global ticker routine | |
2018-10-20T14:07:16.940+0800 PANIC consumer/deadlock_detector.go:69 No messages processed in the last check interval {"partition": 1, "stack": "goroutine 76 [running]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.newDeadlockDetector.func1(0x1)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:71 +0x233\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc.func1()\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:72 +0x45\ngithub.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic.func1(0xc0002afdd8, 0xc0002afdc6, 0xc0001a5100)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:862 +0x69\ngithub.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic(0xc0001a5100, 0x1bc7f00, 0xc000147100, 0x3b9d318)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:864 +0x5e\ngithub.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.Panics(0x1bc7f00, 0xc000147100, 0xc0001a5100, 0x0, 0x0, 0x0, 0xc0000c93e0)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:878 +0x7f\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc(0xc000147100)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:71 +0x1ac\ntesting.tRunner(0xc000147100, 0x1afaba0)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:827 +0x163\ncreated by testing.(*T).Run\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:878 +0x651\n\ngoroutine 1 [chan receive]:\ntesting.(*T).Run(0xc000146300, 0x1ad20ba, 0xd, 0x1afaba0, 0xc00015bc01)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:879 +0x689\ntesting.runTests.func1(0xc000146300)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:1119 +0xa9\ntesting.tRunner(0xc000146300, 0xc00015bd88)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:827 +0x163\ntesting.runTests(0xc0000d51e0, 0x21a9220, 0x12, 0x12, 0x1165e5d)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:1117 +0x4ef\ntesting.(*M).Run(0xc00014c280, 0x0)\n\t/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:1034 +0x2ef\nmain.main()\n\t_testmain.go:76 +0x222\n\ngoroutine 27 [chan receive]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start.func1(0xc0001ae0b0)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:74 +0x190\ncreated by github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:72 +0x61\n\ngoroutine 58 [chan receive]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start.func1(0xc000220420)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:74 +0x190\ncreated by github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:72 +0x61\n\ngoroutine 11 [chan receive]:\ngithub.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start.func1(0xc0001e0210)\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:74 +0x190\ncreated by github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*Consumer).Start\n\t/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/consumer.go:72 +0x61\n"} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.newDeadlockDetector.func1 | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:69 | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc.func1 | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:72 | |
github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic.func1 | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:862 | |
github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.didPanic | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:864 | |
github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert.Panics | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/vendor/github.com/stretchr/testify/assert/assertions.go:878 | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.TestPanicFunc | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector_test.go:71 | |
testing.tRunner | |
/usr/local/Cellar/go/1.11.1/libexec/src/testing/testing.go:827 | |
--- PASS: TestPanicFunc (1.01s) | |
=== RUN TestPanicForPartition | |
2018-10-20T14:07:16.942+0800 WARN consumer/deadlock_detector.go:115 Signalling partition close due to inactivity {"partition": 1} | |
github.com/jaegertracing/jaeger/cmd/ingester/app/consumer.(*deadlockDetector).monitorForPartition | |
/Users/ariefrahmansyah/go/src/github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/deadlock_detector.go:115 | |
--- PASS: TestPanicForPartition (0.00s) | |
=== RUN TestGlobalPanic | |
2018-10-20T14:07:16.942+0800 DEBUG consumer/deadlock_detector.go:141 Starting global deadlock detector | |
--- PASS: TestGlobalPanic (0.00s) | |
=== RUN TestSaramaMessageWrapper | |
--- PASS: TestSaramaMessageWrapper (0.00s) | |
=== RUN Test_NewFactory | |
--- PASS: Test_NewFactory (0.00s) | |
=== RUN Test_new | |
--- PASS: Test_new (0.15s) | |
=== RUN Test_startedProcessor_Process | |
--- PASS: Test_startedProcessor_Process (0.00s) | |
<autogenerated>:1: PASS: Close() | |
<autogenerated>:1: PASS: Process(*consumer.fakeMsg) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/consumer 2.605s | |
? github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/mocks [no test files] | |
=== RUN TestInsert | |
--- PASS: TestInsert (0.00s) | |
=== RUN TestGetHighestAndReset | |
=== RUN TestGetHighestAndReset/[1] | |
=== RUN TestGetHighestAndReset/[1_20] | |
=== RUN TestGetHighestAndReset/[20_1] | |
=== RUN TestGetHighestAndReset/[1_2] | |
=== RUN TestGetHighestAndReset/[2_1] | |
=== RUN TestGetHighestAndReset/[4_5_6] | |
=== RUN TestGetHighestAndReset/[5_4_6] | |
=== RUN TestGetHighestAndReset/[6_5_4] | |
=== RUN TestGetHighestAndReset/[5_6_4] | |
=== RUN TestGetHighestAndReset/[6_4_5] | |
=== RUN TestGetHighestAndReset/[4_6_5] | |
=== RUN TestGetHighestAndReset/[1_2_4_5] | |
=== RUN TestGetHighestAndReset/[2_1_4_5] | |
=== RUN TestGetHighestAndReset/[4_2_1_5] | |
=== RUN TestGetHighestAndReset/[2_4_1_5] | |
=== RUN TestGetHighestAndReset/[4_1_2_5] | |
=== RUN TestGetHighestAndReset/[1_4_2_5] | |
=== RUN TestGetHighestAndReset/[5_1_2_4] | |
=== RUN TestGetHighestAndReset/[1_5_2_4] | |
=== RUN TestGetHighestAndReset/[2_1_5_4] | |
=== RUN TestGetHighestAndReset/[1_2_5_4] | |
=== RUN TestGetHighestAndReset/[2_5_1_4] | |
=== RUN TestGetHighestAndReset/[5_2_1_4] | |
=== RUN TestGetHighestAndReset/[4_5_1_2] | |
=== RUN TestGetHighestAndReset/[5_4_1_2] | |
=== RUN TestGetHighestAndReset/[1_5_4_2] | |
=== RUN TestGetHighestAndReset/[5_1_4_2] | |
=== RUN TestGetHighestAndReset/[1_4_5_2] | |
=== RUN TestGetHighestAndReset/[4_1_5_2] | |
=== RUN TestGetHighestAndReset/[2_4_5_1] | |
=== RUN TestGetHighestAndReset/[4_2_5_1] | |
=== RUN TestGetHighestAndReset/[5_4_2_1] | |
=== RUN TestGetHighestAndReset/[4_5_2_1] | |
=== RUN TestGetHighestAndReset/[5_2_4_1] | |
=== RUN TestGetHighestAndReset/[2_5_4_1] | |
--- PASS: TestGetHighestAndReset (0.01s) | |
--- PASS: TestGetHighestAndReset/[1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_20] (0.00s) | |
--- PASS: TestGetHighestAndReset/[20_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_5_6] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_4_6] (0.00s) | |
--- PASS: TestGetHighestAndReset/[6_5_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_6_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[6_4_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_6_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_2_4_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_1_4_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_2_1_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_4_1_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_1_2_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_4_2_5] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_1_2_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_5_2_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_1_5_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_2_5_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_5_1_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_2_1_4] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_5_1_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_4_1_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_5_4_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_1_4_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[1_4_5_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_1_5_2] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_4_5_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_2_5_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_4_2_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[4_5_2_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[5_2_4_1] (0.00s) | |
--- PASS: TestGetHighestAndReset/[2_5_4_1] (0.00s) | |
=== RUN TestMultipleInsertsAndResets | |
--- PASS: TestMultipleInsertsAndResets (0.00s) | |
=== RUN TestHandleReset | |
--- PASS: TestHandleReset (0.10s) | |
=== RUN TestCache | |
--- PASS: TestCache (0.10s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/consumer/offset 1.251s | |
=== RUN TestNewSpanProcessor | |
--- PASS: TestNewSpanProcessor (0.00s) | |
=== RUN TestSpanProcessor_Process | |
--- PASS: TestSpanProcessor_Process (0.00s) | |
<autogenerated>:1: PASS: Value() | |
<autogenerated>:1: PASS: WriteSpan(*model.Span) | |
=== RUN TestSpanProcessor_ProcessError | |
--- PASS: TestSpanProcessor_ProcessError (0.00s) | |
<autogenerated>:1: PASS: Value() | |
=== RUN TestProcess | |
--- PASS: TestProcess (0.00s) | |
<autogenerated>:1: PASS: Process(processor_test.fakeMsg) | |
=== RUN TestProcessErr | |
--- PASS: TestProcessErr (0.00s) | |
<autogenerated>:1: PASS: Process(processor_test.fakeMsg) | |
=== RUN TestNewParallelProcessor | |
--- PASS: TestNewParallelProcessor (0.10s) | |
<autogenerated>:1: PASS: Process(*processor_test.fakeMessage) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/processor 1.139s | |
=== RUN TestNewRetryingProcessor | |
--- PASS: TestNewRetryingProcessor (0.00s) | |
<autogenerated>:1: PASS: Process(*decorator.fakeMsg) | |
=== RUN TestNewRetryingProcessorError | |
--- PASS: TestNewRetryingProcessorError (2.01s) | |
=== RUN TestNewRetryingProcessorNoErrorPropagation | |
--- PASS: TestNewRetryingProcessorNoErrorPropagation (1.00s) | |
=== RUN Test_ProcessBackoff | |
=== RUN Test_ProcessBackoff/zeroth_retry_attempt,_minBackoff | |
=== RUN Test_ProcessBackoff/first_retry_attempt,_2_x_minBackoff | |
=== RUN Test_ProcessBackoff/second_attempt,_4_x_minBackoff | |
=== RUN Test_ProcessBackoff/sixth_attempt,_maxBackoff | |
=== RUN Test_ProcessBackoff/overflows,_maxBackoff | |
--- PASS: Test_ProcessBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/zeroth_retry_attempt,_minBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/first_retry_attempt,_2_x_minBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/second_attempt,_4_x_minBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/sixth_attempt,_maxBackoff (0.00s) | |
--- PASS: Test_ProcessBackoff/overflows,_maxBackoff (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/ingester/app/processor/decorator 4.043s | |
? github.com/jaegertracing/jaeger/cmd/ingester/app/processor/mocks [no test files] | |
? github.com/jaegertracing/jaeger/cmd/query [no test files] | |
=== RUN TestQueryBuilderFlags | |
--- PASS: TestQueryBuilderFlags (0.00s) | |
=== RUN TestGetArchivedTrace_NotFound | |
=== RUN TestGetArchivedTrace_NotFound/<nil> | |
=== RUN TestGetArchivedTrace_NotFound/&{{[0xc000164510]_[]_<nil>_map[]_{0_0}}} | |
--- PASS: TestGetArchivedTrace_NotFound (0.01s) | |
--- PASS: TestGetArchivedTrace_NotFound/<nil> (0.01s) | |
--- PASS: TestGetArchivedTrace_NotFound/&{{[0xc000164510]_[]_<nil>_map[]_{0_0}}} (0.01s) | |
=== RUN TestGetArchivedTraceSuccess | |
--- PASS: TestGetArchivedTraceSuccess (0.01s) | |
=== RUN TestArchiveTrace_NoStorage | |
--- PASS: TestArchiveTrace_NoStorage (0.00s) | |
=== RUN TestArchiveTrace_Success | |
--- PASS: TestArchiveTrace_Success (0.01s) | |
=== RUN TestArchiveTrace_WriteErrors | |
--- PASS: TestArchiveTrace_WriteErrors (0.01s) | |
=== RUN TestDeduplicateDependencies | |
--- PASS: TestDeduplicateDependencies (0.00s) | |
=== RUN TestFilterDependencies | |
--- PASS: TestFilterDependencies (0.00s) | |
=== RUN TestGetDependenciesSuccess | |
--- PASS: TestGetDependenciesSuccess (0.00s) | |
=== RUN TestGetDependenciesCassandraFailure | |
--- PASS: TestGetDependenciesCassandraFailure (0.00s) | |
=== RUN TestGetDependenciesEndTimeParsingFailure | |
--- PASS: TestGetDependenciesEndTimeParsingFailure (0.00s) | |
=== RUN TestGetDependenciesLookbackParsingFailure | |
--- PASS: TestGetDependenciesLookbackParsingFailure (0.00s) | |
=== RUN TestGetTraceSuccess | |
--- PASS: TestGetTraceSuccess (0.00s) | |
=== RUN TestLogOnServerError | |
--- PASS: TestLogOnServerError (0.00s) | |
=== RUN TestPrettyPrint | |
=== RUN TestPrettyPrint/#00 | |
=== RUN TestPrettyPrint/?prettyPrint=false | |
=== RUN TestPrettyPrint/?prettyPrint=x | |
--- PASS: TestPrettyPrint (0.01s) | |
--- PASS: TestPrettyPrint/#00 (0.00s) | |
--- PASS: TestPrettyPrint/?prettyPrint=false (0.00s) | |
--- PASS: TestPrettyPrint/?prettyPrint=x (0.00s) | |
=== RUN TestGetTrace | |
=== RUN TestGetTrace/#00 | |
=== RUN TestGetTrace/?raw=true | |
=== RUN TestGetTrace/?raw=false | |
--- PASS: TestGetTrace (0.02s) | |
--- PASS: TestGetTrace/#00 (0.01s) | |
--- PASS: TestGetTrace/?raw=true (0.01s) | |
--- PASS: TestGetTrace/?raw=false (0.00s) | |
=== RUN TestGetTraceDBFailure | |
--- PASS: TestGetTraceDBFailure (0.00s) | |
=== RUN TestGetTraceNotFound | |
--- PASS: TestGetTraceNotFound (0.00s) | |
=== RUN TestGetTraceAdjustmentFailure | |
--- PASS: TestGetTraceAdjustmentFailure (0.00s) | |
=== RUN TestGetTraceBadTraceID | |
--- PASS: TestGetTraceBadTraceID (0.00s) | |
=== RUN TestSearchSuccess | |
--- PASS: TestSearchSuccess (0.00s) | |
=== RUN TestSearchByTraceIDSuccess | |
--- PASS: TestSearchByTraceIDSuccess (0.00s) | |
=== RUN TestSearchByTraceIDSuccessWithArchive | |
--- PASS: TestSearchByTraceIDSuccessWithArchive (0.00s) | |
=== RUN TestSearchByTraceIDNotFound | |
--- PASS: TestSearchByTraceIDNotFound (0.00s) | |
=== RUN TestSearchByTraceIDFailure | |
--- PASS: TestSearchByTraceIDFailure (0.00s) | |
=== RUN TestSearchModelConversionFailure | |
--- PASS: TestSearchModelConversionFailure (0.00s) | |
=== RUN TestSearchDBFailure | |
--- PASS: TestSearchDBFailure (0.00s) | |
=== RUN TestSearchFailures | |
--- PASS: TestSearchFailures (0.01s) | |
=== RUN TestGetServicesSuccess | |
--- PASS: TestGetServicesSuccess (0.00s) | |
=== RUN TestGetServicesStorageFailure | |
--- PASS: TestGetServicesStorageFailure (0.00s) | |
=== RUN TestGetOperationsSuccess | |
--- PASS: TestGetOperationsSuccess (0.00s) | |
=== RUN TestGetOperationsNoServiceName | |
--- PASS: TestGetOperationsNoServiceName (0.00s) | |
=== RUN TestGetOperationsStorageFailure | |
--- PASS: TestGetOperationsStorageFailure (0.00s) | |
=== RUN TestGetOperationsLegacySuccess | |
--- PASS: TestGetOperationsLegacySuccess (0.00s) | |
=== RUN TestGetOperationsLegacyStorageFailure | |
--- PASS: TestGetOperationsLegacyStorageFailure (0.00s) | |
=== RUN TestParseTraceQuery | |
=== RUN TestParseTraceQuery/#00 | |
=== RUN TestParseTraceQuery/x?service=service&start=string | |
=== RUN TestParseTraceQuery/x?service=service&end=string | |
=== RUN TestParseTraceQuery/x?service=service&limit=string | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20 | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20s&maxDuration=30 | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&minDuration=1s | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y&tag=k&log=k:v&log=k | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=25s&maxDuration=1s | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":123} | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":"y"} | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags=%7B%22x%22%3A%22y%22%7D | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s&maxDuration=20s | |
=== RUN TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s | |
=== RUN TestParseTraceQuery/x?traceID=1f00&traceID=1E00 | |
=== RUN TestParseTraceQuery/x?traceID=100&traceID=x200 | |
--- PASS: TestParseTraceQuery (0.00s) | |
--- PASS: TestParseTraceQuery/#00 (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=string (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&end=string (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&limit=string (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20 (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=20s&maxDuration=30 (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&minDuration=1s (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y&tag=k&log=k:v&log=k (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=25s&maxDuration=1s (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tag=x:y (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":123} (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags={"x":"y"} (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&tag=k:v&tags=%7B%22x%22%3A%22y%22%7D (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s&maxDuration=20s (0.00s) | |
--- PASS: TestParseTraceQuery/x?service=service&start=0&end=0&operation=operation&limit=200&minDuration=10s (0.00s) | |
--- PASS: TestParseTraceQuery/x?traceID=1f00&traceID=1E00 (0.00s) | |
--- PASS: TestParseTraceQuery/x?traceID=100&traceID=x200 (0.00s) | |
=== RUN TestNotExistingUiConfig | |
--- PASS: TestNotExistingUiConfig (0.00s) | |
=== RUN TestRegisterStaticHandlerPanic | |
--- PASS: TestRegisterStaticHandlerPanic (0.00s) | |
=== RUN TestRegisterStaticHandler | |
=== RUN TestRegisterStaticHandler/basePath= | |
=== RUN TestRegisterStaticHandler/basePath=/ | |
=== RUN TestRegisterStaticHandler/basePath=/jaeger | |
--- PASS: TestRegisterStaticHandler (0.04s) | |
--- PASS: TestRegisterStaticHandler/basePath= (0.03s) | |
--- PASS: TestRegisterStaticHandler/basePath=/ (0.00s) | |
--- PASS: TestRegisterStaticHandler/basePath=/jaeger (0.00s) | |
=== RUN TestNewStaticAssetsHandlerErrors | |
--- PASS: TestNewStaticAssetsHandlerErrors (0.00s) | |
=== RUN TestLoadUIConfig | |
=== RUN TestLoadUIConfig/no_config | |
=== RUN TestLoadUIConfig/invalid_config | |
=== RUN TestLoadUIConfig/unsupported_type | |
=== RUN TestLoadUIConfig/malformed | |
=== RUN TestLoadUIConfig/json | |
=== RUN TestLoadUIConfig/json-menu | |
--- PASS: TestLoadUIConfig (0.00s) | |
--- PASS: TestLoadUIConfig/no_config (0.00s) | |
--- PASS: TestLoadUIConfig/invalid_config (0.00s) | |
--- PASS: TestLoadUIConfig/unsupported_type (0.00s) | |
--- PASS: TestLoadUIConfig/malformed (0.00s) | |
--- PASS: TestLoadUIConfig/json (0.00s) | |
--- PASS: TestLoadUIConfig/json-menu (0.00s) | |
=== RUN TestLoadIndexHTMLReadError | |
--- PASS: TestLoadIndexHTMLReadError (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/cmd/query/app 1.244s | |
? github.com/jaegertracing/jaeger/cmd/query/app/ui [no test files] | |
? github.com/jaegertracing/jaeger/cmd/query/app/ui/actual/statik [no test files] | |
? github.com/jaegertracing/jaeger/cmd/query/app/ui/placeholder/statik [no test files] | |
? github.com/jaegertracing/jaeger/crossdock [no test files] | |
=== RUN TestGetSamplingRateInternal | |
--- PASS: TestGetSamplingRateInternal (0.00s) | |
=== RUN TestGetSamplingRate | |
--- PASS: TestGetSamplingRate (0.01s) | |
=== RUN TestGetTracerServiceName | |
--- PASS: TestGetTracerServiceName (0.00s) | |
=== RUN TestGetTraces | |
--- PASS: TestGetTraces (0.00s) | |
=== RUN TestCreateTraceRequest | |
--- PASS: TestCreateTraceRequest (0.00s) | |
=== RUN TestExpectedTagsExist | |
--- PASS: TestExpectedTagsExist (0.00s) | |
=== RUN TestConvertTagsIntoMap | |
--- PASS: TestConvertTagsIntoMap (0.00s) | |
=== RUN TestRunTest | |
--- PASS: TestRunTest (0.00s) | |
=== RUN TestValidateTracesWithCount | |
--- PASS: TestValidateTracesWithCount (0.00s) | |
=== RUN TestCreateTrace | |
--- PASS: TestCreateTrace (0.00s) | |
=== RUN TestTraceHandlerGetTraces | |
--- PASS: TestTraceHandlerGetTraces (0.02s) | |
=== RUN TestCreateTracesLoop | |
--- PASS: TestCreateTracesLoop (0.00s) | |
=== RUN TestValidateAdaptiveSamplingTraces | |
--- PASS: TestValidateAdaptiveSamplingTraces (0.00s) | |
=== RUN TestAdaptiveSamplingTestInternal | |
=== RUN TestAdaptiveSamplingTestInternal/0 | |
=== RUN TestAdaptiveSamplingTestInternal/1 | |
=== RUN TestAdaptiveSamplingTestInternal/2 | |
=== RUN TestAdaptiveSamplingTestInternal/3 | |
--- PASS: TestAdaptiveSamplingTestInternal (0.05s) | |
--- PASS: TestAdaptiveSamplingTestInternal/0 (0.00s) | |
--- PASS: TestAdaptiveSamplingTestInternal/1 (0.03s) | |
--- PASS: TestAdaptiveSamplingTestInternal/2 (0.02s) | |
--- PASS: TestAdaptiveSamplingTestInternal/3 (0.00s) | |
=== RUN TestEndToEndTest | |
--- PASS: TestEndToEndTest (0.02s) | |
=== RUN TestAdaptiveSamplingTest | |
--- PASS: TestAdaptiveSamplingTest (0.03s) | |
PASS | |
ok github.com/jaegertracing/jaeger/crossdock/services 1.179s | |
? github.com/jaegertracing/jaeger/crossdock/services/mocks [no test files] | |
=== RUN TestSortTraces | |
--- PASS: TestSortTraces (0.00s) | |
=== RUN TestSortListOfTraces | |
--- PASS: TestSortListOfTraces (0.00s) | |
=== RUN TestHasCodeError | |
--- PASS: TestHasCodeError (0.00s) | |
=== RUN TestTraceSpanIDMarshalProto | |
=== RUN TestTraceSpanIDMarshalProto/protobuf | |
=== RUN TestTraceSpanIDMarshalProto/JSON | |
--- PASS: TestTraceSpanIDMarshalProto (0.00s) | |
--- PASS: TestTraceSpanIDMarshalProto/protobuf (0.00s) | |
--- PASS: TestTraceSpanIDMarshalProto/JSON (0.00s) | |
=== RUN TestKeyValueString | |
--- PASS: TestKeyValueString (0.00s) | |
=== RUN TestKeyValueBool | |
--- PASS: TestKeyValueBool (0.00s) | |
=== RUN TestKeyValueInt64 | |
--- PASS: TestKeyValueInt64 (0.00s) | |
=== RUN TestKeyValueFloat64 | |
--- PASS: TestKeyValueFloat64 (0.00s) | |
=== RUN TestKeyValueBinary | |
--- PASS: TestKeyValueBinary (0.00s) | |
=== RUN TestKeyValueIsLessAndEqual | |
=== RUN TestKeyValueIsLessAndEqual/different_keys | |
=== RUN TestKeyValueIsLessAndEqual/same_key_different_types | |
=== RUN TestKeyValueIsLessAndEqual/different_string_values | |
=== RUN TestKeyValueIsLessAndEqual/different_bool_values | |
=== RUN TestKeyValueIsLessAndEqual/different_int64_values | |
=== RUN TestKeyValueIsLessAndEqual/different_float64_values | |
=== RUN TestKeyValueIsLessAndEqual/different_blob_length | |
=== RUN TestKeyValueIsLessAndEqual/different_blob_values | |
=== RUN TestKeyValueIsLessAndEqual/empty_blob | |
=== RUN TestKeyValueIsLessAndEqual/identical_blob | |
=== RUN TestKeyValueIsLessAndEqual/invalid_type | |
--- PASS: TestKeyValueIsLessAndEqual (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_keys (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/same_key_different_types (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_string_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_bool_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_int64_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_float64_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_blob_length (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/different_blob_values (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/empty_blob (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/identical_blob (0.00s) | |
--- PASS: TestKeyValueIsLessAndEqual/invalid_type (0.00s) | |
=== RUN TestKeyValueAsStringAndValue | |
=== RUN TestKeyValueAsStringAndValue/Bender_is_great! | |
=== RUN TestKeyValueAsStringAndValue/false | |
=== RUN TestKeyValueAsStringAndValue/true | |
=== RUN TestKeyValueAsStringAndValue/3000 | |
=== RUN TestKeyValueAsStringAndValue/-1947 | |
=== RUN TestKeyValueAsStringAndValue/3.141592654 | |
=== RUN TestKeyValueAsStringAndValue/42656e646572 | |
=== RUN TestKeyValueAsStringAndValue/42656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e64... | |
=== RUN TestKeyValueAsStringAndValue/invalid_type | |
--- PASS: TestKeyValueAsStringAndValue (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/Bender_is_great! (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/false (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/true (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/3000 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/-1947 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/3.141592654 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/42656e646572 (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/42656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565732042656e6465722042656e64696e6720526f647269677565730a0942656e6465722042656e64696e6720526f647269677565732042656e64... (0.00s) | |
--- PASS: TestKeyValueAsStringAndValue/invalid_type (0.00s) | |
=== RUN TestKeyValueHash | |
=== RUN TestKeyValueHash/key:"x"_v_str:"Bender_is_great!"_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:BOOL_v_bool:true_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:INT64_v_int64:3000_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:FLOAT64_v_float64:3.14159265359_ | |
=== RUN TestKeyValueHash/key:"x"_v_type:BINARY_v_binary:"Bender"_ | |
--- PASS: TestKeyValueHash (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_str:"Bender_is_great!"_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:BOOL_v_bool:true_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:INT64_v_int64:3000_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:FLOAT64_v_float64:3.14159265359_ (0.00s) | |
--- PASS: TestKeyValueHash/key:"x"_v_type:BINARY_v_binary:"Bender"_ (0.00s) | |
=== RUN TestKeyValuesSort | |
--- PASS: TestKeyValuesSort (0.00s) | |
=== RUN TestKeyValuesFindByKey | |
=== RUN TestKeyValuesFindByKey/{key:b_found:false_kv:{Key:_VType:0_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} | |
=== RUN TestKeyValuesFindByKey/{key:a_found:true_kv:{Key:a_VType:2_VStr:_VBool:false_VInt64:2_VFloat64:0_VBinary:[]}} | |
=== RUN TestKeyValuesFindByKey/{key:x_found:true_kv:{Key:x_VType:0_VStr:z_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} | |
--- PASS: TestKeyValuesFindByKey (0.00s) | |
--- PASS: TestKeyValuesFindByKey/{key:b_found:false_kv:{Key:_VType:0_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} (0.00s) | |
--- PASS: TestKeyValuesFindByKey/{key:a_found:true_kv:{Key:a_VType:2_VStr:_VBool:false_VInt64:2_VFloat64:0_VBinary:[]}} (0.00s) | |
--- PASS: TestKeyValuesFindByKey/{key:x_found:true_kv:{Key:x_VType:0_VStr:z_VBool:false_VInt64:0_VFloat64:0_VBinary:[]}} (0.00s) | |
=== RUN TestKeyValuesEqual | |
--- PASS: TestKeyValuesEqual (0.00s) | |
=== RUN TestKeyValuesHashErrors | |
--- PASS: TestKeyValuesHashErrors (0.00s) | |
=== RUN TestProcessEqual | |
--- PASS: TestProcessEqual (0.00s) | |
=== RUN TestX | |
--- PASS: TestX (0.00s) | |
=== RUN TestProcessHash | |
--- PASS: TestProcessHash (0.00s) | |
=== RUN TestProcessHashError | |
--- PASS: TestProcessHashError (0.00s) | |
=== RUN TestTraceIDMarshalJSONPB | |
=== RUN TestTraceIDMarshalJSONPB/1 | |
=== RUN TestTraceIDMarshalJSONPB/f | |
=== RUN TestTraceIDMarshalJSONPB/1f | |
=== RUN TestTraceIDMarshalJSONPB/101 | |
=== RUN TestTraceIDMarshalJSONPB/10000000000000001 | |
=== RUN TestTraceIDMarshalJSONPB/1010000000000000001 | |
--- PASS: TestTraceIDMarshalJSONPB (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/1 (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/f (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/1f (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/101 (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/10000000000000001 (0.00s) | |
--- PASS: TestTraceIDMarshalJSONPB/1010000000000000001 (0.00s) | |
=== RUN TestTraceIDUnmarshalJSONPBErrors | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/#00 | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/x | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/x0000000000000001 | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/1x000000000000001 | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/10123456789abcdef0123456789abcdef | |
=== RUN TestTraceIDUnmarshalJSONPBErrors/AAAAAAE= | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/#00 (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/x (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/x0000000000000001 (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/1x000000000000001 (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/10123456789abcdef0123456789abcdef (0.00s) | |
--- PASS: TestTraceIDUnmarshalJSONPBErrors/AAAAAAE= (0.00s) | |
=== RUN TestSpanIDMarshalJSON | |
=== RUN TestSpanIDMarshalJSON/1 | |
=== RUN TestSpanIDMarshalJSON/f | |
=== RUN TestSpanIDMarshalJSON/1f | |
=== RUN TestSpanIDMarshalJSON/101 | |
=== RUN TestSpanIDMarshalJSON/ffffffffffffffff | |
--- PASS: TestSpanIDMarshalJSON (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/1 (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/f (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/1f (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/101 (0.00s) | |
--- PASS: TestSpanIDMarshalJSON/ffffffffffffffff (0.00s) | |
=== RUN TestSpanIDUnmarshalJSONErrors | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":""} | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x"} | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x123"} | |
=== RUN TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"10123456789abcdef"} | |
--- PASS: TestSpanIDUnmarshalJSONErrors (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":""} (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x"} (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"x123"} (0.00s) | |
--- PASS: TestSpanIDUnmarshalJSONErrors/{"traceId":"0","spanId":"10123456789abcdef"} (0.00s) | |
=== RUN TestIsRPCClientServer | |
--- PASS: TestIsRPCClientServer (0.00s) | |
=== RUN TestIsDebug | |
--- PASS: TestIsDebug (0.00s) | |
=== RUN TestIsSampled | |
--- PASS: TestIsSampled (0.00s) | |
=== RUN TestSpanHash | |
--- PASS: TestSpanHash (0.00s) | |
=== RUN TestParentSpanID | |
--- PASS: TestParentSpanID (0.00s) | |
=== RUN TestReplaceParentSpanID | |
--- PASS: TestReplaceParentSpanID (0.00s) | |
=== RUN TestSpanRefTypeToFromJSON | |
--- PASS: TestSpanRefTypeToFromJSON (0.00s) | |
=== RUN TestMaybeAddParentSpanID | |
--- PASS: TestMaybeAddParentSpanID (0.00s) | |
=== RUN TestTimeConversion | |
--- PASS: TestTimeConversion (0.00s) | |
=== RUN TestDurationConversion | |
--- PASS: TestDurationConversion (0.00s) | |
=== RUN TestTimeZoneUTC | |
--- PASS: TestTimeZoneUTC (0.00s) | |
=== RUN TestTraceFindSpanByID | |
--- PASS: TestTraceFindSpanByID (0.00s) | |
=== RUN TestTraceNormalizeTimestamps | |
--- PASS: TestTraceNormalizeTimestamps (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model 1.047s | |
=== RUN TestSpanReferencesAdjuster | |
--- PASS: TestSpanReferencesAdjuster (0.00s) | |
=== RUN TestClockSkewAdjuster | |
=== RUN TestClockSkewAdjuster/single_span_with_bad_parent | |
=== RUN TestClockSkewAdjuster/single_span_with_empty_host_key | |
=== RUN TestClockSkewAdjuster/two_spans_with_the_same_ID | |
=== RUN TestClockSkewAdjuster/parent-child_on_the_same_host | |
=== RUN TestClockSkewAdjuster/do_not_ajust_parent-child_on_the_same_host | |
=== RUN TestClockSkewAdjuster/do_not_adjust_child_that_fits_inside_parent | |
=== RUN TestClockSkewAdjuster/do_not_ajust_child_that_is_longer_than_parent | |
=== RUN TestClockSkewAdjuster/adjust_child_starting_before_parent | |
=== RUN TestClockSkewAdjuster/adjust_child_starting_before_parent_even_if_it_is_longer | |
=== RUN TestClockSkewAdjuster/adjust_child_ending_after_parent_but_being_shorter | |
--- PASS: TestClockSkewAdjuster (0.00s) | |
--- PASS: TestClockSkewAdjuster/single_span_with_bad_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/single_span_with_empty_host_key (0.00s) | |
--- PASS: TestClockSkewAdjuster/two_spans_with_the_same_ID (0.00s) | |
--- PASS: TestClockSkewAdjuster/parent-child_on_the_same_host (0.00s) | |
--- PASS: TestClockSkewAdjuster/do_not_ajust_parent-child_on_the_same_host (0.00s) | |
--- PASS: TestClockSkewAdjuster/do_not_adjust_child_that_fits_inside_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/do_not_ajust_child_that_is_longer_than_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/adjust_child_starting_before_parent (0.00s) | |
--- PASS: TestClockSkewAdjuster/adjust_child_starting_before_parent_even_if_it_is_longer (0.00s) | |
--- PASS: TestClockSkewAdjuster/adjust_child_ending_after_parent_but_being_shorter (0.00s) | |
=== RUN TestHostKey | |
=== RUN TestHostKey/{Key:ip_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} | |
=== RUN TestHostKey/{Key:ipv4_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} | |
=== RUN TestHostKey/{Key:ip_VType:INT64_VStr:_VBool:false_VInt64:16909060_VFloat64:0_VBinary:[]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_255_255_1_2_3_4]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_0_0_1_2_3_4]} | |
=== RUN TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4_5]} | |
=== RUN TestHostKey/{Key:ip_VType:FLOAT64_VStr:_VBool:false_VInt64:0_VFloat64:123.4_VBinary:[]} | |
--- PASS: TestHostKey (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} (0.00s) | |
--- PASS: TestHostKey/{Key:ipv4_VType:STRING_VStr:1.2.3.4_VBool:false_VInt64:0_VFloat64:0_VBinary:[]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:INT64_VStr:_VBool:false_VInt64:16909060_VFloat64:0_VBinary:[]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_255_255_1_2_3_4]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[0_0_0_0_0_0_0_0_0_0_0_0_1_2_3_4]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:BINARY_VStr:_VBool:false_VInt64:0_VFloat64:0_VBinary:[1_2_3_4_5]} (0.00s) | |
--- PASS: TestHostKey/{Key:ip_VType:FLOAT64_VStr:_VBool:false_VInt64:0_VFloat64:123.4_VBinary:[]} (0.00s) | |
=== RUN TestIPTagAdjuster | |
--- PASS: TestIPTagAdjuster (0.00s) | |
=== RUN TestSortLogFields | |
--- PASS: TestSortLogFields (0.00s) | |
=== RUN TestSpanIDDeduperTriggered | |
--- PASS: TestSpanIDDeduperTriggered (0.00s) | |
=== RUN TestSpanIDDeduperNotTriggered | |
--- PASS: TestSpanIDDeduperNotTriggered (0.00s) | |
=== RUN TestSpanIDDeduperError | |
--- PASS: TestSpanIDDeduperError (0.00s) | |
=== RUN TestSequences | |
--- PASS: TestSequences (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/adjuster 1.037s | |
? github.com/jaegertracing/jaeger/model/converter [no test files] | |
=== RUN TestMarshalJSON | |
--- PASS: TestMarshalJSON (0.00s) | |
=== RUN TestFromDomain | |
--- PASS: TestFromDomain (0.01s) | |
=== RUN TestFromDomainEmbedProcess | |
--- PASS: TestFromDomainEmbedProcess (0.00s) | |
=== RUN TestDependenciesFromDomain | |
--- PASS: TestDependenciesFromDomain (0.00s) | |
=== RUN TestProcessHashtable | |
--- PASS: TestProcessHashtable (0.00s) | |
=== RUN TestProcessHashtableCollision | |
--- PASS: TestProcessHashtableCollision (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/converter/json 1.036s | |
? github.com/jaegertracing/jaeger/model/converter/thrift [no test files] | |
=== RUN TestFromDomainOneSpan | |
--- PASS: TestFromDomainOneSpan (0.01s) | |
=== RUN TestFromDomain | |
--- PASS: TestFromDomain (0.01s) | |
=== RUN TestKeyValueToTag | |
--- PASS: TestKeyValueToTag (0.00s) | |
=== RUN TestToDomain | |
=== RUN TestToDomain/fixtures/thrift_batch_01.json_->_fixtures/domain_01.json_:_api | |
=== RUN TestToDomain/ToDomainSpan | |
=== RUN TestToDomain/fixtures/thrift_batch_02.json_->_fixtures/domain_02.json_:_api | |
--- PASS: TestToDomain (0.01s) | |
--- PASS: TestToDomain/fixtures/thrift_batch_01.json_->_fixtures/domain_01.json_:_api (0.00s) | |
--- PASS: TestToDomain/ToDomainSpan (0.00s) | |
--- PASS: TestToDomain/fixtures/thrift_batch_02.json_->_fixtures/domain_02.json_:_api (0.00s) | |
=== RUN TestUnknownJaegerType | |
--- PASS: TestUnknownJaegerType (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/converter/thrift/jaeger 1.065s | |
=== RUN TestProcessHashtable | |
--- PASS: TestProcessHashtable (0.00s) | |
=== RUN TestProcessHashtableCollision | |
--- PASS: TestProcessHashtableCollision (0.00s) | |
=== RUN TestToDomain | |
=== RUN TestToDomain/fixtures/zipkin_01.json_->_fixtures/domain_01.json_:_test-general-conversion | |
=== RUN TestToDomain/ToDomainSpans | |
=== RUN TestToDomain/fixtures/zipkin_02.json_->_fixtures/domain_02.json_:_test-process-tags | |
=== RUN TestToDomain/fixtures/zipkin_03.json_->_fixtures/domain_03.json_:_test-custom-tags | |
--- PASS: TestToDomain (0.01s) | |
--- PASS: TestToDomain/fixtures/zipkin_01.json_->_fixtures/domain_01.json_:_test-general-conversion (0.00s) | |
--- PASS: TestToDomain/ToDomainSpans (0.00s) | |
--- PASS: TestToDomain/fixtures/zipkin_02.json_->_fixtures/domain_02.json_:_test-process-tags (0.00s) | |
--- PASS: TestToDomain/fixtures/zipkin_03.json_->_fixtures/domain_03.json_:_test-custom-tags (0.00s) | |
=== RUN TestToDomainNoServiceNameError | |
--- PASS: TestToDomainNoServiceNameError (0.00s) | |
=== RUN TestToDomainServiceNameInBinAnnotation | |
--- PASS: TestToDomainServiceNameInBinAnnotation (0.00s) | |
=== RUN TestToDomainMultipleSpanKinds | |
--- PASS: TestToDomainMultipleSpanKinds (0.00s) | |
=== RUN TestInvalidAnnotationTypeError | |
--- PASS: TestInvalidAnnotationTypeError (0.00s) | |
=== RUN TestValidateBase64Values | |
--- PASS: TestValidateBase64Values (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/model/converter/thrift/zipkin 1.049s | |
? github.com/jaegertracing/jaeger/model/json [no test files] | |
? github.com/jaegertracing/jaeger/model/prototest [no test files] | |
? github.com/jaegertracing/jaeger/pkg [no test files] | |
=== RUN TestLRU | |
--- PASS: TestLRU (0.00s) | |
=== RUN TestCompareAndSwap | |
--- PASS: TestCompareAndSwap (0.00s) | |
=== RUN TestLRUWithTTL | |
--- PASS: TestLRUWithTTL (0.00s) | |
=== RUN TestDefaultClock | |
--- PASS: TestDefaultClock (0.00s) | |
=== RUN TestLRUCacheConcurrentAccess | |
--- PASS: TestLRUCacheConcurrentAccess (0.03s) | |
=== RUN TestRemoveFunc | |
--- PASS: TestRemoveFunc (0.00s) | |
=== RUN TestRemovedFuncWithTTL | |
--- PASS: TestRemovedFuncWithTTL (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/cache 1.075s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/cassandra 1.012s [no tests to run] | |
? github.com/jaegertracing/jaeger/pkg/cassandra/config [no test files] | |
? github.com/jaegertracing/jaeger/pkg/cassandra/gocql [no test files] | |
? github.com/jaegertracing/jaeger/pkg/cassandra/gocql/testutils [no test files] | |
=== RUN TestTableEmit | |
--- PASS: TestTableEmit (0.00s) | |
=== RUN TestTableExec | |
--- PASS: TestTableExec (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/cassandra/metrics 1.038s | |
? github.com/jaegertracing/jaeger/pkg/cassandra/mocks [no test files] | |
=== RUN TestViperize | |
--- PASS: TestViperize (0.00s) | |
=== RUN TestEnv | |
--- PASS: TestEnv (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/config 1.030s | |
=== RUN TestFixedDiscoverer | |
--- PASS: TestFixedDiscoverer (0.00s) | |
=== RUN TestDispatcher | |
--- PASS: TestDispatcher (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/discovery 1.032s | |
=== RUN TestOptions | |
--- PASS: TestOptions (0.00s) | |
=== RUN TestOptionsDefaults | |
--- PASS: TestOptionsDefaults (0.00s) | |
=== RUN TestPeerListManager_NoInstances | |
--- PASS: TestPeerListManager_NoInstances (0.00s) | |
=== RUN TestPeerListManager_updatePeers | |
=== RUN TestPeerListManager_updatePeers/initial | |
=== RUN TestPeerListManager_updatePeers/add_one | |
=== RUN TestPeerListManager_updatePeers/remove_one | |
=== RUN TestPeerListManager_updatePeers/replace_all | |
--- PASS: TestPeerListManager_updatePeers (0.01s) | |
--- PASS: TestPeerListManager_updatePeers/initial (0.00s) | |
--- PASS: TestPeerListManager_updatePeers/add_one (0.00s) | |
--- PASS: TestPeerListManager_updatePeers/remove_one (0.00s) | |
--- PASS: TestPeerListManager_updatePeers/replace_all (0.00s) | |
=== RUN TestPeerListManager_getMinPeers | |
--- PASS: TestPeerListManager_getMinPeers (0.00s) | |
=== RUN TestPeerListManager_ensureConnection | |
=== RUN TestPeerListManager_ensureConnection/{numServers:3_numSeeds:1_minPeers:2_numConnected1:1} | |
=== RUN TestPeerListManager_ensureConnection/{numServers:3_numSeeds:2_minPeers:2_numConnected1:2} | |
=== RUN TestPeerListManager_ensureConnection/{numServers:3_numSeeds:3_minPeers:2_numConnected1:2} | |
--- PASS: TestPeerListManager_ensureConnection (0.04s) | |
--- PASS: TestPeerListManager_ensureConnection/{numServers:3_numSeeds:1_minPeers:2_numConnected1:1} (0.01s) | |
--- PASS: TestPeerListManager_ensureConnection/{numServers:3_numSeeds:2_minPeers:2_numConnected1:2} (0.02s) | |
--- PASS: TestPeerListManager_ensureConnection/{numServers:3_numSeeds:3_minPeers:2_numConnected1:2} (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/discovery/peerlistmgr 1.081s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/distributedlock 1.010s [no tests to run] | |
? github.com/jaegertracing/jaeger/pkg/distributedlock/mocks [no test files] | |
? github.com/jaegertracing/jaeger/pkg/es [no test files] | |
? github.com/jaegertracing/jaeger/pkg/es/config [no test files] | |
? github.com/jaegertracing/jaeger/pkg/es/mocks [no test files] | |
=== RUN TestHttpCall | |
--- PASS: TestHttpCall (0.00s) | |
=== RUN TestListenerClose | |
--- PASS: TestListenerClose (0.00s) | |
=== RUN TestStatusString | |
--- PASS: TestStatusString (0.00s) | |
=== RUN TestStatusSetGet | |
--- PASS: TestStatusSetGet (0.00s) | |
=== RUN TestPortBusy | |
--- PASS: TestPortBusy (0.00s) | |
=== RUN TestServeHandler | |
--- PASS: TestServeHandler (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/healthcheck 1.034s | |
? github.com/jaegertracing/jaeger/pkg/kafka/consumer [no test files] | |
? github.com/jaegertracing/jaeger/pkg/kafka/mocks [no test files] | |
? github.com/jaegertracing/jaeger/pkg/kafka/producer [no test files] | |
? github.com/jaegertracing/jaeger/pkg/memory/config [no test files] | |
=== RUN TestAddFlags | |
--- PASS: TestAddFlags (0.00s) | |
=== RUN TestBuilder | |
--- PASS: TestBuilder (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/metrics 1.039s | |
=== RUN TestWrapEmptySlice | |
--- PASS: TestWrapEmptySlice (0.00s) | |
=== RUN TestWrapSingleError | |
--- PASS: TestWrapSingleError (0.00s) | |
=== RUN TestWrapManyErrors | |
--- PASS: TestWrapManyErrors (0.00s) | |
=== RUN ExampleWrap | |
--- PASS: ExampleWrap (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/multierror 1.028s | |
=== RUN TestBoundedQueue | |
--- PASS: TestBoundedQueue (0.05s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/queue 1.079s | |
=== RUN TestNewRecoveryHandler | |
--- PASS: TestNewRecoveryHandler (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/recoveryhandler 1.024s | |
=== RUN TestNewLogger | |
--- PASS: TestNewLogger (0.00s) | |
=== RUN TestJSONLineError | |
--- PASS: TestJSONLineError (0.00s) | |
=== RUN TestRaceCondition | |
--- PASS: TestRaceCondition (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/pkg/testutils 1.022s | |
? github.com/jaegertracing/jaeger/pkg/version [no test files] | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin 1.021s [no tests to run] | |
=== RUN TestExtendLease | |
=== RUN TestExtendLease/cassandra_error | |
=== RUN TestExtendLease/successfully_extended_lease | |
=== RUN TestExtendLease/failed_to_extend_lease | |
--- PASS: TestExtendLease (0.00s) | |
--- PASS: TestExtendLease/cassandra_error (0.00s) | |
--- PASS: TestExtendLease/successfully_extended_lease (0.00s) | |
--- PASS: TestExtendLease/failed_to_extend_lease (0.00s) | |
=== RUN TestAcquire | |
=== RUN TestAcquire/cassandra_error | |
=== RUN TestAcquire/successfully_created_lock | |
=== RUN TestAcquire/lock_already_exists_and_belongs_to_localhost | |
=== RUN TestAcquire/lock_already_exists_and_belongs_to_localhost_but_is_lost | |
=== RUN TestAcquire/failed_to_acquire_lock | |
--- PASS: TestAcquire (0.01s) | |
--- PASS: TestAcquire/cassandra_error (0.00s) | |
--- PASS: TestAcquire/successfully_created_lock (0.00s) | |
--- PASS: TestAcquire/lock_already_exists_and_belongs_to_localhost (0.00s) | |
--- PASS: TestAcquire/lock_already_exists_and_belongs_to_localhost_but_is_lost (0.00s) | |
--- PASS: TestAcquire/failed_to_acquire_lock (0.00s) | |
=== RUN TestForfeit | |
=== RUN TestForfeit/cassandra_error | |
=== RUN TestForfeit/successfully_forfeited_lock | |
=== RUN TestForfeit/failed_to_delete_lock | |
--- PASS: TestForfeit (0.00s) | |
--- PASS: TestForfeit/cassandra_error (0.00s) | |
--- PASS: TestForfeit/successfully_forfeited_lock (0.00s) | |
--- PASS: TestForfeit/failed_to_delete_lock (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/pkg/distributedlock/cassandra 1.035s | |
=== RUN TestFactoryConfigFromEnv | |
--- PASS: TestFactoryConfigFromEnv (0.00s) | |
=== RUN TestNewFactory | |
--- PASS: TestNewFactory (0.00s) | |
=== RUN TestConfigurable | |
--- PASS: TestConfigurable (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/sampling/strategystore 1.033s | |
=== RUN TestFactory | |
--- PASS: TestFactory (0.00s) | |
=== RUN TestStrategyStore | |
--- PASS: TestStrategyStore (0.00s) | |
=== RUN TestPerOperationSamplingStrategies | |
--- PASS: TestPerOperationSamplingStrategies (0.00s) | |
=== RUN TestParseStrategy | |
=== RUN TestParseStrategy/#00 | |
=== RUN TestParseStrategy/#01 | |
--- PASS: TestParseStrategy (0.00s) | |
--- PASS: TestParseStrategy/#00 (0.00s) | |
--- PASS: TestParseStrategy/#01 (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/sampling/strategystore/static 1.041s | |
=== RUN TestFactoryConfigFromEnv | |
--- PASS: TestFactoryConfigFromEnv (0.00s) | |
=== RUN TestFactoryConfigFromEnvDeprecated | |
--- PASS: TestFactoryConfigFromEnvDeprecated (0.00s) | |
=== RUN TestNewFactory | |
--- PASS: TestNewFactory (0.00s) | |
=== RUN TestInitialize | |
--- PASS: TestInitialize (0.00s) | |
=== RUN TestCreate | |
--- PASS: TestCreate (0.00s) | |
=== RUN TestCreateMulti | |
--- PASS: TestCreateMulti (0.00s) | |
=== RUN TestCreateArchive | |
--- PASS: TestCreateArchive (0.00s) | |
=== RUN TestCreateError | |
--- PASS: TestCreateError (0.00s) | |
=== RUN TestConfigurable | |
--- PASS: TestConfigurable (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage 1.054s | |
=== RUN TestCassandraFactory | |
--- PASS: TestCassandraFactory (0.04s) | |
=== RUN TestOptions | |
--- PASS: TestOptions (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.02s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra 1.110s | |
=== RUN TestDependencyUDT | |
=== RUN TestDependencyUDT/Dependency-parent | |
=== RUN TestDependencyUDT/Dependency-child | |
=== RUN TestDependencyUDT/Dependency-call_count | |
=== RUN TestDependencyUDT/Dependency-wrong-field | |
--- PASS: TestDependencyUDT (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-parent (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-child (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-call_count (0.00s) | |
--- PASS: TestDependencyUDT/Dependency-wrong-field (0.00s) | |
=== RUN TestDependencyStoreWrite | |
--- PASS: TestDependencyStoreWrite (0.00s) | |
=== RUN TestDependencyStoreGetDependencies | |
=== RUN TestDependencyStoreGetDependencies/success | |
=== RUN TestDependencyStoreGetDependencies/failure | |
--- PASS: TestDependencyStoreGetDependencies (0.01s) | |
--- PASS: TestDependencyStoreGetDependencies/success (0.00s) | |
--- PASS: TestDependencyStoreGetDependencies/failure (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/dependencystore 1.052s | |
=== RUN TestInsertThroughput | |
--- PASS: TestInsertThroughput (0.00s) | |
=== RUN TestInsertProbabilitiesAndQPS | |
--- PASS: TestInsertProbabilitiesAndQPS (0.00s) | |
=== RUN TestGetThroughput | |
=== RUN TestGetThroughput/success | |
=== RUN TestGetThroughput/failure | |
--- PASS: TestGetThroughput (0.01s) | |
--- PASS: TestGetThroughput/success (0.00s) | |
--- PASS: TestGetThroughput/failure (0.00s) | |
=== RUN TestGetProbabilitiesAndQPS | |
=== RUN TestGetProbabilitiesAndQPS/success | |
=== RUN TestGetProbabilitiesAndQPS/failure | |
--- PASS: TestGetProbabilitiesAndQPS (0.00s) | |
--- PASS: TestGetProbabilitiesAndQPS/success (0.00s) | |
--- PASS: TestGetProbabilitiesAndQPS/failure (0.00s) | |
=== RUN TestGetLatestProbabilities | |
=== RUN TestGetLatestProbabilities/success | |
=== RUN TestGetLatestProbabilities/failure | |
--- PASS: TestGetLatestProbabilities (0.00s) | |
--- PASS: TestGetLatestProbabilities/success (0.00s) | |
--- PASS: TestGetLatestProbabilities/failure (0.00s) | |
=== RUN TestGenerateRandomBucket | |
--- PASS: TestGenerateRandomBucket (0.00s) | |
=== RUN TestThroughputToString | |
--- PASS: TestThroughputToString (0.00s) | |
=== RUN TestStringToThroughput | |
--- PASS: TestStringToThroughput (0.00s) | |
=== RUN TestProbabilitiesAndQPSToString | |
--- PASS: TestProbabilitiesAndQPSToString (0.00s) | |
=== RUN TestStringToProbabilitiesAndQPS | |
--- PASS: TestStringToProbabilitiesAndQPS (0.00s) | |
=== RUN TestStringToProbabilities | |
--- PASS: TestStringToProbabilities (0.00s) | |
=== RUN TestProbabilitiesSetToString | |
--- PASS: TestProbabilitiesSetToString (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/samplingstore 1.063s | |
? github.com/jaegertracing/jaeger/plugin/storage/cassandra/savetracetest [no test files] | |
=== RUN TestOperationNamesStorageWrite | |
=== RUN TestOperationNamesStorageWrite/writeCacheTTL=0s | |
=== RUN TestOperationNamesStorageWrite/writeCacheTTL=1m0s | |
--- PASS: TestOperationNamesStorageWrite (0.01s) | |
--- PASS: TestOperationNamesStorageWrite/writeCacheTTL=0s (0.01s) | |
--- PASS: TestOperationNamesStorageWrite/writeCacheTTL=1m0s (0.00s) | |
=== RUN TestOperationNamesStorageGetServices | |
--- PASS: TestOperationNamesStorageGetServices (0.01s) | |
=== RUN TestSpanReaderGetServices | |
--- PASS: TestSpanReaderGetServices (0.00s) | |
=== RUN TestSpanReaderGetOperations | |
--- PASS: TestSpanReaderGetOperations (0.00s) | |
=== RUN TestSpanReaderGetTrace | |
=== RUN TestSpanReaderGetTrace/expected_err= | |
=== RUN TestSpanReaderGetTrace/expected_err=invalid_ValueType_in | |
=== RUN TestSpanReaderGetTrace/expected_err=Error_reading_traces_from_storage:_error_on_close() | |
--- PASS: TestSpanReaderGetTrace (0.01s) | |
--- PASS: TestSpanReaderGetTrace/expected_err= (0.00s) | |
--- PASS: TestSpanReaderGetTrace/expected_err=invalid_ValueType_in (0.00s) | |
--- PASS: TestSpanReaderGetTrace/expected_err=Error_reading_traces_from_storage:_error_on_close() (0.00s) | |
=== RUN TestSpanReaderGetTrace_TraceNotFound | |
--- PASS: TestSpanReaderGetTrace_TraceNotFound (0.00s) | |
=== RUN TestSpanReaderFindTracesBadRequest | |
--- PASS: TestSpanReaderFindTracesBadRequest (0.00s) | |
=== RUN TestSpanReaderFindTraces | |
=== RUN TestSpanReaderFindTraces/main_query | |
=== RUN TestSpanReaderFindTraces/tag_query | |
=== RUN TestSpanReaderFindTraces/with_limit | |
=== RUN TestSpanReaderFindTraces/main_query_error | |
=== RUN TestSpanReaderFindTraces/tags_query_error | |
=== RUN TestSpanReaderFindTraces/operation_name_query | |
=== RUN TestSpanReaderFindTraces/operation_name_and_tag_query | |
=== RUN TestSpanReaderFindTraces/operation_name_and_tag_error_on_operation_query | |
=== RUN TestSpanReaderFindTraces/operation_name_and_tag_error_on_tag_query | |
=== RUN TestSpanReaderFindTraces/duration_query | |
=== RUN TestSpanReaderFindTraces/duration_query_error | |
=== RUN TestSpanReaderFindTraces/load_trace_error | |
--- PASS: TestSpanReaderFindTraces (0.07s) | |
--- PASS: TestSpanReaderFindTraces/main_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/tag_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/with_limit (0.01s) | |
--- PASS: TestSpanReaderFindTraces/main_query_error (0.00s) | |
--- PASS: TestSpanReaderFindTraces/tags_query_error (0.00s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_and_tag_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_and_tag_error_on_operation_query (0.00s) | |
--- PASS: TestSpanReaderFindTraces/operation_name_and_tag_error_on_tag_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/duration_query (0.01s) | |
--- PASS: TestSpanReaderFindTraces/duration_query_error (0.00s) | |
--- PASS: TestSpanReaderFindTraces/load_trace_error (0.01s) | |
=== RUN TestTraceQueryParameterValidation | |
--- PASS: TestTraceQueryParameterValidation (0.00s) | |
=== RUN TestServiceNamesStorageWrite | |
=== RUN TestServiceNamesStorageWrite/writeCacheTTL=0s | |
=== RUN TestServiceNamesStorageWrite/writeCacheTTL=1m0s | |
--- PASS: TestServiceNamesStorageWrite (0.00s) | |
--- PASS: TestServiceNamesStorageWrite/writeCacheTTL=0s (0.00s) | |
--- PASS: TestServiceNamesStorageWrite/writeCacheTTL=1m0s (0.00s) | |
=== RUN TestServiceNamesStorageGetServices | |
--- PASS: TestServiceNamesStorageGetServices (0.00s) | |
=== RUN TestWriterOptions | |
--- PASS: TestWriterOptions (0.00s) | |
=== RUN TestWriterOptions_StorageMode | |
=== RUN TestWriterOptions_StorageMode/Default | |
=== RUN TestWriterOptions_StorageMode/Index_Only | |
=== RUN TestWriterOptions_StorageMode/Store_Only | |
--- PASS: TestWriterOptions_StorageMode (0.00s) | |
--- PASS: TestWriterOptions_StorageMode/Default (0.00s) | |
--- PASS: TestWriterOptions_StorageMode/Index_Only (0.00s) | |
--- PASS: TestWriterOptions_StorageMode/Store_Only (0.00s) | |
=== RUN TestClientClose | |
--- PASS: TestClientClose (0.00s) | |
=== RUN TestSpanWriter | |
=== RUN TestSpanWriter/main_query | |
=== RUN TestSpanWriter/main_query_error | |
=== RUN TestSpanWriter/tags_query_error | |
=== RUN TestSpanWriter/save_service_name_query_error | |
=== RUN TestSpanWriter/add_span_to_service_name_index | |
=== RUN TestSpanWriter/add_span_to_operation_name_index | |
=== RUN TestSpanWriter/add_duration_with_no_operation_name | |
--- PASS: TestSpanWriter (0.03s) | |
--- PASS: TestSpanWriter/main_query (0.01s) | |
--- PASS: TestSpanWriter/main_query_error (0.00s) | |
--- PASS: TestSpanWriter/tags_query_error (0.00s) | |
--- PASS: TestSpanWriter/save_service_name_query_error (0.00s) | |
--- PASS: TestSpanWriter/add_span_to_service_name_index (0.00s) | |
--- PASS: TestSpanWriter/add_span_to_operation_name_index (0.00s) | |
--- PASS: TestSpanWriter/add_duration_with_no_operation_name (0.01s) | |
=== RUN TestSpanWriterSaveServiceNameAndOperationName | |
--- PASS: TestSpanWriterSaveServiceNameAndOperationName (0.00s) | |
=== RUN TestSpanWriterSkippingTags | |
--- PASS: TestSpanWriterSkippingTags (0.00s) | |
=== RUN TestStorageMode_IndexOnly | |
--- PASS: TestStorageMode_IndexOnly (0.01s) | |
<autogenerated>:1: PASS: Bind(mock.argumentMatcher) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Bind(mock.argumentMatcher) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Bind(mock.argumentMatcher) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
=== RUN TestStorageMode_IndexOnly_WithFilter | |
--- PASS: TestStorageMode_IndexOnly_WithFilter (0.00s) | |
=== RUN TestStorageMode_StoreWithoutIndexing | |
--- PASS: TestStorageMode_StoreWithoutIndexing (0.00s) | |
<autogenerated>:1: PASS: Exec() | |
<autogenerated>:1: PASS: Query(mock.argumentMatcher,mock.argumentMatcher) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore 1.188s | |
=== RUN TestToSpan | |
--- PASS: TestToSpan (0.00s) | |
=== RUN TestFromSpan | |
--- PASS: TestFromSpan (0.00s) | |
=== RUN TestFailingFromDBSpanBadTags | |
--- PASS: TestFailingFromDBSpanBadTags (0.00s) | |
=== RUN TestFailingFromDBSpanBadLogs | |
--- PASS: TestFailingFromDBSpanBadLogs (0.00s) | |
=== RUN TestFailingFromDBSpanBadProcess | |
--- PASS: TestFailingFromDBSpanBadProcess (0.00s) | |
=== RUN TestFailingFromDBSpanBadRefs | |
--- PASS: TestFailingFromDBSpanBadRefs (0.00s) | |
=== RUN TestFailingFromDBLogs | |
--- PASS: TestFailingFromDBLogs (0.00s) | |
=== RUN TestDBTagTypeError | |
--- PASS: TestDBTagTypeError (0.00s) | |
=== RUN TestGenerateHashCode | |
--- PASS: TestGenerateHashCode (0.00s) | |
=== RUN TestDBModelUDTMarshall | |
=== RUN TestDBModelUDTMarshall/KeyValue-key | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_type | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_string | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_bool | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_long | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_double | |
=== RUN TestDBModelUDTMarshall/KeyValue-value_binary | |
=== RUN TestDBModelUDTMarshall/KeyValue-wrong-field | |
=== RUN TestDBModelUDTMarshall/Log-ts | |
=== RUN TestDBModelUDTMarshall/Log-fields | |
=== RUN TestDBModelUDTMarshall/Log-wrong-field | |
=== RUN TestDBModelUDTMarshall/SpanRef-ref_type | |
=== RUN TestDBModelUDTMarshall/SpanRef-trace_id | |
=== RUN TestDBModelUDTMarshall/SpanRef-span_id | |
=== RUN TestDBModelUDTMarshall/SpanRef-wrong-field | |
=== RUN TestDBModelUDTMarshall/Process-service_name | |
=== RUN TestDBModelUDTMarshall/Process-tags | |
=== RUN TestDBModelUDTMarshall/Process-wrong-field | |
--- PASS: TestDBModelUDTMarshall (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-key (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_type (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_string (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_bool (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_long (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_double (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-value_binary (0.00s) | |
--- PASS: TestDBModelUDTMarshall/KeyValue-wrong-field (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Log-ts (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Log-fields (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Log-wrong-field (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-ref_type (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-trace_id (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-span_id (0.00s) | |
--- PASS: TestDBModelUDTMarshall/SpanRef-wrong-field (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Process-service_name (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Process-tags (0.00s) | |
--- PASS: TestDBModelUDTMarshall/Process-wrong-field (0.00s) | |
=== RUN TestDefaultIndexFilter | |
--- PASS: TestDefaultIndexFilter (0.00s) | |
=== RUN TestFilterLogTags | |
--- PASS: TestFilterLogTags (0.00s) | |
=== RUN TestTagInsertionString | |
--- PASS: TestTagInsertionString (0.00s) | |
=== RUN TestTraceIDString | |
--- PASS: TestTraceIDString (0.00s) | |
=== RUN TestDefaultTagFilter | |
--- PASS: TestDefaultTagFilter (0.00s) | |
=== RUN TestChainedTagFilter | |
--- PASS: TestChainedTagFilter (0.00s) | |
=== RUN TestGetIntersectedTraceIDs | |
--- PASS: TestGetIntersectedTraceIDs (0.00s) | |
=== RUN TestAdd | |
--- PASS: TestAdd (0.00s) | |
=== RUN TestFromList | |
--- PASS: TestFromList (0.00s) | |
=== RUN TestGetUniqueTags | |
--- PASS: TestGetUniqueTags (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/cassandra/spanstore/dbmodel 1.048s | |
=== RUN TestElasticsearchFactory | |
--- PASS: TestElasticsearchFactory (0.00s) | |
=== RUN TestElasticsearchTagsFileDoNotExist | |
--- PASS: TestElasticsearchTagsFileDoNotExist (0.00s) | |
=== RUN TestLoadTagsFromFile | |
--- PASS: TestLoadTagsFromFile (0.00s) | |
=== RUN TestOptions | |
--- PASS: TestOptions (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.01s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es 1.088s | |
=== RUN TestNewSpanReaderIndexPrefix | |
--- PASS: TestNewSpanReaderIndexPrefix (0.00s) | |
=== RUN TestWriteDependencies | |
--- PASS: TestWriteDependencies (0.00s) | |
=== RUN TestGetDependencies | |
--- PASS: TestGetDependencies (0.01s) | |
=== RUN TestGetIndices | |
--- PASS: TestGetIndices (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore 1.047s | |
=== RUN TestConvertDependencies | |
=== RUN TestConvertDependencies/0 | |
=== RUN TestConvertDependencies/1 | |
=== RUN TestConvertDependencies/2 | |
=== RUN TestConvertDependencies/3 | |
--- PASS: TestConvertDependencies (0.00s) | |
--- PASS: TestConvertDependencies/0 (0.00s) | |
--- PASS: TestConvertDependencies/1 (0.00s) | |
--- PASS: TestConvertDependencies/2 (0.00s) | |
--- PASS: TestConvertDependencies/3 (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/dependencystore/dbmodel 1.038s | |
=== RUN TestNewSpanReader | |
--- PASS: TestNewSpanReader (0.00s) | |
=== RUN TestNewSpanReaderIndexPrefix | |
--- PASS: TestNewSpanReaderIndexPrefix (0.00s) | |
=== RUN TestSpanReader_GetTrace | |
--- PASS: TestSpanReader_GetTrace (0.01s) | |
=== RUN TestSpanReader_SearchAfter | |
--- PASS: TestSpanReader_SearchAfter (5.35s) | |
=== RUN TestSpanReader_GetTraceQueryError | |
--- PASS: TestSpanReader_GetTraceQueryError (0.00s) | |
=== RUN TestSpanReader_GetTraceNilHits | |
--- PASS: TestSpanReader_GetTraceNilHits (0.00s) | |
=== RUN TestSpanReader_GetTraceInvalidSpanError | |
--- PASS: TestSpanReader_GetTraceInvalidSpanError (0.00s) | |
=== RUN TestSpanReader_GetTraceSpanConversionError | |
--- PASS: TestSpanReader_GetTraceSpanConversionError (0.00s) | |
=== RUN TestSpanReader_esJSONtoJSONSpanModel | |
--- PASS: TestSpanReader_esJSONtoJSONSpanModel (0.00s) | |
=== RUN TestSpanReader_esJSONtoJSONSpanModelError | |
--- PASS: TestSpanReader_esJSONtoJSONSpanModelError (0.00s) | |
=== RUN TestSpanReaderFindIndices | |
--- PASS: TestSpanReaderFindIndices (0.00s) | |
=== RUN TestSpanReader_indexWithDate | |
--- PASS: TestSpanReader_indexWithDate (0.00s) | |
=== RUN TestSpanReader_bucketToStringArray | |
--- PASS: TestSpanReader_bucketToStringArray (0.00s) | |
=== RUN TestSpanReader_bucketToStringArrayError | |
--- PASS: TestSpanReader_bucketToStringArrayError (0.00s) | |
=== RUN TestSpanReader_FindTraces | |
--- PASS: TestSpanReader_FindTraces (0.00s) | |
=== RUN TestSpanReader_FindTracesInvalidQuery | |
--- PASS: TestSpanReader_FindTracesInvalidQuery (0.00s) | |
=== RUN TestSpanReader_FindTracesAggregationFailure | |
--- PASS: TestSpanReader_FindTracesAggregationFailure (0.00s) | |
=== RUN TestSpanReader_FindTracesNoTraceIDs | |
--- PASS: TestSpanReader_FindTracesNoTraceIDs (0.00s) | |
=== RUN TestSpanReader_FindTracesReadTraceFailure | |
--- PASS: TestSpanReader_FindTracesReadTraceFailure (0.00s) | |
=== RUN TestSpanReader_FindTracesSpanCollectionFailure | |
--- PASS: TestSpanReader_FindTracesSpanCollectionFailure (0.00s) | |
=== RUN TestFindTraceIDs | |
=== RUN TestFindTraceIDs/traceIDs_full_behavior | |
=== RUN TestFindTraceIDs/traceIDs_search_error | |
=== RUN TestFindTraceIDs/traceIDs_search_error#01 | |
--- PASS: TestFindTraceIDs (0.01s) | |
--- PASS: TestFindTraceIDs/traceIDs_full_behavior (0.00s) | |
--- PASS: TestFindTraceIDs/traceIDs_search_error (0.00s) | |
--- PASS: TestFindTraceIDs/traceIDs_search_error#01 (0.00s) | |
=== RUN TestTraceQueryParameterValidation | |
--- PASS: TestTraceQueryParameterValidation (0.00s) | |
=== RUN TestSpanReader_buildTraceIDAggregation | |
--- PASS: TestSpanReader_buildTraceIDAggregation (0.00s) | |
=== RUN TestSpanReader_buildFindTraceIDsQuery | |
--- PASS: TestSpanReader_buildFindTraceIDsQuery (0.00s) | |
=== RUN TestSpanReader_buildDurationQuery | |
--- PASS: TestSpanReader_buildDurationQuery (0.00s) | |
=== RUN TestSpanReader_buildStartTimeQuery | |
--- PASS: TestSpanReader_buildStartTimeQuery (0.00s) | |
=== RUN TestSpanReader_buildServiceNameQuery | |
--- PASS: TestSpanReader_buildServiceNameQuery (0.00s) | |
=== RUN TestSpanReader_buildOperationNameQuery | |
--- PASS: TestSpanReader_buildOperationNameQuery (0.00s) | |
=== RUN TestSpanReader_buildTagQuery | |
--- PASS: TestSpanReader_buildTagQuery (0.00s) | |
=== RUN TestSpanReader_GetEmptyIndex | |
--- PASS: TestSpanReader_GetEmptyIndex (0.00s) | |
=== RUN TestWriteService | |
--- PASS: TestWriteService (0.00s) | |
=== RUN TestWriteServiceError | |
--- PASS: TestWriteServiceError (0.00s) | |
=== RUN TestSpanReader_GetServices | |
=== RUN TestSpanReader_GetServices/distinct_services_full_behavior | |
=== RUN TestSpanReader_GetServices/distinct_services_search_error | |
=== RUN TestSpanReader_GetServices/distinct_services_search_error#01 | |
--- PASS: TestSpanReader_GetServices (0.01s) | |
--- PASS: TestSpanReader_GetServices/distinct_services_full_behavior (0.00s) | |
--- PASS: TestSpanReader_GetServices/distinct_services_search_error (0.00s) | |
--- PASS: TestSpanReader_GetServices/distinct_services_search_error#01 (0.00s) | |
=== RUN TestSpanReader_GetOperations | |
=== RUN TestSpanReader_GetOperations/distinct_operations_full_behavior | |
=== RUN TestSpanReader_GetOperations/distinct_operations_search_error | |
=== RUN TestSpanReader_GetOperations/distinct_operations_search_error#01 | |
--- PASS: TestSpanReader_GetOperations (0.01s) | |
--- PASS: TestSpanReader_GetOperations/distinct_operations_full_behavior (0.00s) | |
--- PASS: TestSpanReader_GetOperations/distinct_operations_search_error (0.00s) | |
--- PASS: TestSpanReader_GetOperations/distinct_operations_search_error#01 (0.00s) | |
=== RUN TestSpanReader_GetServicesEmptyIndex | |
--- PASS: TestSpanReader_GetServicesEmptyIndex (0.00s) | |
=== RUN TestSpanReader_GetOperationsEmptyIndex | |
--- PASS: TestSpanReader_GetOperationsEmptyIndex (0.00s) | |
=== RUN TestNewSpanWriterIndexPrefix | |
--- PASS: TestNewSpanWriterIndexPrefix (0.00s) | |
=== RUN TestClientClose | |
--- PASS: TestClientClose (0.00s) | |
=== RUN TestSpanWriter_WriteSpan | |
=== RUN TestSpanWriter_WriteSpan/index_creation_error | |
=== RUN TestSpanWriter_WriteSpan/span_insertion_error | |
=== RUN TestSpanWriter_WriteSpan/span_index_dne_error | |
--- PASS: TestSpanWriter_WriteSpan (0.01s) | |
--- PASS: TestSpanWriter_WriteSpan/index_creation_error (0.00s) | |
--- PASS: TestSpanWriter_WriteSpan/span_insertion_error (0.01s) | |
--- PASS: TestSpanWriter_WriteSpan/span_index_dne_error (0.00s) | |
=== RUN TestSpanIndexName | |
--- PASS: TestSpanIndexName (0.00s) | |
=== RUN TestFixMapping | |
--- PASS: TestFixMapping (0.00s) | |
=== RUN TestWriteSpanInternal | |
--- PASS: TestWriteSpanInternal (0.00s) | |
=== RUN TestWriteSpanInternalError | |
--- PASS: TestWriteSpanInternalError (0.00s) | |
=== RUN TestNewSpanTags | |
=== RUN TestNewSpanTags/allTagsAsFields | |
=== RUN TestNewSpanTags/definedTagNames | |
=== RUN TestNewSpanTags/noAllTagsAsFields | |
--- PASS: TestNewSpanTags (0.00s) | |
--- PASS: TestNewSpanTags/allTagsAsFields (0.00s) | |
--- PASS: TestNewSpanTags/definedTagNames (0.00s) | |
--- PASS: TestNewSpanTags/noAllTagsAsFields (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/spanstore 6.487s | |
=== RUN TestFromDomainEmbedProcess | |
=== RUN TestFromDomainEmbedProcess/fixture_1 | |
--- PASS: TestFromDomainEmbedProcess (0.01s) | |
--- PASS: TestFromDomainEmbedProcess/fixture_1 (0.01s) | |
=== RUN TestEmptyTags | |
--- PASS: TestEmptyTags (0.00s) | |
=== RUN TestTagMap | |
--- PASS: TestTagMap (0.00s) | |
=== RUN TestToDomain | |
--- PASS: TestToDomain (0.01s) | |
=== RUN TestFailureBadTypeTags | |
--- PASS: TestFailureBadTypeTags (0.00s) | |
=== RUN TestFailureBadBoolTags | |
--- PASS: TestFailureBadBoolTags (0.00s) | |
=== RUN TestFailureBadIntTags | |
--- PASS: TestFailureBadIntTags (0.00s) | |
=== RUN TestFailureBadFloatTags | |
--- PASS: TestFailureBadFloatTags (0.00s) | |
=== RUN TestFailureBadBinaryTags | |
--- PASS: TestFailureBadBinaryTags (0.00s) | |
=== RUN TestFailureBadLogs | |
--- PASS: TestFailureBadLogs (0.00s) | |
=== RUN TestRevertKeyValueOfType | |
=== RUN TestRevertKeyValueOfType/not_a_valid_ValueType_string | |
=== RUN TestRevertKeyValueOfType/invalid_nil_Value | |
=== RUN TestRevertKeyValueOfType/non-string_Value_of_type | |
--- PASS: TestRevertKeyValueOfType (0.00s) | |
--- PASS: TestRevertKeyValueOfType/not_a_valid_ValueType_string (0.00s) | |
--- PASS: TestRevertKeyValueOfType/invalid_nil_Value (0.00s) | |
--- PASS: TestRevertKeyValueOfType/non-string_Value_of_type (0.00s) | |
=== RUN TestFailureBadRefs | |
--- PASS: TestFailureBadRefs (0.00s) | |
=== RUN TestFailureBadTraceIDRefs | |
--- PASS: TestFailureBadTraceIDRefs (0.00s) | |
=== RUN TestFailureBadSpanIDRefs | |
--- PASS: TestFailureBadSpanIDRefs (0.00s) | |
=== RUN TestFailureBadProcess | |
--- PASS: TestFailureBadProcess (0.00s) | |
=== RUN TestFailureBadTraceID | |
--- PASS: TestFailureBadTraceID (0.00s) | |
=== RUN TestFailureBadSpanID | |
--- PASS: TestFailureBadSpanID (0.00s) | |
=== RUN TestFailureBadParentSpanID | |
--- PASS: TestFailureBadParentSpanID (0.00s) | |
=== RUN TestFailureBadSpanFieldTag | |
--- PASS: TestFailureBadSpanFieldTag (0.00s) | |
=== RUN TestFailureBadProcessFieldTag | |
--- PASS: TestFailureBadProcessFieldTag (0.00s) | |
=== RUN TestTagsMap | |
=== RUN TestTagsMap/0,_map[bool:bool:%!s(bool=true)] | |
=== RUN TestTagsMap/1,_map[int.int:%!s(int64=1)] | |
=== RUN TestTagsMap/2,_map[float:%!s(float64=1.1)] | |
=== RUN TestTagsMap/3,_map[float:%!s(float64=123)] | |
=== RUN TestTagsMap/4,_map[float:%!s(float64=123)] | |
=== RUN TestTagsMap/5,_map[str:foo] | |
=== RUN TestTagsMap/6,_map[binary:foo] | |
=== RUN TestTagsMap/7,_map[unsupported:{}] | |
--- PASS: TestTagsMap (0.00s) | |
--- PASS: TestTagsMap/0,_map[bool:bool:%!s(bool=true)] (0.00s) | |
--- PASS: TestTagsMap/1,_map[int.int:%!s(int64=1)] (0.00s) | |
--- PASS: TestTagsMap/2,_map[float:%!s(float64=1.1)] (0.00s) | |
--- PASS: TestTagsMap/3,_map[float:%!s(float64=123)] (0.00s) | |
--- PASS: TestTagsMap/4,_map[float:%!s(float64=123)] (0.00s) | |
--- PASS: TestTagsMap/5,_map[str:foo] (0.00s) | |
--- PASS: TestTagsMap/6,_map[binary:foo] (0.00s) | |
--- PASS: TestTagsMap/7,_map[unsupported:{}] (0.00s) | |
=== RUN TestDotReplacement | |
--- PASS: TestDotReplacement (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/es/spanstore/dbmodel 1.067s | |
=== RUN TestElasticsearchStorage | |
--- SKIP: TestElasticsearchStorage (0.00s) | |
elasticsearch_test.go:129: Integration test against ElasticSearch skipped; set STORAGE env var to elasticsearch to run this | |
=== RUN TestElasticsearchStorageAllTagsAsObjectFields | |
--- SKIP: TestElasticsearchStorageAllTagsAsObjectFields (0.00s) | |
elasticsearch_test.go:129: Integration test against ElasticSearch skipped; set STORAGE env var to elasticsearch to run this | |
=== RUN TestParseAllFixtures | |
--- PASS: TestParseAllFixtures (0.04s) | |
integration_test.go:53: Parsing fixtures/traces/default.json | |
integration_test.go:53: Parsing fixtures/traces/dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/example_trace.json | |
integration_test.go:53: Parsing fixtures/traces/log_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/max_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multi_index_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multi_spot_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multiple1_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multiple2_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multiple3_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_opname_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_opname_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/multispottag_opname_trace.json | |
integration_test.go:53: Parsing fixtures/traces/opname_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/opname_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/opname_trace.json | |
integration_test.go:53: Parsing fixtures/traces/process_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/span_tags_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_opname_dur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_opname_maxdur_trace.json | |
integration_test.go:53: Parsing fixtures/traces/tags_opname_trace.json | |
=== RUN TestKafkaStorage | |
--- SKIP: TestKafkaStorage (0.00s) | |
kafka_test.go:118: Integration test against kafka skipped; set STORAGE env var to kafka to run this | |
=== RUN TestMemoryStorage | |
=== RUN TestMemoryStorage/GetServices | |
=== RUN TestMemoryStorage/GetOperations | |
=== RUN TestMemoryStorage/GetTrace | |
=== RUN TestMemoryStorage/GetLargeSpans | |
=== RUN TestMemoryStorage/FindTraces | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Tags | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Logs | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Process | |
=== RUN TestMemoryStorage/FindTraces/Tags_in_different_spots | |
=== RUN TestMemoryStorage/FindTraces/Trace_spans_over_multiple_indices | |
=== RUN TestMemoryStorage/FindTraces/Operation_name | |
=== RUN TestMemoryStorage/FindTraces/Operation_name_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Operation_name_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Duration_range | |
=== RUN TestMemoryStorage/FindTraces/max_Duration | |
=== RUN TestMemoryStorage/FindTraces/default | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Operation_name | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Tags_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Duration_range | |
=== RUN TestMemoryStorage/FindTraces/Multi-spot_Tags_+_max_Duration | |
=== RUN TestMemoryStorage/FindTraces/Multiple_Traces | |
=== RUN TestMemoryStorage/GetDependencies | |
--- PASS: TestMemoryStorage (0.08s) | |
--- PASS: TestMemoryStorage/GetServices (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/GetOperations (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/GetTrace (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/GetLargeSpans (0.03s) | |
integration_test.go:132: Testing Large Trace over 10K ... | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces (0.04s) | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Tags (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Logs (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_one_spot_-_Process (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_in_different_spots (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Trace_spans_over_multiple_indices (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Operation_name (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Operation_name_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Operation_name_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/default (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Operation_name (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Operation_name_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Tags_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Operation_name_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_Duration_range (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multi-spot_Tags_+_max_Duration (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- PASS: TestMemoryStorage/FindTraces/Multiple_Traces (0.00s) | |
integration_test.go:100: Waiting for storage backend to update documents, iteration 1 out of 30 | |
--- SKIP: TestMemoryStorage/GetDependencies (0.00s) | |
integration_test.go:350: Skipping GetDependencies test because dependency reader or writer is nil | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/integration 1.159s | |
=== RUN TestKafkaFactory | |
--- PASS: TestKafkaFactory (0.00s) | |
=== RUN TestKafkaFactoryEncoding | |
=== RUN TestKafkaFactoryEncoding/protobuf | |
=== RUN TestKafkaFactoryEncoding/json | |
--- PASS: TestKafkaFactoryEncoding (0.00s) | |
--- PASS: TestKafkaFactoryEncoding/protobuf (0.00s) | |
--- PASS: TestKafkaFactoryEncoding/json (0.00s) | |
=== RUN TestKafkaFactoryMarshallerErr | |
--- PASS: TestKafkaFactoryMarshallerErr (0.00s) | |
=== RUN TestProtobufMarshallerAndUnmarshaller | |
--- PASS: TestProtobufMarshallerAndUnmarshaller (0.00s) | |
=== RUN TestJSONMarshallerAndUnmarshaller | |
--- PASS: TestJSONMarshallerAndUnmarshaller (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.00s) | |
=== RUN TestFlagDefaults | |
--- PASS: TestFlagDefaults (0.00s) | |
=== RUN TestKafkaWriter | |
--- PASS: TestKafkaWriter (0.00s) | |
=== RUN TestKafkaWriterErr | |
--- PASS: TestKafkaWriterErr (0.00s) | |
=== RUN TestMarshallerErr | |
--- PASS: TestMarshallerErr (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/kafka 1.050s | |
=== RUN TestMemoryStorageFactory | |
--- PASS: TestMemoryStorageFactory (0.00s) | |
=== RUN TestWithConfiguration | |
--- PASS: TestWithConfiguration (0.00s) | |
=== RUN TestStoreGetEmptyDependencies | |
--- PASS: TestStoreGetEmptyDependencies (0.00s) | |
=== RUN TestStoreGetDependencies | |
--- PASS: TestStoreGetDependencies (0.00s) | |
=== RUN TestStoreWriteSpan | |
--- PASS: TestStoreWriteSpan (0.00s) | |
=== RUN TestStoreWithLimit | |
--- PASS: TestStoreWithLimit (0.00s) | |
=== RUN TestStoreGetTraceSuccess | |
--- PASS: TestStoreGetTraceSuccess (0.00s) | |
=== RUN TestStoreGetTraceFailure | |
--- PASS: TestStoreGetTraceFailure (0.00s) | |
=== RUN TestStoreGetServices | |
--- PASS: TestStoreGetServices (0.00s) | |
=== RUN TestStoreGetOperationsFound | |
--- PASS: TestStoreGetOperationsFound (0.00s) | |
=== RUN TestStoreGetOperationsNotFound | |
--- PASS: TestStoreGetOperationsNotFound (0.00s) | |
=== RUN TestStoreGetEmptyTraceSet | |
--- PASS: TestStoreGetEmptyTraceSet (0.00s) | |
=== RUN TestStoreGetTrace | |
--- PASS: TestStoreGetTrace (0.00s) | |
=== RUN TestOptionsWithFlags | |
--- PASS: TestOptionsWithFlags (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/plugin/storage/memory 1.039s | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/storage 1.024s [no tests to run] | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/dependencystore 1.033s [no tests to run] | |
? github.com/jaegertracing/jaeger/storage/dependencystore/mocks [no test files] | |
? github.com/jaegertracing/jaeger/storage/mocks [no test files] | |
testing: warning: no tests to run | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/samplingstore 1.022s [no tests to run] | |
? github.com/jaegertracing/jaeger/storage/samplingstore/mocks [no test files] | |
=== RUN TestCompositeWriteSpanStoreSuccess | |
--- PASS: TestCompositeWriteSpanStoreSuccess (0.00s) | |
=== RUN TestCompositeWriteSpanStoreSecondFailure | |
--- PASS: TestCompositeWriteSpanStoreSecondFailure (0.00s) | |
=== RUN TestCompositeWriteSpanStoreFirstFailure | |
--- PASS: TestCompositeWriteSpanStoreFirstFailure (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/spanstore 1.022s | |
=== RUN TestTableEmit | |
--- PASS: TestTableEmit (0.00s) | |
=== RUN TestSuccessfulUnderlyingCalls | |
--- PASS: TestSuccessfulUnderlyingCalls (0.00s) | |
=== RUN TestFailingUnderlyingCalls | |
--- PASS: TestFailingUnderlyingCalls (0.00s) | |
PASS | |
ok github.com/jaegertracing/jaeger/storage/spanstore/metrics 1.028s | |
? github.com/jaegertracing/jaeger/storage/spanstore/mocks [no test files] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment