-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Adding Detector Endpoints for Web Apps and App Service Environments #2764
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
010e425
Adding new detector endpoint
stevenernst131 fc77347
Adding richer descriptions
stevenernst131 4ea600f
Adding Examples
stevenernst131 1e66b0c
Remove value and make data set array
stevenernst131 5710401
Fixing Issues
stevenernst131 05d0cc0
Undoing Error Response Change
stevenernst131 9e43026
Removing Default Sections
stevenernst131 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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", | ||
|
||
| "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." | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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
DiagnosticDatatoSolution?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copy paste error, corrected.