Skip to content

Commit f5485ea

Browse files
committed
Rebuilt
1 parent 6cf2d36 commit f5485ea

File tree

14 files changed

+232
-108
lines changed

14 files changed

+232
-108
lines changed

charts/k8s-monitoring/charts/feature-integrations/docs/integrations/tempo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
| Key | Type | Default | Description |
1717
|-----|------|---------|-------------|
1818
| logs.enabled | bool | `true` | Whether to enable special processing of Tempo pod logs. |
19-
| logs.tuning.dropLogLevels | list | `[]` | The log levels to drop. Will automatically keep all log levels unless specified here. |
19+
| logs.tuning.dropLogLevels | list | `["debug"]` | The log levels to drop. Will automatically keep all log levels unless specified here. |
2020
| logs.tuning.excludeLines | list | `[]` | Line patterns (valid RE2 regular expression)to exclude from the logs. |
2121
| logs.tuning.scrubTimestamp | bool | `true` | Whether the timestamp should be scrubbed from the log line |
2222
| logs.tuning.structuredMetadata | object | `{}` | The structured metadata mappings to set. To not set any structured metadata, set this to an empty object (e.g. `{}`) |

charts/k8s-monitoring/charts/feature-integrations/schema-mods/definitions/tempo-integration.schema.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@
2525
"type": "object",
2626
"properties": {
2727
"dropLogLevels": {
28-
"type": "array"
28+
"type": "array",
29+
"items": {
30+
"type": "string"
31+
}
2932
},
3033
"excludeLines": {
3134
"type": "array"

charts/k8s-monitoring/charts/feature-integrations/values.schema.json

+16-4
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,10 @@
340340
"type": "object",
341341
"properties": {
342342
"dropLogLevels": {
343-
"type": "array"
343+
"type": "array",
344+
"items": {
345+
"type": "string"
346+
}
344347
},
345348
"excludeLines": {
346349
"type": "array"
@@ -438,7 +441,10 @@
438441
"type": "object",
439442
"properties": {
440443
"dropLogLevels": {
441-
"type": "array"
444+
"type": "array",
445+
"items": {
446+
"type": "string"
447+
}
442448
},
443449
"excludeLines": {
444450
"type": "array"
@@ -523,7 +529,10 @@
523529
"type": "object",
524530
"properties": {
525531
"dropLogLevels": {
526-
"type": "array"
532+
"type": "array",
533+
"items": {
534+
"type": "string"
535+
}
527536
},
528537
"excludeLines": {
529538
"type": "array"
@@ -743,7 +752,10 @@
743752
"type": "object",
744753
"properties": {
745754
"dropLogLevels": {
746-
"type": "array"
755+
"type": "array",
756+
"items": {
757+
"type": "string"
758+
}
747759
},
748760
"excludeLines": {
749761
"type": "array"

charts/k8s-monitoring/docs/examples/features/integrations/grafana/alloy-logs.alloy

+11-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/integrations/grafana/output.yaml

+31-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/integrations/loki/alloy-logs.alloy

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/integrations/loki/output.yaml

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/integrations/mimir/alloy-logs.alloy

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/integrations/mimir/output.yaml

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)