Query - Resource Get Xms
使用資源 URI 執行分析查詢
針對資源內容中的數據執行分析查詢。
以下是 搭配分析查詢使用POST的範例。
GET https://api.loganalytics.io/v1/{resourceId}/query?disambiguation_dummy&query={query}
GET https://api.loganalytics.io/v1/{resourceId}/query?disambiguation_dummy&query={query}×pan={timespan}
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
resource
|
path | True |
string |
資源的標識碼。 |
query
|
query | True |
string |
分析查詢。 深入瞭解 Analytics 查詢語法 |
timespan
|
query |
string duration |
選擇性。 要查詢數據的時間範圍。 這是ISO8601時間週期值。 除了查詢表達式中指定的任何專案之外,還會套用這個時間範圍。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
正常。 API 呼叫成功,且 Analytics 查詢結果位於響應承載中 |
|
Other Status Codes |
錯誤回應物件。 |
安全性
oauth2
Azure Active Directory OAuth2 Flow
類型:
oauth2
Flow:
implicit
授權 URL:
https://login.microsoftonline.com/common/oauth2/authorize
範圍
名稱 | Description |
---|---|
user_impersonation | 模擬您的用戶帳戶 |
範例
simple-query
範例要求
GET https://api.loganalytics.io/v1//subscriptions/fffa080af-c2d8-40ad-9cce-e1a450bawb57/resourceGroups/test-resourcegroup/providers/Microsoft.Storage/storageAccounts/storageaccountname/query?disambiguation_dummy&query=StorageBlobLogs | summarize count() by OperationName | top 10 by count_ desc×pan=PT24H
範例回覆
x-ms-request-id: 58a37988-2c05-427a-891f-5e0e1266fcc5
x-ms-correlation-request-id: 58a37988-2c05-427a-891f-5e0e1266fcc5
{
"tables": [
{
"name": "PrimaryResult",
"columns": [
{
"name": "OperationName",
"type": "string"
},
{
"name": "count_",
"type": "long"
}
],
"rows": [
[
"operation1",
"10"
]
]
}
]
}
定義
名稱 | Description |
---|---|
column |
數據表數據行。 |
error |
錯誤詳細數據。 |
error |
錯誤的程式代碼和訊息。 |
error |
錯誤詳細數據。 |
logs |
這個數據行的數據類型。 |
query |
查詢回應。 |
Render |
JSON 格式的視覺效果數據。 |
Statistics |
以 JSON 格式表示的統計數據。 |
table |
查詢回應表。 |
column
數據表數據行。
名稱 | 類型 | Description |
---|---|---|
name |
string |
此資料行的名稱。 |
type |
這個數據行的數據類型。 |
errorDetail
錯誤詳細數據。
名稱 | 類型 | Description |
---|---|---|
additionalProperties |
object |
可在錯誤詳細數據物件上提供的其他屬性 |
code |
string |
錯誤的程序代碼。 |
message |
string |
人類可讀取的錯誤訊息。 |
resources |
string[] |
指出負責錯誤的資源。 |
target |
string |
指出要求中的哪個屬性負責錯誤。 |
value |
string |
指出 『target』 中的哪個值負責錯誤。 |
errorInfo
錯誤的程式代碼和訊息。
名稱 | 類型 | Description |
---|---|---|
additionalProperties |
object |
可在錯誤信息物件上提供的其他屬性 |
code |
string |
計算機可讀取的錯誤碼。 |
details |
錯誤詳細數據。 |
|
innererror |
錯誤的程式代碼和訊息。 |
|
message |
string |
人類可讀取的錯誤訊息。 |
errorResponse
錯誤詳細數據。
名稱 | 類型 | Description |
---|---|---|
error |
錯誤的程式代碼和訊息。 |
logsColumnType
這個數據行的數據類型。
名稱 | 類型 | Description |
---|---|---|
bool |
string |
|
datetime |
string |
|
decimal |
string |
|
dynamic |
string |
|
guid |
string |
|
int |
string |
|
long |
string |
|
real |
string |
|
string |
string |
|
timespan |
string |
queryResults
查詢回應。
名稱 | 類型 | Description |
---|---|---|
error |
錯誤的程式代碼和訊息。 |
|
render |
JSON 格式的視覺效果數據。 |
|
statistics |
以 JSON 格式表示的統計數據。 |
|
tables |
table[] |
數據表、資料列和數據列的清單。 |
Render
JSON 格式的視覺效果數據。
Statistics
以 JSON 格式表示的統計數據。
table
查詢回應表。
名稱 | 類型 | Description |
---|---|---|
columns |
column[] |
此資料表中的數據列清單。 |
name |
string |
資料表的名稱。 |
rows |
object[] |
此查詢所產生的數據列。 |