forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding metadata path to the Azure Monitor data plane swagger files (A…
…zure#8504) * AppInsights * OperationalInsights * typo * typos * Fix most validation issues * Fix prettier issues * Revert changes to existing operation IDs - ignore validation warnings
- Loading branch information
1 parent
6ca7cff
commit 36804be
Showing
12 changed files
with
4,352 additions
and
10 deletions.
There are no files selected for viewing
206 changes: 206 additions & 0 deletions
206
...ationinsights/data-plane/Microsoft.Insights/preview/2018-04-20/examples/metadata-get.json
This file contains 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 |
---|---|---|
@@ -0,0 +1,206 @@ | ||
{ | ||
"title": "Get Metadata", | ||
"description": "A metadata request that returns the app schema and other information", | ||
"parameters": { | ||
"subscriptionId": "72993b69-db12-44fc-9a66-9c2005c30513", | ||
"resourceGroupName": "Fabrikam", | ||
"applicationName": "FabrikamProd", | ||
"apiVersion": "2018-04-20" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"tables": [ | ||
{ | ||
"id": "t/requests", | ||
"name": "requests", | ||
"timespanColumn": "timestamp", | ||
"columns": [ | ||
{ | ||
"name": "timestamp", | ||
"type": "datetime" | ||
}, | ||
{ | ||
"name": "id", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "source", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "name", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "url", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "success", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "resultCode", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "duration", | ||
"type": "real" | ||
}, | ||
{ | ||
"name": "performanceBucket", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "itemType", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "customDimensions", | ||
"type": "dynamic", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "customMeasurements", | ||
"type": "dynamic" | ||
}, | ||
{ | ||
"name": "operation_Name", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "operation_Id", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "operation_ParentId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "operation_SyntheticSource", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "session_Id", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "user_Id", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "user_AuthenticatedId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "user_AccountId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "application_Version", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "client_Type", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "client_Model", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "client_OS", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "client_IP", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "client_City", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "client_StateOrProvince", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "client_CountryOrRegion", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "client_Browser", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "cloud_RoleName", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "cloud_RoleInstance", | ||
"type": "string", | ||
"isPreferredFacet": true | ||
}, | ||
{ | ||
"name": "appId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "appName", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "iKey", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "sdkVersion", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "itemId", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "itemCount", | ||
"type": "int" | ||
} | ||
] | ||
} | ||
], | ||
"tableGroups": [ | ||
{ | ||
"id": "ai/StandardSchema", | ||
"name": "StandardSchema", | ||
"source": "ai", | ||
"tables": [ | ||
"t/requests" | ||
] | ||
} | ||
], | ||
"applications": [ | ||
{ | ||
"id": "cf58dcfd-0683-487c-bc84-048789bca8e5", | ||
"name": "FabrikamProd", | ||
"resourceId": "/subscriptions/72993b69-db12-44fc-9a66-9c2005c30513/resourceGroups/Fabrikam/providers/microsoft.insights/components/FabrikamProd", | ||
"tables": [], | ||
"region": "southcentralus", | ||
"tableGroups": [ | ||
"ai/StandardSchema" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.