Skip to content
Closed
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 @@ -1786,6 +1786,33 @@
"enableHttpCorrelationHeaders": {
"type": "boolean",
"description": "Whether to process Correlation Headers coming to Api Management Service. Only applicable to Application Insights diagnostics. Default is true."
},
"httpCorrelationProtocol": {
"type": "string",
"enum": [
"None",
"Legacy",
"W3C"
],
"x-ms-enum": {
"name": "HttpCorrelationProtocol",
"modelAsString": true,
"values": [
{
"value": "None",
"description": "Do not read and inject correlation headers."
},
{
"value": "Legacy",
"description": "Inject Request-Id and Request-Context headers with request correlation data. See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/HttpCorrelationProtocol.md."
},
{
"value": "W3C",
"description": "Inject Trace Context headers. See https://w3c.github.io/trace-context."
}
]
},
"description": "Sets correlation protocol to use for Application Insights diagnostics."
}
},
"required": [
Expand Down