Skip to content

Commit

Permalink
Add additional Dapr options (2022-06-01-preview) (Azure#19886)
Browse files Browse the repository at this point in the history
* Add additional Dapr options

* Update examples for 2022-06-01-preview

* force ci

* force ci

* force ci
  • Loading branch information
ahmelsayed committed Aug 10, 2022
1 parent bb43ed1 commit 94d84ee
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,31 @@
},
"httpReadBufferSize": {
"type": "integer",
"description": "Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB.",
"format": "int32"
},
"httpMaxRequestSize": {
"type": "integer",
"description": "Increasing max size of request body http and grpc servers parameter in MB to handle uploading of big files. Default is 4 MB.",
"format": "int32"
},
"logLevel": {
"description": "Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info.",
"enum": [
"info",
"debug",
"warn",
"error"
],
"type": "string",
"x-ms-enum": {
"name": "logLevel",
"modelAsString": true
}
},
"enableApiLogging": {
"description": "Enables API logging for the Dapr sidecar",
"type": "boolean"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@
"enabled": true,
"appPort": 3000,
"appProtocol": "http",
"httpReadBufferSize": 30
"httpReadBufferSize": 30,
"httpMaxRequestSize": 10,
"logLevel": "debug",
"enableApiLogging": true
}
},
"template": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@
"enabled": true,
"appPort": 3000,
"appProtocol": "http",
"httpReadBufferSize": 30
"httpReadBufferSize": 30,
"httpMaxRequestSize": 10,
"logLevel": "debug",
"enableApiLogging": true
}
},
"template": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@
"enabled": true,
"appPort": 3000,
"appProtocol": "http",
"httpReadBufferSize": 30
"httpReadBufferSize": 30,
"httpMaxRequestSize": 10,
"logLevel": "debug",
"enableApiLogging": true
}
},
"template": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@
"enabled": true,
"appPort": 3000,
"appProtocol": "http",
"httpReadBufferSize": 30
"httpReadBufferSize": 30,
"httpMaxRequestSize": 10,
"logLevel": "debug",
"enableApiLogging": true
}
},
"template": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@
"enabled": true,
"appPort": 3000,
"appProtocol": "http",
"httpReadBufferSize": 30
"httpReadBufferSize": 30,
"httpMaxRequestSize": 10,
"logLevel": "debug",
"enableApiLogging": true
}
},
"template": {
Expand Down

0 comments on commit 94d84ee

Please sign in to comment.