You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2022/04/25 01:57:40 UTC

[dubbo-go-pixiu] branch develop updated (d2135689 -> 7717e848)

This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-go-pixiu.git


    from d2135689 Merge pull request #406 from zgq25302111/develop
     new c13c4e42 Merge pull request #1 from apache/develop
     new d4442a5f trace code(not fixed) commit
     new 11cf5961 fix: driver Init method
     new d1a5afb2 trace code adjust
     new 85c7217a feature: trace support
     new 5ce577e1 fix: constant value fixed
     new 762cd9e4 docs: model/trace.go add license
     new 4eb7accf style: trace code and comment adjust
     new 08aeae6b Merge branch 'develop' into feature/trace
     new 2264b336 fix: restore dubbo.go
     new f9ac1daa docs: comment fix
     new dc377273 workflow update
     new 5436339d update go version in .travis.yml
     new b70e713c style: replace if-else with switch
     new 2e76ba94 fix: corba and testify version update
     new 793eb6c0 fix: go.sum update
     new cac891d0 Merge branch 'develop' into feature/trace
     new 7de6b293 testify update automatically
     new dd1e3f22 error handle and comment modify
     new 1cb09fae fix: go version in github-action.yml update to 1.17
     new cddf985b Merge branch 'develop' into feature/trace
     new 2770cb37 modify ci
     new fcf7a021 Merge branch 'develop' into feature/trace
     new 8d72f96d fix: fault tolerant for trace
     new b7c72a3c specify go version 1.15 in github-action.yml
     new d47c5a07 update go version to 1.17 uniformly
     new 50ff7f2b fix: Array method has been abandoned
     new 2f255508 Update github-actions.yml
     new 6c229531 Merge remote-tracking branch 'origin/feature/trace' into feature/trace
     new 8afe4abd style: add log message
     new f507cbc7 style: import adjustment
     new 7717e848 Merge pull request #394 from maxingg/feature/trace

The 1657 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/github-actions.yml               |   2 +-
 .travis.yml                                        |   2 +-
 go.mod                                             |  22 +--
 go.sum                                             | 130 ++++++++---------
 pkg/client/dubbo/dubbo.go                          |  12 +-
 pkg/common/http/manager.go                         |   2 +-
 pkg/model/bootstrap.go                             |   1 +
 pkg/model/{tracing.go => trace.go}                 |  19 +--
 pkg/server/otel.go                                 |  47 +++++++
 pkg/server/pixiu_start.go                          |  11 ++
 .../grpc/RoundTripper.go => tracing/api.go}        |  22 +--
 pkg/tracing/driver.go                              | 153 +++++++++++++++++++++
 pkg/tracing/http.go                                |  66 +++++++++
 .../jaeger/jaeger.go}                              |  26 ++--
 .../load_balancer_rand.go => tracing/otlp/otlp.go} |  23 ++--
 .../round_robin.go => tracing/trace_manager.go}    |  38 +++--
 start_integrate_test.sh                            |   3 +
 17 files changed, 454 insertions(+), 125 deletions(-)
 copy pkg/model/{tracing.go => trace.go} (57%)
 copy pkg/{common/grpc/RoundTripper.go => tracing/api.go} (63%)
 create mode 100644 pkg/tracing/driver.go
 create mode 100644 pkg/tracing/http.go
 copy pkg/{cluster/loadbalancer/rand/load_balancer_rand.go => tracing/jaeger/jaeger.go} (60%)
 copy pkg/{cluster/loadbalancer/rand/load_balancer_rand.go => tracing/otlp/otlp.go} (70%)
 copy pkg/{cluster/loadbalancer/roundrobin/round_robin.go => tracing/trace_manager.go} (54%)