Skip to content

Commit

Permalink
fix: remove validation false positive for debug exporter (#330)
Browse files Browse the repository at this point in the history
Fixes: #328
  • Loading branch information
mmanciop authored Jun 3, 2024
1 parent 4c41570 commit a9d0b9f
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion packages/otelbin/src/components/monaco-editor/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1736,7 +1736,29 @@
}
}
},
"^dynatrace(/[^/]+)*$": {
"^debug(/[^/]+)*$": {
"type": [
"object",
"null"
],
"additionalProperties": false,
"properties": {
"loglevel": {},
"verbosity": {
"enum": ["basic", "normal", "detailed"],
"default": "detailed"
},
"sampling_initial": {
"type": "integer",
"default": 5
},
"sampling_thereafter": {
"type": "integer",
"default": 500
}
}
},
"^dynatrace(/[^/]+)*$": {
"type": [
"object",
"null"
Expand Down

0 comments on commit a9d0b9f

Please sign in to comment.