Skip to content

Commit

Permalink
feat(Traefik Proxy): add tracingparameters to helm chart values, co…
Browse files Browse the repository at this point in the history
…mments
  • Loading branch information
slayne authored and David Heredero committed Dec 9, 2024
1 parent 11dbfa8 commit 7fabf10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
16 changes: 4 additions & 12 deletions traefik/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1569,20 +1569,14 @@
"type": "boolean"
},
"capturedRequestHeaders": {
"type": [
"array"
]
"type": "array"
},
"capturedResponseHeaders": {
"type": [
"array"
]
"type": "array"
},
"globalAttributes": {
"properties": {},
"type": [
"object"
]
"type": "object"
},
"otlp": {
"properties": {
Expand Down Expand Up @@ -1656,9 +1650,7 @@
"type": "object"
},
"safeQueryParams": {
"type": [
"array"
]
"type": "array"
},
"sampleRate": {
"maximum": 1,
Expand Down
8 changes: 4 additions & 4 deletions traefik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,13 @@ tracing: # @schema additionalProperties: false
# -- Service name used in selected backend. Default: traefik.
serviceName: # @schema type:[string, null]
# -- Applies a list of shared key:value attributes on all spans.
globalAttributes: {} # @schema type:[object]
globalAttributes: {}
# -- Defines the list of request headers to add as attributes. It applies to client and server kind spans.
capturedRequestHeaders: [] # @schema type:[array]
capturedRequestHeaders: []
# -- Defines the list of response headers to add as attributes. It applies to client and server kind spans.
capturedResponseHeaders: [] # @schema type:[array]
capturedResponseHeaders: []
# -- By default, all query parameters are redacted. Defines the list of query parameters to not redact.
safeQueryParams: [] # @schema type:[array]
safeQueryParams: []
# -- The proportion of requests to trace, specified between 0.0 and 1.0. Default: 1.0.
sampleRate: # @schema type:[number, null]; minimum:0; maximum:1
otlp:
Expand Down

0 comments on commit 7fabf10

Please sign in to comment.