hosting
GET /v1/sites/{siteId}/apm
Ranked transactions, ranked hotspots and the hourly timeline for a site.
Uwierzytelnianie
Wyślij klucz API jako token bearer. Klucz musi posiadać uprawnienie sites.view; klucz bez niego jest odrzucany z kodem 403, a nie 404.
Ten punkt końcowy nie wymaga identyfikatora organizacji. Twój klucz już identyfikuje organizację, do której należy, a odpowiedź jest do niej ograniczona.
Wypróbuj
Zastąp wszystko w nawiasach ostrych własnymi wartościami, a zastępczy znacznik klucza kluczem ze swojego pulpitu nawigacyjnego.
curl -X GET https://api.zinndigital.com/v1/sites/{siteId}/apm \
-H "Authorization: Bearer zdk_live_…"Zalogowany? Konsola API w Twoim panelu uzupełnia rzeczywiste identyfikator organizacji oraz Twój własny klucz i wykonuje żądanie względem aktywnego API, dzięki czemu możesz zobaczyć rzeczywistą odpowiedź. Otwórz ten punkt końcowy w konsoli API
Szczegóły
Stored, aggregated PHP profiling: which pages cost the most server time, which plugin, PHP function or SQL query is eating it, and how the site's PHP execution time has moved hour by hour. ⭐ Read from rows, not from the machine. The sibling …/performance/slow-requests surface opens an SSH session to the worker box on every call; this one is a database query, which is why it can be rendered on a customer-facing tab without a §2.16 problem. ⛔ An empty payload is a 200 WITH A REASON. enrolment_state says which of four things happened — unknown (not collected yet), enrolled (collected, and the site was genuinely quiet), refused (the server would not start tracing), unsupported (hosting that cannot trace). A surface that cannot tell a quiet site from a feature that is switched off was the live state of the fleet on 2026-09-03: one of two boxes had zero sites enrolled and every screen said "nothing traced yet". Requires sites.view and the request_profiling entitlement, which is included on every product line. No visitor IP addresses appear in the response — the field does not exist at any layer beneath this one.
Parametry
| Nazwa | Typ | Wymagane | Co to jest |
|---|---|---|---|
siteId (path) | Uuid | Tak | Site ID (UUIDv7). |
hours (query) | integer | Nie | How far back to aggregate (1–2160, default 24). Clamped rather than refused: a junk value answers the question that was asked with the default period. |
limit (query) | integer | Nie | How many ranked rows per table (1–50, default 10). |
Odpowiedź
| Nazwa | Typ | Wymagane | Co to jest |
|---|---|---|---|
tracing | boolean | Tak | Whether the server is currently profiling this site. |
enrolment_state | string<unknown, enrolled, refused, unsupported> | Tak | Why there may be no data. unknown — not collected yet. enrolled — collected, and the site was genuinely quiet. refused — the server would not start profiling. unsupported… |
enrolment_detail | string | Tak | The server's own sentence when it refused; empty otherwise. |
last_collected_at | string | Tak | When we last harvested this site, or null if never. |
window_hours | integer | Tak | The period these aggregates cover. |
p95_duration_ms | integer | Tak | The 95th percentile of PHP time across EVERY request traced for this site in the window, in milliseconds. ⚠️ This is the customer's OWN traffic. It is a different quantity from… |
p95_sample_count | integer | Tak | How many requests p95_duration_ms was computed over. Shipped WITH it, always: a p95 over 30 requests and one over 30,000 are indistinguishable on screen otherwise (§2.44). |
transactions | SiteApmTransaction[] | Tak | Pages ranked by total PHP time, heaviest first. |
hotspots | SiteApmHotspot[] | Tak | Plugins, functions and queries ranked by total PHP time. |
timeline | SiteApmTimelinePoint[] | Tak | PHP execution time by hour, oldest first. |
Błędy, które ten punkt końcowy może zwrócić
401 · 403 · 404 · 422 · 429