Skip to content

Commit

Permalink
Rebuilt
Browse files Browse the repository at this point in the history
  • Loading branch information
bentonam committed Feb 11, 2025
1 parent 6cf2d36 commit f5485ea
Show file tree
Hide file tree
Showing 14 changed files with 232 additions and 108 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| logs.enabled | bool | `true` | Whether to enable special processing of Tempo pod logs. |
| logs.tuning.dropLogLevels | list | `[]` | The log levels to drop. Will automatically keep all log levels unless specified here. |
| logs.tuning.dropLogLevels | list | `["debug"]` | The log levels to drop. Will automatically keep all log levels unless specified here. |
| logs.tuning.excludeLines | list | `[]` | Line patterns (valid RE2 regular expression)to exclude from the logs. |
| logs.tuning.scrubTimestamp | bool | `true` | Whether the timestamp should be scrubbed from the log line |
| logs.tuning.structuredMetadata | object | `{}` | The structured metadata mappings to set. To not set any structured metadata, set this to an empty object (e.g. `{}`) |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@
"type": "object",
"properties": {
"dropLogLevels": {
"type": "array"
"type": "array",
"items": {
"type": "string"
}
},
"excludeLines": {
"type": "array"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,10 @@
"type": "object",
"properties": {
"dropLogLevels": {
"type": "array"
"type": "array",
"items": {
"type": "string"
}
},
"excludeLines": {
"type": "array"
Expand Down Expand Up @@ -438,7 +441,10 @@
"type": "object",
"properties": {
"dropLogLevels": {
"type": "array"
"type": "array",
"items": {
"type": "string"
}
},
"excludeLines": {
"type": "array"
Expand Down Expand Up @@ -523,7 +529,10 @@
"type": "object",
"properties": {
"dropLogLevels": {
"type": "array"
"type": "array",
"items": {
"type": "string"
}
},
"excludeLines": {
"type": "array"
Expand Down Expand Up @@ -743,7 +752,10 @@
"type": "object",
"properties": {
"dropLogLevels": {
"type": "array"
"type": "array",
"items": {
"type": "string"
}
},
"excludeLines": {
"type": "array"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f5485ea

Please sign in to comment.