분산 추적 구성 참조
분산 추적을 위한 구성 참조.
이 가이드는 Teleport의 분산 추적과 관련된 구성 필드를 설명합니다. 이러한 필드는 기본적으로 teleport.yaml 인 Teleport 구성 파일에서 찾을 수 있습니다: # Main service responsible for Distributed Tracing. # # You must enable the Tracing Service once per teleport.yaml for all # agents that you wish to capture traces from, <!-- INCLUDE:ENGLISH:docs/pages/includes/diagnostics/tracing-config.yaml --> tracing_service: # Turns tracing on. Default is false enabled: true # The OLTP exporter to send traces to. Possible values: # "grpc://collector.example.com" # - Traces will be exported via gRPC to the provided URL. # "http(s)://collector.example.com" # - Traces will be exported via HTTP to the provided URL. # "file:///var/lib/teleport/traces" # - Traces will be saved to files within the provided directory. Each file # will contain one proto encoded span per line. Files are rotated after # reaching 100MB. To override the rotation limit add # ?limit=<desired_file_size_in_bytes> to the exporter_url # (i.e. file:///var/lib/teleport/traces?limit=100) exporter_url: grpc://collector.example.com:4317 # The number of samples to collect per million spans. # 1000000 will sample **all** spans generated by Teleport # 500000 will sample 50% of spans generated by Teleport # 10000 will sample 1% of spans generated by Teleport # 0 will not sample any spans generated by Teleport but will respect any parent span's sampling. sampling_rate_per_million: 1000000 # Optional CA certificates are used to validate the exporter. ca_certs: - /var/lib/tele
