mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
14ef098099
* [feature] Add http trace exporter, drop Jaeger Jaeger supports ingesting traces using the OpenTelemetry gRPC or HTTP methods. The Jaeger project has deprecated the old jaeger transport. * Add support for submitting traces over HTTP * Drop support for the old Jaeger protocol * Upgrade the trace libraries to v1.17 Fixes: #2176 Fixes: #2179
32 lines
650 B
Python
32 lines
650 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
go_library(
|
|
name = "utilities",
|
|
srcs = [
|
|
"doc.go",
|
|
"pattern.go",
|
|
"readerfactory.go",
|
|
"string_array_flag.go",
|
|
"trie.go",
|
|
],
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/utilities",
|
|
)
|
|
|
|
go_test(
|
|
name = "utilities_test",
|
|
size = "small",
|
|
srcs = [
|
|
"string_array_flag_test.go",
|
|
"trie_test.go",
|
|
],
|
|
deps = [":utilities"],
|
|
)
|
|
|
|
alias(
|
|
name = "go_default_library",
|
|
actual = ":utilities",
|
|
visibility = ["//visibility:public"],
|
|
)
|