Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita29fc7d

Browse files
authored
chore: update otel to v1.14.0 (#6963)
1 parentf6f927e commita29fc7d

File tree

8 files changed

+65
-70
lines changed

8 files changed

+65
-70
lines changed

‎coderd/tracing/exporter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"go.opentelemetry.io/otel/propagation"
1313
"go.opentelemetry.io/otel/sdk/resource"
1414
sdktrace"go.opentelemetry.io/otel/sdk/trace"
15-
semconv"go.opentelemetry.io/otel/semconv/v1.11.0"
15+
semconv"go.opentelemetry.io/otel/semconv/v1.14.0"
1616
"golang.org/x/xerrors"
1717
"google.golang.org/grpc/credentials"
1818
)

‎coderd/tracing/httpmw.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import (
88
"github.com/go-chi/chi/v5"
99
"go.opentelemetry.io/otel"
1010
"go.opentelemetry.io/otel/propagation"
11-
semconv"go.opentelemetry.io/otel/semconv/v1.11.0"
11+
semconv"go.opentelemetry.io/otel/semconv/v1.14.0"
12+
"go.opentelemetry.io/otel/semconv/v1.14.0/httpconv"
13+
"go.opentelemetry.io/otel/semconv/v1.14.0/netconv"
1214
"go.opentelemetry.io/otel/trace"
1315

1416
"github.com/coder/coder/coderd/httpmw/patternmatcher"
@@ -78,17 +80,16 @@ func EndHTTPSpan(r *http.Request, status int, span trace.Span) {
7880
// set the resource name as we get it only once the handler is executed
7981
route:=chi.RouteContext(r.Context()).RoutePattern()
8082
span.SetName(fmt.Sprintf("%s %s",r.Method,route))
81-
span.SetAttributes(semconv.NetAttributesFromHTTPRequest("tcp",r)...)
82-
span.SetAttributes(semconv.EndUserAttributesFromHTTPRequest(r)...)
83-
span.SetAttributes(semconv.HTTPServerAttributesFromHTTPRequest("",route,r)...)
83+
span.SetAttributes(netconv.Transport("tcp"))
84+
span.SetAttributes(httpconv.ServerRequest("coderd",r)...)
8485
span.SetAttributes(semconv.HTTPRouteKey.String(route))
8586

8687
// 0 status means one has not yet been sent in which case net/http library will write StatusOK
8788
ifstatus==0 {
8889
status=http.StatusOK
8990
}
9091
span.SetAttributes(semconv.HTTPStatusCodeKey.Int(status))
91-
span.SetStatus(semconv.SpanStatusFromHTTPStatusCodeAndSpanKind(status,trace.SpanKindServer))
92+
span.SetStatus(httpconv.ServerStatus(status))
9293

9394
// finally end span
9495
span.End()

‎coderd/tracing/postgres.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77

88
"go.nhat.io/otelsql"
9-
semconv"go.opentelemetry.io/otel/semconv/v1.11.0"
9+
semconv"go.opentelemetry.io/otel/semconv/v1.14.0"
1010
"go.opentelemetry.io/otel/trace"
1111
"golang.org/x/xerrors"
1212
)

‎codersdk/client.go

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ import (
1616

1717
"go.opentelemetry.io/otel"
1818
"go.opentelemetry.io/otel/propagation"
19-
semconv"go.opentelemetry.io/otel/semconv/v1.11.0"
20-
"go.opentelemetry.io/otel/trace"
19+
"go.opentelemetry.io/otel/semconv/v1.14.0/httpconv"
2120
"golang.org/x/xerrors"
2221

2322
"github.com/coder/coder/coderd/tracing"
@@ -159,8 +158,7 @@ func (c *Client) Request(ctx context.Context, method, path string, body interfac
159158
opt(req)
160159
}
161160

162-
span.SetAttributes(semconv.NetAttributesFromHTTPRequest("tcp",req)...)
163-
span.SetAttributes(semconv.HTTPClientAttributesFromHTTPRequest(req)...)
161+
span.SetAttributes(httpconv.ClientRequest(req)...)
164162

165163
// Inject tracing headers if enabled.
166164
ifc.Trace {
@@ -184,8 +182,7 @@ func (c *Client) Request(ctx context.Context, method, path string, body interfac
184182
returnnil,err
185183
}
186184

187-
span.SetAttributes(semconv.HTTPStatusCodeKey.Int(resp.StatusCode))
188-
span.SetStatus(semconv.SpanStatusFromHTTPStatusCodeAndSpanKind(resp.StatusCode,trace.SpanKindClient))
185+
span.SetAttributes(httpconv.ClientResponse(resp)...)
189186

190187
// Copy the response body so we can log it if it's a loggable mime type.
191188
varrespBody []byte

‎go.mod

Lines changed: 30 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ require (
5959
github.com/andybalholm/brotliv1.0.4
6060
github.com/armon/circbufv0.0.0-20190214190532-5111143e8da2
6161
github.com/awalterschulze/gographvizv2.0.3+incompatible
62+
github.com/bep/debouncev1.2.1
6263
github.com/bgentry/speakeasyv0.1.0
6364
github.com/bramvdbogaerde/go-scpv1.2.1-0.20221219230748-977ee74ac37b
6465
github.com/briandowns/spinnerv1.18.1
@@ -106,6 +107,7 @@ require (
106107
github.com/hashicorp/terraform-config-inspectv0.0.0-20211115214459-90acf1ca460f
107108
github.com/hashicorp/terraform-jsonv0.14.0
108109
github.com/hashicorp/yamuxv0.0.0-20220718163420-dd80a7ee44ce
110+
github.com/iancoleman/strcasev0.2.0
109111
github.com/imulab/go-scim/pkg/v2v2.2.0
110112
github.com/jedib0t/go-pretty/v6v6.4.0
111113
github.com/jmoiron/sqlxv1.3.5
@@ -125,6 +127,8 @@ require (
125127
github.com/pkg/diffv0.0.0-20210226163009-20ebb0f2a09e
126128
github.com/pkg/sftpv1.13.6-0.20221018182125-7da137aa03f0
127129
github.com/prometheus/client_golangv1.14.0
130+
github.com/prometheus/client_modelv0.3.0
131+
github.com/prometheus/commonv0.40.0
128132
github.com/quasilyte/go-ruleguard/dslv0.3.21
129133
github.com/robfig/cron/v3v3.0.1
130134
github.com/spf13/aferov1.9.3
@@ -138,13 +142,13 @@ require (
138142
github.com/valyala/fasthttpv1.44.0
139143
github.com/wagslane/go-password-validatorv0.3.0
140144
go.mozilla.org/pkcs7v0.0.0-20200128120323-432b2356ecb1
141-
go.nhat.io/otelsqlv0.7.0
142-
go.opentelemetry.io/otelv1.11.1
143-
go.opentelemetry.io/otel/exporters/otlp/otlptracev1.11.1
144-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcv1.11.1
145-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpv1.11.1
146-
go.opentelemetry.io/otel/sdkv1.11.1
147-
go.opentelemetry.io/otel/tracev1.11.1
145+
go.nhat.io/otelsqlv0.9.0
146+
go.opentelemetry.io/otelv1.14.0
147+
go.opentelemetry.io/otel/exporters/otlp/otlptracev1.14.0
148+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcv1.14.0
149+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpv1.14.0
150+
go.opentelemetry.io/otel/sdkv1.14.0
151+
go.opentelemetry.io/otel/tracev1.14.0
148152
go.uber.org/atomicv1.10.0
149153
go.uber.org/goleakv1.2.1
150154
go4.org/netipxv0.0.0-20220725152314-7e7bdc8411bf
@@ -171,29 +175,9 @@ require (
171175
tailscale.comv1.32.2
172176
)
173177

174-
require (
175-
cloud.google.com/go/loggingv1.6.1// indirect
176-
github.com/bep/debouncev1.2.1// indirect
177-
github.com/dgraph-io/badger/v3v3.2103.5// indirect
178-
github.com/dustin/go-humanizev1.0.1// indirect
179-
github.com/golang/glogv1.0.0// indirect
180-
github.com/golang/protobufv1.5.2// indirect
181-
github.com/google/flatbuffersv23.1.21+incompatible// indirect
182-
github.com/h2non/filetypev1.1.3// indirect
183-
github.com/json-iterator/gov1.1.12// indirect
184-
github.com/juju/errorsv1.0.0// indirect
185-
github.com/mattn/go-localereaderv0.0.1// indirect
186-
github.com/mattn/go-sqlite3v1.14.15// indirect
187-
github.com/modern-go/concurrentv0.0.0-20180306012644-bacd9c7ef1dd// indirect
188-
github.com/modern-go/reflect2v1.0.2// indirect
189-
github.com/muesli/cancelreaderv0.2.2// indirect
190-
github.com/swaggo/files/v2v2.0.0// indirect
191-
golang.org/x/textv0.8.0// indirect
192-
golang.zx2c4.com/wireguard/wgctrlv0.0.0-20230215201556-9c5414ab4bde// indirect
193-
)
194-
195178
require (
196179
cloud.google.com/go/computev1.18.0// indirect
180+
cloud.google.com/go/loggingv1.6.1// indirect
197181
cloud.google.com/go/longrunningv0.3.0// indirect
198182
filippo.io/edwards25519v1.0.0-rc.1// indirect
199183
github.com/Azure/go-ansitermv0.0.0-20210617225240-d185dfc1b5a1// indirect
@@ -221,11 +205,13 @@ require (
221205
github.com/containerd/continuityv0.3.0// indirect
222206
github.com/coreos/go-iptablesv0.6.0// indirect
223207
github.com/davecgh/go-spewv1.1.1// indirect
208+
github.com/dgraph-io/badger/v3v3.2103.5// indirect
224209
github.com/dlclark/regexp2v1.8.1// indirect
225210
github.com/docker/cliv20.10.17+incompatible// indirect
226211
github.com/docker/dockerv20.10.17+incompatible// indirect
227212
github.com/docker/go-connectionsv0.4.0// indirect
228213
github.com/docker/go-unitsv0.4.0// indirect
214+
github.com/dustin/go-humanizev1.0.1// indirect
229215
github.com/elastic/go-windowsv1.0.0// indirect
230216
github.com/fxamacker/cbor/v2v2.4.0// indirect
231217
github.com/ghodss/yamlv1.0.0// indirect
@@ -243,14 +229,18 @@ require (
243229
github.com/gobwas/wsv1.1.0// indirect
244230
github.com/godbus/dbus/v5v5.1.0// indirect
245231
github.com/gogo/protobufv1.3.2// indirect
232+
github.com/golang/glogv1.0.0// indirect
246233
github.com/golang/groupcachev0.0.0-20210331224755-41bb18bfe9da// indirect
234+
github.com/golang/protobufv1.5.2// indirect
247235
github.com/google/btreev1.1.2// indirect
236+
github.com/google/flatbuffersv23.1.21+incompatible// indirect
248237
github.com/google/go-cmpv0.5.9// indirect
249238
github.com/google/go-querystringv1.1.0// indirect
250239
github.com/google/shlexv0.0.0-20191202100458-e7afc7fbc510// indirect
251240
github.com/googleapis/enterprise-certificate-proxyv0.2.1// indirect
252241
github.com/gorilla/cssv1.0.0// indirect
253242
github.com/grpc-ecosystem/grpc-gateway/v2v2.15.1// indirect
243+
github.com/h2non/filetypev1.1.3// indirect
254244
github.com/hashicorp/errwrapv1.1.0// indirect
255245
github.com/hashicorp/go-cleanhttpv0.5.2// indirect
256246
github.com/hashicorp/go-ctyv1.4.1-0.20200414143053-d3edf31b6320// indirect
@@ -263,22 +253,25 @@ require (
263253
github.com/hashicorp/terraform-plugin-logv0.7.0// indirect
264254
github.com/hashicorp/terraform-plugin-sdk/v2v2.20.0// indirect
265255
github.com/hdevalence/ed25519consensusv0.0.0-20220222234857-c00d1f31bab3// indirect
266-
github.com/iancoleman/strcasev0.2.0
267256
github.com/illarion/gonotifyv1.0.1// indirect
268257
github.com/imdario/mergov0.3.13// indirect
269258
github.com/insomniacslk/dhcpv0.0.0-20221215072855-de60144f33f8// indirect
270259
github.com/joeshaw/multierrorv0.0.0-20140124173710-69b34d4ec901// indirect
271260
github.com/josharian/internv1.0.0// indirect
272261
github.com/josharian/nativev1.1.1-0.20230202152459-5c7d0dd6ab86// indirect
273262
github.com/jsimonetti/rtnetlinkv1.1.2-0.20220408201609-d380b505068b// indirect
263+
github.com/json-iterator/gov1.1.12// indirect
264+
github.com/juju/errorsv1.0.0// indirect
274265
github.com/kballard/go-shellquotev0.0.0-20180428030007-95032a82bc51// indirect
275266
github.com/kortschak/wolv0.0.0-20200729010619-da482cc4850a// indirect
276267
github.com/kr/fsv0.1.0// indirect
277268
github.com/leodido/go-urnv1.2.2// indirect
278269
github.com/lucasb-eyer/go-colorfulv1.2.0// indirect
279270
github.com/mailru/easyjsonv0.7.6// indirect
280271
github.com/mattn/go-colorablev0.1.13// indirect
272+
github.com/mattn/go-localereaderv0.0.1// indirect
281273
github.com/mattn/go-runewidthv0.0.14// indirect
274+
github.com/mattn/go-sqlite3v1.14.15// indirect
282275
github.com/matttproud/golang_protobuf_extensionsv1.0.4// indirect
283276
github.com/mdlayher/genetlinkv1.2.0// indirect
284277
github.com/mdlayher/netlinkv1.6.2// indirect
@@ -292,7 +285,10 @@ require (
292285
github.com/mitchellh/go-testing-interfacev1.14.1// indirect
293286
github.com/mitchellh/reflectwalkv1.0.2// indirect
294287
github.com/moby/termv0.0.0-20210619224110-3f7ff695adc6// indirect
288+
github.com/modern-go/concurrentv0.0.0-20180306012644-bacd9c7ef1dd// indirect
289+
github.com/modern-go/reflect2v1.0.2// indirect
295290
github.com/muesli/ansiv0.0.0-20221106050444-61f0cd9a192a// indirect
291+
github.com/muesli/cancelreaderv0.2.2// indirect
296292
github.com/muesli/termenvv0.14.0// indirect
297293
github.com/niklasfasching/go-orgv1.6.5// indirect
298294
github.com/nu7hatch/gouuidv0.0.0-20131221200532-179d4d0c4d8d// indirect
@@ -304,15 +300,14 @@ require (
304300
github.com/pion/transportv0.14.1// indirect
305301
github.com/pkg/errorsv0.9.1// indirect
306302
github.com/pmezard/go-difflibv1.0.0// indirect
307-
github.com/prometheus/client_modelv0.3.0
308-
github.com/prometheus/commonv0.40.0
309303
github.com/prometheus/procfsv0.9.0// indirect
310304
github.com/rcrowley/go-metricsv0.0.0-20200313005456-10cdbea86bc0// indirect
311305
github.com/rivo/unisegv0.4.3// indirect
312306
github.com/satori/go.uuidv1.2.1-0.20181028125025-b2ce2384e17b// indirect
313307
github.com/sirupsen/logrusv1.9.0// indirect
314308
github.com/spf13/castv1.5.0// indirect
315309
github.com/spf13/jwalterweathermanv1.1.0// indirect
310+
github.com/swaggo/files/v2v2.0.0// indirect
316311
github.com/tadvi/systrayv0.0.0-20190226123456-11a2b8fa57af// indirect
317312
github.com/tailscale/certstorev0.1.1-0.20220316223106-78d6e1c49d8d// indirect
318313
github.com/tailscale/golang-x-cryptov0.0.0-20221102133106-bc99ab8c2d17// indirect
@@ -339,13 +334,15 @@ require (
339334
github.com/zclconf/go-ctyv1.10.0// indirect
340335
github.com/zeebo/errsv1.3.0// indirect
341336
go.opencensus.iov0.24.0// indirect
342-
go.opentelemetry.io/otel/exporters/otlp/internal/retryv1.11.1// indirect
343-
go.opentelemetry.io/otel/metricv0.33.0// indirect
337+
go.opentelemetry.io/otel/exporters/otlp/internal/retryv1.14.0// indirect
338+
go.opentelemetry.io/otel/metricv0.37.0// indirect
344339
go.opentelemetry.io/proto/otlpv0.19.0// indirect
345340
go4.org/memv0.0.0-20210711025021-927187094b94// indirect
346341
golang.org/x/netv0.8.0// indirect
342+
golang.org/x/textv0.8.0// indirect
347343
golang.org/x/timev0.3.0// indirect
348344
golang.zx2c4.com/wintunv0.0.0-20230126152724-0fa3db229ce2// indirect
345+
golang.zx2c4.com/wireguard/wgctrlv0.0.0-20230215201556-9c5414ab4bde// indirect
349346
golang.zx2c4.com/wireguard/windowsv0.5.3// indirect
350347
google.golang.org/appenginev1.6.7// indirect
351348
google.golang.org/genprotov0.0.0-20230223222841-637eb2293923// indirect

‎go.sum

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646/go.mod
17151715
github.com/securego/gosec/v2v2.9.1/go.mod h1:oDcDLcatOJxkCGaCaq8lua1jTnYf6Sou4wdiJ1n4iHc=
17161716
github.com/sergi/go-diffv1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
17171717
github.com/sergi/go-diffv1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
1718-
github.com/sergi/go-diffv1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ=
1718+
github.com/sergi/go-diffv1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8=
17191719
github.com/shazow/go-diffv0.0.0-20160112020656-b6b7b6733b8c/go.mod h1:/PevMnwAxekIXwN8qQyfc5gl2NlkB3CQlkizAbOkeBs=
17201720
github.com/shirou/gopsutil/v3v3.21.10/go.mod h1:t75NhzCZ/dYyPQjyQmrAYP6c8+LCdFANeBMdLPCNnew=
17211721
github.com/shopspring/decimalv0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4=
@@ -1976,46 +1976,46 @@ go.mongodb.org/mongo-driver v1.7.0/go.mod h1:Q4oFMbo1+MSNqICAdYMlC/zSTrwCogR4R8N
19761976
go.mozilla.org/mozlogv0.0.0-20170222151521-4bb13139d403/go.mod h1:jHoPAGnDrCy6kaI2tAze5Prf0Nr0w/oNkROt2lw3n3o=
19771977
go.mozilla.org/pkcs7v0.0.0-20200128120323-432b2356ecb1 h1:A/5uWzF44DlIgdm/PQFwfMkW0JX+cIcQi/SwLAmZP5M=
19781978
go.mozilla.org/pkcs7v0.0.0-20200128120323-432b2356ecb1/go.mod h1:SNgMg+EgDFwmvSmLRTNKC5fegJjB7v23qTQ0XLGUNHk=
1979-
go.nhat.io/otelsqlv0.7.0 h1:TBxa7dbHokzEZdo1m4ZGbgjrO822DDJVHbIKvaVRDBI=
1980-
go.nhat.io/otelsqlv0.7.0/go.mod h1:eSIg4NPdvODcSUUCnypyMpi7CXDurAT0a4JvJBuPJTE=
1979+
go.nhat.io/otelsqlv0.9.0 h1:54x5cE/+lNiTwE5almYhmGwZcUoXzpKRoxnb2txIApg=
1980+
go.nhat.io/otelsqlv0.9.0/go.mod h1:pvHecVCST6Wfhe0Cv8D/x5JLNgejZxCsQ7ctxxOViVs=
19811981
go.opentelemetry.io/contribv0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc=
19821982
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpcv0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E=
19831983
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpcv0.28.0/go.mod h1:vEhqr0m4eTc+DWxfsXoXue2GBgV2uUwVznkGIHW/e5w=
19841984
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttpv0.20.0/go.mod h1:2AboqHi0CiIZU0qwhtUfCYD1GeUzvvIXWNkhDt7ZMG4=
19851985
go.opentelemetry.io/otelv0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo=
19861986
go.opentelemetry.io/otelv1.3.0/go.mod h1:PWIKzi6JCp7sM0k9yZ43VX+T345uNbAkDKwHVjb2PTs=
1987-
go.opentelemetry.io/otelv1.11.1 h1:4WLLAmcfkmDk2ukNXJyq3/kiz/3UzCaYq6PskJsaou4=
1988-
go.opentelemetry.io/otelv1.11.1/go.mod h1:1nNhXBbWSD0nsL38H6btgnFN2k4i0sNLHNNMZMSbUGE=
1987+
go.opentelemetry.io/otelv1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM=
1988+
go.opentelemetry.io/otelv1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU=
19891989
go.opentelemetry.io/otel/exporters/otlpv0.20.0/go.mod h1:YIieizyaN77rtLJra0buKiNBOm9XQfkPEKBeuhoMwAM=
19901990
go.opentelemetry.io/otel/exporters/otlp/internal/retryv1.3.0/go.mod h1:VpP4/RMn8bv8gNo9uK7/IMY4mtWLELsS+JIP0inH0h4=
1991-
go.opentelemetry.io/otel/exporters/otlp/internal/retryv1.11.1 h1:X2GndnMCsUPh6CiY2a+frAbNsXaPLbB0soHRYhAZ5Ig=
1992-
go.opentelemetry.io/otel/exporters/otlp/internal/retryv1.11.1/go.mod h1:i8vjiSzbiUC7wOQplijSXMYUpNM93DtlS5CbUT+C6oQ=
1991+
go.opentelemetry.io/otel/exporters/otlp/internal/retryv1.14.0 h1:/fXHZHGvro6MVqV34fJzDhi7sHGpX3Ej/Qjmfn003ho=
1992+
go.opentelemetry.io/otel/exporters/otlp/internal/retryv1.14.0/go.mod h1:UFG7EBMRdXyFstOwH028U0sVf+AvukSGhF0g8+dmNG8=
19931993
go.opentelemetry.io/otel/exporters/otlp/otlptracev1.3.0/go.mod h1:hO1KLR7jcKaDDKDkvI9dP/FIhpmna5lkqPUQdEjFAM8=
1994-
go.opentelemetry.io/otel/exporters/otlp/otlptracev1.11.1 h1:MEQNafcNCB0uQIti/oHgU7CZpUMYQ7qigBwMVKycHvc=
1995-
go.opentelemetry.io/otel/exporters/otlp/otlptracev1.11.1/go.mod h1:19O5I2U5iys38SsmT2uDJja/300woyzE1KPIQxEUBUc=
1994+
go.opentelemetry.io/otel/exporters/otlp/otlptracev1.14.0 h1:TKf2uAs2ueguzLaxOCBXNpHxfO/aC7PAdDsSH0IbeRQ=
1995+
go.opentelemetry.io/otel/exporters/otlp/otlptracev1.14.0/go.mod h1:HrbCVv40OOLTABmOn1ZWty6CHXkU8DK/Urc43tHug70=
19961996
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcv1.3.0/go.mod h1:keUU7UfnwWTWpJ+FWnyqmogPa82nuU5VUANFq49hlMY=
1997-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcv1.11.1 h1:LYyG/f1W/jzAix16jbksJfMQFpOH/Ma6T639pVPMgfI=
1998-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcv1.11.1/go.mod h1:QrRRQiY3kzAoYPNLP0W/Ikg0gR6V3LMc+ODSxr7yyvg=
1997+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcv1.14.0 h1:ap+y8RXX3Mu9apKVtOkM6WSFESLM8K3wNQyOU8sWHcc=
1998+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcv1.14.0/go.mod h1:5w41DY6S9gZrbjuq6Y+753e96WfPha5IcsOSZTtullM=
19991999
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpv1.3.0/go.mod h1:QNX1aly8ehqqX1LEa6YniTU7VY9I6R3X/oPxhGdTceE=
2000-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpv1.11.1 h1:tFl63cpAAcD9TOU6U8kZU7KyXuSRYAZlbx1C61aaB74=
2001-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpv1.11.1/go.mod h1:X620Jww3RajCJXw/unA+8IRTgxkdS7pi+ZwK9b7KUJk=
2002-
go.opentelemetry.io/otel/exporters/stdout/stdoutmetricv0.33.0 h1:hlnyYcK61UzruaUssIZvCHl72qSxGB1R55RexLKjFs8=
2003-
go.opentelemetry.io/otel/exporters/stdout/stdouttracev1.11.1 h1:3Yvzs7lgOw8MmbxmLRsQGwYdCubFmUHSooKaEhQunFQ=
2000+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpv1.14.0 h1:3jAYbRHQAqzLjd9I4tzxwJ8Pk/N6AqBcF6m1ZHrxG94=
2001+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpv1.14.0/go.mod h1:+N7zNjIJv4K+DeX67XXET0P+eIciESgaFDBqh+ZJFS4=
2002+
go.opentelemetry.io/otel/exporters/stdout/stdoutmetricv0.37.0 h1:S1Y8Wkl44weO903rqc1mCV4Gqbb7Vd+R+qU1yceN7XQ=
2003+
go.opentelemetry.io/otel/exporters/stdout/stdouttracev1.14.0 h1:sEL90JjOO/4yhquXl5zTAkLLsZ5+MycAgX99SDsxGc8=
20042004
go.opentelemetry.io/otel/metricv0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU=
2005-
go.opentelemetry.io/otel/metricv0.33.0 h1:xQAyl7uGEYvrLAiV/09iTJlp1pZnQ9Wl793qbVvED1E=
2006-
go.opentelemetry.io/otel/metricv0.33.0/go.mod h1:QlTYc+EnYNq/M2mNk1qDDMRLpqCOj2f/r5c7Fd5FYaI=
2005+
go.opentelemetry.io/otel/metricv0.37.0 h1:pHDQuLQOZwYD+Km0eb657A25NaRzy0a+eLyKfDXedEs=
2006+
go.opentelemetry.io/otel/metricv0.37.0/go.mod h1:DmdaHfGt54iV6UKxsV9slj2bBRJcKC1B1uvDLIioc1s=
20072007
go.opentelemetry.io/otel/oteltestv0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw=
20082008
go.opentelemetry.io/otel/sdkv0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc=
20092009
go.opentelemetry.io/otel/sdkv1.3.0/go.mod h1:rIo4suHNhQwBIPg9axF8V9CA72Wz2mKF1teNrup8yzs=
2010-
go.opentelemetry.io/otel/sdkv1.11.1 h1:F7KmQgoHljhUuJyA+9BiU+EkJfyX5nVVF4wyzWZpKxs=
2011-
go.opentelemetry.io/otel/sdkv1.11.1/go.mod h1:/l3FE4SupHJ12TduVjUkZtlfFqDCQJlOlithYrdktys=
2010+
go.opentelemetry.io/otel/sdkv1.14.0 h1:PDCppFRDq8A1jL9v6KMI6dYesaq+DFcDZvjsoGvxGzY=
2011+
go.opentelemetry.io/otel/sdkv1.14.0/go.mod h1:bwIC5TjrNG6QDCHNWvW4HLHtUQ4I+VQDsnjhvyZCALM=
20122012
go.opentelemetry.io/otel/sdk/export/metricv0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE=
20132013
go.opentelemetry.io/otel/sdk/metricv0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE=
2014-
go.opentelemetry.io/otel/sdk/metricv0.33.0 h1:oTqyWfksgKoJmbrs2q7O7ahkJzt+Ipekihf8vhpa9qo=
2014+
go.opentelemetry.io/otel/sdk/metricv0.37.0 h1:haYBBtZZxiI3ROwSmkZnI+d0+AVzBWeviuYQDeBWosU=
20152015
go.opentelemetry.io/otel/tracev0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw=
20162016
go.opentelemetry.io/otel/tracev1.3.0/go.mod h1:c/VDhno8888bvQYmbYLqe41/Ldmr/KKunbvWM4/fEjk=
2017-
go.opentelemetry.io/otel/tracev1.11.1 h1:ofxdnzsNrGBYXbP7t7zpUK281+go5rF7dvdIZXF8gdQ=
2018-
go.opentelemetry.io/otel/tracev1.11.1/go.mod h1:f/Q9G7vzk5u91PhbmKbg1Qn0rzH1LJ4vbPHFGkTPtOk=
2017+
go.opentelemetry.io/otel/tracev1.14.0 h1:wp2Mmvj41tDsyAJXiWDWpfNsOiIyd38fy85pyKcFq/M=
2018+
go.opentelemetry.io/otel/tracev1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8=
20192019
go.opentelemetry.io/proto/otlpv0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI=
20202020
go.opentelemetry.io/proto/otlpv0.11.0/go.mod h1:QpEjXPrNQzrFDZgoTo49dgHR9RYRSrg3NAKnUGl9YpQ=
20212021
go.opentelemetry.io/proto/otlpv0.19.0 h1:IVN6GR+mhC4s5yfcTbmzHYODqvWAp3ZedA2SJPI1Nnw=

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp