mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 13: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
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Observability
 | |
| 
 | |
| These settings let you tune and configure certain observability related behaviours.
 | |
| 
 | |
| ## Settings
 | |
| 
 | |
| ```yaml
 | |
| ##################################
 | |
| ##### OBSERVABILITY SETTINGS #####
 | |
| ##################################
 | |
| 
 | |
| # String. Header name to use to extract a request or trace ID from. Typically set by a
 | |
| # loadbalancer or proxy.
 | |
| # Default: "X-Request-Id"
 | |
| request-id-header: "X-Request-Id"
 | |
| 
 | |
| # Bool. Enable OpenTelemetry based tracing support.
 | |
| # Default: false
 | |
| tracing-enabled: false
 | |
| 
 | |
| # String. Set the transport protocol for the tracing system. Can either be "grpc" 
 | |
| # for OTLP gRPC, or "http" for OTLP HTTP.
 | |
| # Options: ["grpc", "http"]
 | |
| # Default: "grpc"
 | |
| tracing-transport: "grpc"
 | |
| 
 | |
| # String. Endpoint of the trace ingester. When using the gRPC or HTTP based 
 | |
| # transports, provide the endpoint as a single address/port combination without a 
 | |
| # protocol scheme.
 | |
| # Examples: ["localhost:4317"]
 | |
| # Default: ""
 | |
| tracing-endpoint: ""
 | |
| 
 | |
| # Bool. Disable TLS for the gRPC and HTTP transport protocols.
 | |
| # Default: false
 | |
| tracing-insecure-transport: false
 | |
| ```
 |