Skip to content

Commit

Permalink
update dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhlogin committed Dec 23, 2024
1 parent 4dcc70b commit f89d560
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions exporter/awsxrayexporter/internal/translator/http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func TestClientSpanWithSchemeHostTargetAttributesStable(t *testing.T) {
attributes := make(map[string]any)
attributes[conventionsv127.AttributeHTTPRequestMethod] = "GET"
attributes[conventionsv127.AttributeURLScheme] = "https"
attributes[conventionsv127.AttributeServerAddress] = "api.example.com"
attributes[conventions.AttributeHTTPHost] = "api.example.com"
attributes[conventionsv127.AttributeURLQuery] = "/users/junit"
attributes[conventionsv127.AttributeHTTPResponseStatusCode] = 200
attributes["user.id"] = "junit"
Expand Down Expand Up @@ -125,9 +125,9 @@ func TestClientSpanWithPeerAttributesStable(t *testing.T) {
attributes := make(map[string]any)
attributes[conventionsv127.AttributeHTTPRequestMethod] = "GET"
attributes[conventionsv127.AttributeURLScheme] = "http"
attributes[conventionsv127.AttributeServerAddress] = "kb234.example.com"
attributes[conventionsv127.AttributeServerPort] = 8080
attributes[conventionsv127.AttributeNetworkPeerAddress] = "10.8.17.36"
attributes[conventions.AttributeNetPeerName] = "kb234.example.com"
attributes[conventions.AttributeNetPeerPort] = 8080
attributes[conventions.AttributeNetPeerIP] = "10.8.17.36"
attributes[conventionsv127.AttributeURLQuery] = "/users/junit"
attributes[conventionsv127.AttributeHTTPResponseStatusCode] = 200
span := constructHTTPClientSpan(attributes)
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ require (
github.com/spf13/viper v1.19.0 // indirect
github.com/stormcat24/protodep v0.1.8 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/stretchr/testify v1.10.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.940 // indirect
Expand Down Expand Up @@ -727,7 +727,7 @@ require (
go.opentelemetry.io/collector/featuregate v1.10.0 // indirect
go.opentelemetry.io/collector/filter v0.103.0 // indirect
go.opentelemetry.io/collector/pdata v1.10.0 // indirect
go.opentelemetry.io/collector/semconv v0.103.0 // indirect
go.opentelemetry.io/collector/semconv v0.116.0 // indirect
go.opentelemetry.io/collector/service v0.103.0 // indirect
go.opentelemetry.io/contrib/config v0.7.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 // indirect
Expand Down
7 changes: 4 additions & 3 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f89d560

Please sign in to comment.