mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 16:22:25 -05:00 
			
		
		
		
	* [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
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			650 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			650 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 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"],
 | |
| )
 |