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

OperationNameFormat property added to Diagnostic contract #10641

Merged
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 @@ -1846,6 +1846,28 @@
]
},
"description": "The verbosity level applied to traces emitted by trace policies."
},
"operationNameFormat": {
"type": "string",
"enum": [
"Name",
"Url"
],
"x-ms-enum": {
"name": "OperationNameFormat",
"modelAsString": true,
"values": [
{
"value": "Name",
"description": "API_NAME;rev=API_REVISION - OPERATION_NAME"
},
{
"value": "Url",
"description": "HTTP_VERB URL"
}
]
},
"description": "The format of the Operation Name for Application Insights telemetries. Default is Name."
}
},
"required": [
Expand Down Expand Up @@ -2748,7 +2770,8 @@
"description": "Logger type.",
"enum": [
"azureEventHub",
"applicationInsights"
"applicationInsights",
"azureMonitor"
],
"x-ms-enum": {
"name": "LoggerType",
Expand All @@ -2761,6 +2784,10 @@
{
"value": "applicationInsights",
"description": "Azure Application Insights as log destination."
},
{
"value": "azureMonitor",
"description": "Azure Monitor"
}
]
}
Expand Down