Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
00a5689
[Monitor] Make all attributes of EventData class readonly (#2254)
gucalder Feb 7, 2018
b0ca590
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Feb 9, 2018
8c3746f
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Feb 17, 2018
799c13f
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Feb 28, 2018
067e5a9
[Monitor] Fixing issue with metricnamespace specification as client l…
gucalder Mar 1, 2018
5c64ca3
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Mar 10, 2018
a227d3f
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Mar 14, 2018
189d112
[Monitor] Fixing incorrect specification of top parameter for Metrics…
gucalder Mar 14, 2018
e0ff7d6
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Mar 15, 2018
5adef1e
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Jun 1, 2018
4c653be
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Jun 7, 2018
3b52ba4
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Jun 12, 2018
4afd2b6
Add two missing "by subscription" operations.
gucalder Jun 21, 2018
840fcf1
Remove "examples" nodes as requested since they are not used anymore.…
gucalder Jun 21, 2018
8e22a06
Add the serviceBusRuleId back into the DiagnosticSetting resource spec.
gucalder Jun 22, 2018
cc4855d
Fix some issues with the examples
gucalder Jun 23, 2018
3c3f34d
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Jun 23, 2018
03bdcd7
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Jun 25, 2018
9068f5e
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Aug 3, 2018
10e9834
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Aug 6, 2018
1ca7f22
[Monitor] Fix issue #3585: revert previous commit since it is a break…
gucalder Aug 6, 2018
0ab44af
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Aug 7, 2018
67216df
Merge branch 'master' of https://github.com/Azure/azure-rest-api-specs
gucalder Jun 24, 2019
e55d50c
Add unit "BitsPerSecond" to the metrics specs.
gucalder Jun 25, 2019
e14f5f8
Fixing workspace Id documentation
gucalder Jun 25, 2019
d177b96
Add the Log Analytics destination type flag to the Diagnostic Setting…
gucalder Jun 26, 2019
6a8e159
Fix a typo in a description
gucalder Jun 26, 2019
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 @@ -297,18 +297,22 @@
"items": {
"$ref": "#/definitions/MetricSettings"
},
"description": "the list of metric settings."
"description": "The list of metric settings."
},
"logs": {
"type": "array",
"items": {
"$ref": "#/definitions/LogSettings"
},
"description": "the list of logs settings."
"description": "The list of logs settings."
},
"workspaceId": {
"type": "string",
"description": "The workspace ID (resource ID of a Log Analytics workspace) for a Log Analytics workspace to which you would like to send Diagnostic Logs. Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2"
"description": "The full ARM resource ID of the Log Analytics workspace to which you would like to send Diagnostic Logs. Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2"
},
"logAnalyticsDestinationType": {
"type": "string",
"description": "A string indicating whether the export to Log Analytics should use the default destination type, i.e. AzureDiagnostics, or use a destination type constructed as follows: <normalized service identity>_<normalized category name>. Possible values are: Dedicated and null (null is default.)"
}
},
"description": "The diagnostic settings."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"days":0
}
}
]
],
"logAnalyticsDestinationType":"Dedicated"
}
}
},
Expand Down Expand Up @@ -63,7 +64,8 @@
"days":0
}
}
]
],
"logAnalyticsDestinationType":"Dedicated"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,11 @@
"Percent",
"MilliSeconds",
"ByteSeconds",
"Unspecified"
"Unspecified",
"Cores",
"MilliCores",
"NanoCores",
"BitsPerSecond"
],
"x-ms-enum": {
"name": "Unit",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,11 @@
"Percent",
"MilliSeconds",
"ByteSeconds",
"Unspecified"
"Unspecified",
"Cores",
"MilliCores",
"NanoCores",
"BitsPerSecond"
],
"x-ms-enum": {
"name": "Unit",
Expand Down