量度端點
可觀察性量度可為Adobe Experience Platform中的各種功能提供使用統計資料、歷史趨勢和績效指標的深入分析。 Observability Insights API中的/metrics
端點可讓您以程式設計方式擷取Platform中組織活動的量度資料。
快速入門
本指南中使用的API端點是Observability Insights API的一部分。 繼續之前,請先檢閱快速入門手冊,以取得相關檔案的連結、閱讀本檔案中範例API呼叫的手冊,以及有關成功呼叫任何Experience Platform API所需必要標題的重要資訊。
擷取可觀察性量度
您可以向/metrics
端點發出POST要求,指定您要在裝載中擷取的量度,以擷取量度資料。
API格式
POST /metrics
要求
curl -X POST \
https://platform.adobe.io/data/infrastructure/observability/insights/metrics \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'x-sandbox-id: {SANDBOX_ID}'
-d '{
"start": "2020-07-14T00:00:00.000Z",
"end": "2020-07-22T00:00:00.000Z",
"granularity": "day",
"metrics": [
{
"name": "timeseries.ingestion.dataset.recordsuccess.count",
"filters": [
{
"name": "dataSetId",
"value": "5edcfb2fbb642119194c7d94|5eddb21420f516191b7a8dad",
"groupBy": true
}
],
"aggregator": "sum"
},
{
"name": "timeseries.ingestion.dataset.dailysize",
"filters": [
{
"name": "dataSetId",
"value": "5eddb21420f516191b7a8dad",
"groupBy": false
}
],
"aggregator": "sum",
}
]
}'
start
end
granularity
DAY
會傳回start
與end
日期之間每天的量度,而值MONTH
會改為依月份群組量度結果。metrics
name
filters
此選用欄位可讓您依據特定資料集篩選量度。 欄位是一個物件陣列(每個濾鏡各一個),每個物件包含下列屬性:
name
:篩選量度的實體型別。 目前僅支援dataSets
。value
:一或多個資料集的識別碼。 多個資料集ID可以單一字串形式提供,每個ID都以垂直長條字元(|
)分隔。groupBy
:設定為true時,表示對應的value
代表多個資料集,這些資料集的量度結果應分別傳回。 如果設為false,這些資料集的量度結果會分組在一起。
aggregator
回應
成功的回應會傳回要求中所指定量度和篩選器的結果資料點。
{
"metricResponses": [
{
"metric": "timeseries.ingestion.dataset.recordsuccess.count",
"filters": [
{
"name": "dataSetId",
"value": "5edcfb2fbb642119194c7d94|5eddb21420f516191b7a8dad",
"groupBy": true
}
],
"datapoints": [
{
"groupBy": {
"dataSetId": "5edcfb2fbb642119194c7d94"
},
"dps": {
"2020-07-14T00:00:00Z": 44.0,
"2020-07-15T00:00:00Z": 46.0,
"2020-07-16T00:00:00Z": 36.0,
"2020-07-17T00:00:00Z": 50.0,
"2020-07-18T00:00:00Z": 38.0,
"2020-07-19T00:00:00Z": 40.0,
"2020-07-20T00:00:00Z": 42.0,
"2020-07-21T00:00:00Z": 42.0,
"2020-07-22T00:00:00Z": 50.0
}
},
{
"groupBy": {
"dataSetId": "5eddb21420f516191b7a8dad"
},
"dps": {
"2020-07-14T00:00:00Z": 44.0,
"2020-07-15T00:00:00Z": 46.0,
"2020-07-16T00:00:00Z": 36.0,
"2020-07-17T00:00:00Z": 50.0,
"2020-07-18T00:00:00Z": 38.0,
"2020-07-19T00:00:00Z": 40.0,
"2020-07-20T00:00:00Z": 42.0,
"2020-07-21T00:00:00Z": 42.0,
"2020-07-22T00:00:00Z": 50.0
}
}
],
"granularity": "DAY"
},
{
"metric": "timeseries.ingestion.dataset.dailysize",
"filters": [
{
"name": "dataSetId",
"value": "5eddb21420f516191b7a8dad",
"groupBy": false
}
],
"datapoints": [
{
"groupBy": {},
"dps": {
"2020-07-14T00:00:00Z": 38455.0,
"2020-07-15T00:00:00Z": 40213.0,
"2020-07-16T00:00:00Z": 31476.0,
"2020-07-17T00:00:00Z": 43705.0,
"2020-07-18T00:00:00Z": 33227.0,
"2020-07-19T00:00:00Z": 34977.0,
"2020-07-20T00:00:00Z": 36735.0,
"2020-07-21T00:00:00Z": 36737.0,
"2020-07-22T00:00:00Z": 43715.0
}
}
],
"granularity": "DAY"
}
]
}
metricResponses
metric
filters
datapoints
groupBy
filter
屬性中指定了多個資料集,且請求中的groupBy
選項設定為true,則此物件將包含對應dps
屬性套用的資料集識別碼。如果此物件在回應中顯示為空白,則對應的
dps
屬性會套用至filters
陣列中提供的所有資料集(如果未提供篩選器,則套用至Platform中的所有資料集)。dps
granularity
值。附錄
以下區段包含使用/metrics
端點的其他資訊。
可用量度 available-metrics
下表列出Observability Insights公開的所有度量,並依Platform服務劃分。 每個量度都包含說明和接受的ID查詢引數。
Data Ingestion ingestion
下表概述Adobe Experience Platform Data Ingestion的量度。 bold 中的量度為串流擷取量度。
Identity Service identity
下表概述Adobe Experience Platform Identity Service的量度。
Real-Time Customer Profile profile
下表概述Real-Time Customer Profile的量度。
錯誤訊息
在某些條件下,來自/metrics
端點的回應可能會傳回錯誤訊息。 這些錯誤訊息會以下列格式傳回:
{
"type": "http://ns.adobe.com/aep/errors/INSGHT-1000-400",
"title": "Bad Request - Start date cannot be after end date.",
"status": 400,
"report": {
"tenantInfo": {
"sandboxName": "prod",
"sandboxId": "49f58060-5d47-34rd-aawf-a5384333ff12",
"imsOrgId": "{ORG_ID}"
},
"additionalContext": null
},
"error-chain": [
{
"serviceId": "INSGHT",
"errorCode": "INSGHT-1000-400",
"invokingServiceId": "INSGHT",
"unixTimeStampMs": 1602095177129
}
]
}
title
report
下表列出API可傳回的不同錯誤代碼:
INSGHT-1000-400
請求承載發生問題。 請確定您完全符合以上所示的裝載格式🔗。 觸發此錯誤的可能原因有:
- 遺失必要欄位,例如
aggregator
- 無效的量度
- 請求包含無效彙總
- 開始日期發生在結束日期之後
INSGHT-1001-400
INSGHT-1001-500
INSGHT-1002-500
INSGHT-1003-401
x-sandbox-name
標頭中提供的沙箱名稱代表貴組織啟用的有效沙箱。