50 lines
		
	
	
		
			952 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			952 B
		
	
	
	
		
			YAML
		
	
	
	
receivers:
 | 
						|
  otlp:
 | 
						|
    protocols:
 | 
						|
        grpc:
 | 
						|
 | 
						|
exporters:
 | 
						|
  prometheus:
 | 
						|
    endpoint: "0.0.0.0:8889"
 | 
						|
    namespace: promexample
 | 
						|
    const_labels:
 | 
						|
      label1: value1
 | 
						|
  logging:
 | 
						|
    loglevel: debug
 | 
						|
 | 
						|
  zipkin:
 | 
						|
    endpoint: "http://zipkin-all-in-one:9411/api/v2/spans"
 | 
						|
    format: proto
 | 
						|
 | 
						|
  jaeger:
 | 
						|
    endpoint: jaeger-all-in-one:14250
 | 
						|
    insecure: true
 | 
						|
 | 
						|
# Alternatively, use jaeger_thrift_http with the settings below. In this case
 | 
						|
# update the list of exporters on the traces pipeline.
 | 
						|
#
 | 
						|
#  jaeger_thrift_http:
 | 
						|
#    url: http://jaeger-all-in-one:14268/api/traces
 | 
						|
 | 
						|
processors:
 | 
						|
  batch:
 | 
						|
 | 
						|
extensions:
 | 
						|
  health_check:
 | 
						|
  pprof:
 | 
						|
    endpoint: :1888
 | 
						|
  zpages:
 | 
						|
    endpoint: :55679
 | 
						|
 | 
						|
service:
 | 
						|
  extensions: [pprof, zpages, health_check]
 | 
						|
  pipelines:
 | 
						|
    traces:
 | 
						|
      receivers: [otlp]
 | 
						|
      processors: [batch]
 | 
						|
      exporters: [logging, zipkin, jaeger]
 | 
						|
    metrics:
 | 
						|
      receivers: [otlp]
 | 
						|
      processors: [batch]
 | 
						|
      exporters: [logging, prometheus]
 |