hosting

GET /v1/sites/{siteId}/apm/traces/{traceId}

Show where one kept request's milliseconds went.

Всички крайни точки в hosting

Всички документи за разработчици

Упълномощаване

Изпратете API ключ като токен за носене. Ключът трябва да притежава разрешението sites.view; ключ без него се отхвърля с 403, а не с 404.

Този ендпойнт не изисква идентификатор на организация. Вашият ключ вече идентифицира организацията, към която принадлежи, и отговорът е ограничен до нея.

Опитайте

Заменете всичко в квадратни скоби със собствени стойности, а ключовия заместващ символ – с ключ от вашето табло за управление.

curl -X GET https://api.zinndigital.com/v1/sites/{siteId}/apm/traces/{traceId} \
  -H "Authorization: Bearer zdk_live_…"

Влязохте ли в профила си? API конзолата във вашето табло за управление попълва действителното идентификационно число на вашата организация и вашия собствен ключ и изпълнява заявката спрямо реалното API, за да можете да видите действителния отговор. Отворете този крайpoint в API конзолата

Детайли

The function-level breakdown for one stored request: which WordPress plugin, PHP extension, PHP function or SQL query consumed the time, heaviest first, with the call site relative to the site's own document root. ⭐ SQL literals arrive already redacted by the vendor (WHERE autoload IN ('xxx')) and are neither restored nor re-redacted here. That redaction is why a slow query can be shown to a customer at all. ⛔ A trace past retention answers 404 rather than 410: the customer's next action is identical, and a distinct code would be an oracle for which trace ids ever existed. Requires sites.view and the request_profiling entitlement. A trace belonging to another site answers 404, never another tenant's data.

Параметри

ИмеТипЗадължителноКакво представлява
siteId (path)UuidДаSite ID (UUIDv7).
traceId (path)stringДаOne of our own trace ids, from id on the list row. ⭐ A UUID, unlike the sibling live surface's vendor task id: this is a primary key we minted, so a non-UUID really is…

Отговор

ИмеТипЗадължителноКакво представлява
idstringДа
transactionstringДа
methodstringДа
pathstringДаThe path as traced, before normalisation — so a developer can reproduce the exact request, which the grouped transaction label deliberately cannot express.
duration_msintegerДа
throttled_msintegerДа
io_throttled_msintegerДа
hit_limitsbooleanДа
has_errorbooleanДа
error_textstringДа
cache_miss_reasonsstring[]ДаWhy this request bypassed the page cache; empty when it was cacheable.
started_atstringДа
costsSiteApmTraceCost[]Да

Грешки, които този крайpoint може да върне

401 · 403 · 404 · 422 · 429