Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -1681,9 +1681,13 @@
"description": "metadata for the detector"
},
"dataset": {
"$ref": "#/definitions/DiagnosticData",
"description": "Data Set"
"type": "array",
"description": "Data Set",
"items": {
"$ref": "#/definitions/Solution"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you change the item type from DiagnosticData to Solution?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy paste error, corrected.

}
}

},
"x-ms-client-flatten": true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,129 +9,127 @@
"responses": {
"200": {
"body": {
"value": {
"id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability",
"name": "runtimeavailability",
"location": "West US",
"properties": {
"metadata": {
"description": "This detector analyzes the requests to your application.",
"category": "Availability and Performance",
"subCategory": "Web App Down",
"supportTopicId": ""
},
"dataset": [
{
"table": {
"tableName": "Table_0",
"columns": [
{
"columnName": "PreciseTimeStamp",
"dataType": "DateTime",
"columnType": "datetime"
},
{
"columnName": "count_Http2xx",
"dataType": "Int64",
"columnType": "long"
},
{
"columnName": "count_Http3xx",
"dataType": "Int64",
"columnType": "long"
},
{
"columnName": "count_Http4xx",
"dataType": "Int64",
"columnType": "long"
},
{
"columnName": "count_Http5xx",
"dataType": "Int64",
"columnType": "long"
}
"id": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Build2015DemoRG/providers/Microsoft.Web/sites/BuggyBakery/detectors/runtimeavailability",
"name": "runtimeavailability",
"location": "West US",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"location" is not allowed for a proxy resource.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed

"properties": {
"metadata": {
"description": "This detector analyzes the requests to your application.",
"category": "Availability and Performance",
"subCategory": "Web App Down",
"supportTopicId": ""
},
"dataset": [
{
"table": {
"tableName": "Table_0",
"columns": [
{
"columnName": "PreciseTimeStamp",
"dataType": "DateTime",
"columnType": "datetime"
},
{
"columnName": "count_Http2xx",
"dataType": "Int64",
"columnType": "long"
},
{
"columnName": "count_Http3xx",
"dataType": "Int64",
"columnType": "long"
},
{
"columnName": "count_Http4xx",
"dataType": "Int64",
"columnType": "long"
},
{
"columnName": "count_Http5xx",
"dataType": "Int64",
"columnType": "long"
}
],
"rows": [
[
"2018-03-27T00:25:00Z",
"772705",
"0",
"0",
"0"
],
"rows": [
[
"2018-03-27T00:25:00Z",
"772705",
"0",
"0",
"0"
],
[
"2018-03-27T00:30:00Z",
"787069",
"0",
"0",
"0"
],
[
"2018-03-27T00:35:00Z",
"781627",
"0",
"1",
"0"
],
[
"2018-03-27T00:40:00Z",
"785017",
"0",
"0",
"0"
],
[
"2018-03-27T00:45:00Z",
"783518",
"0",
"0",
"0"
],
[
"2018-03-27T00:50:00Z",
"785783",
"0",
"0",
"0"
],
[
"2018-03-27T00:55:00Z",
"772874",
"0",
"0",
"0"
],
[
"2018-03-27T01:00:00Z",
"787162",
"0",
"0",
"0"
],
[
"2018-03-27T01:05:00Z",
"782036",
"0",
"0",
"0"
],
[
"2018-03-27T01:10:00Z",
"784642",
"0",
"0",
"0"
]
[
"2018-03-27T00:30:00Z",
"787069",
"0",
"0",
"0"
],
[
"2018-03-27T00:35:00Z",
"781627",
"0",
"1",
"0"
],
[
"2018-03-27T00:40:00Z",
"785017",
"0",
"0",
"0"
],
[
"2018-03-27T00:45:00Z",
"783518",
"0",
"0",
"0"
],
[
"2018-03-27T00:50:00Z",
"785783",
"0",
"0",
"0"
],
[
"2018-03-27T00:55:00Z",
"772874",
"0",
"0",
"0"
],
[
"2018-03-27T01:00:00Z",
"787162",
"0",
"0",
"0"
],
[
"2018-03-27T01:05:00Z",
"782036",
"0",
"0",
"0"
],
[
"2018-03-27T01:10:00Z",
"784642",
"0",
"0",
"0"
]
},
"renderingProperties": {
"renderingType": 2,
"title": "Requests by Status Code",
"description": "This detector breaks down the number of requests that your app received for each status code."
}
]
},
"renderingProperties": {
"renderingType": 2,
"title": "Requests by Status Code",
"description": "This detector breaks down the number of requests that your app received for each status code."
}
]
}
}
]
}
}
}
Expand Down
Loading