你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Query Statistics - List By Query
Lists查询的统计信息。
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/topQueries/{queryId}/statistics?api-version=2014-04-01
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
database
|
path | True |
string |
数据库的名称。 |
query
|
path | True |
string |
查询的 ID |
resource
|
path | True |
string |
包含该资源的资源组名称。 可以从 Azure 资源管理器 API 或门户获取此值。 |
server
|
path | True |
string |
服务器的名称。 |
subscription
|
path | True |
string |
用于标识 Azure 订阅的订阅 ID。 |
api-version
|
query | True |
string |
要用于请求的 API 版本。 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
确定 |
示例
Get a query
示例请求
GET https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlcrudtest/databases/db1/topQueries/19/statistics?api-version=2014-04-01
示例响应
{
"value": [
{
"queryId": "19",
"intervals": [
{
"intervalStartTime": "2017-07-11T16:00:00",
"executionCount": 12,
"metrics": [
{
"name": "cpu",
"displayName": "Cpu",
"unit": "percentage",
"value": 0.000763888888888889
},
{
"name": "io",
"displayName": "Physical Io Reads",
"unit": "percentage",
"value": 0
},
{
"name": "logIo",
"displayName": "Log Writes",
"unit": "percentage",
"value": 0
},
{
"name": "memory",
"displayName": "Memory consumption",
"unit": "KB",
"value": 0
},
{
"name": "duration",
"displayName": "Query duration",
"unit": "microseconds",
"value": 3308
}
]
}
]
}
]
}
定义
名称 | 说明 |
---|---|
Query |
数据库查询。 |
Query |
数据库查询。 |
Query |
度量单位 |
Query |
数据库查询。 |
Query |
表示对 get 查询请求的响应。 |
QueryInterval
数据库查询。
名称 | 类型 | 说明 |
---|---|---|
executionCount |
number |
在此时间间隔内执行查询的次数。 |
intervalStartTime |
string |
测量间隔的开始时间 (ISO8601 格式) 。 |
metrics |
此间隔期间的查询指标列表。 |
QueryMetric
数据库查询。
名称 | 类型 | 说明 |
---|---|---|
displayName |
string |
用户界面中显示的指标的名称 |
name |
string |
指标的名称 |
unit |
度量单位 |
|
value |
number |
测量值 |
QueryMetricUnit
度量单位
名称 | 类型 | 说明 |
---|---|---|
KB |
string |
|
microseconds |
string |
|
percentage |
string |
QueryStatistic
数据库查询。
名称 | 类型 | 说明 |
---|---|---|
intervals |
查询间隔的列表。 |
|
queryId |
string |
查询的 ID |
QueryStatisticListResult
表示对 get 查询请求的响应。
名称 | 类型 | 说明 |
---|---|---|
value |
查询。 |