Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional Dapr options (2022-06-01-preview) #19886

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": {
ahmelsayed marked this conversation as resolved.
Show resolved Hide resolved
"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