mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 04:09:17 +08:00
Tracing: chore make insecure option configurable (#99236)
* Tracing: chore: make insecure option configurable In case of insecure set to false, default system cert pool will be used to create otlpgrpc client. * test: add tracing/insecure config checks This is to verify whether insecure configuration is properly parsed. * chore: update configura Grafana docs with new setting * chore: also update comment in the ini files --------- Co-authored-by: Matheus Macabu <macabu.matheus@gmail.com>
This commit is contained in:
@ -1738,6 +1738,9 @@ propagation =
|
||||
address =
|
||||
# Propagation specifies the text map propagation format: w3c, jaeger
|
||||
propagation =
|
||||
# Toggles the insecure communication setting, defaults to `true`.
|
||||
# When set to `false`, the OTLP client will use TLS credentials with the default system cert pool for communication.
|
||||
insecure =
|
||||
|
||||
#################################### External Image Storage ##############
|
||||
[external_image_storage]
|
||||
|
@ -1691,6 +1691,9 @@ default_datasource_uid =
|
||||
; address = localhost:4317
|
||||
# Propagation specifies the text map propagation format: w3c, jaeger
|
||||
; propagation = w3c
|
||||
# Toggles the insecure communication setting, defaults to `true`.
|
||||
# When set to `false`, the OTLP client will use TLS credentials with the default system cert pool for communication.
|
||||
; insecure = false
|
||||
|
||||
#################################### External image storage ##########################
|
||||
[external_image_storage]
|
||||
|
Reference in New Issue
Block a user