Diagnosing endpoint performance
This skill walks through a specific endpoint that is slow, expensive, or unreliable, and produces
a concrete recommendation. It is the deep-dive counterpart to auditing-endpoints (which finds
candidates).
When to use this skill
- "This endpoint is slow / timing out"
- "Why is my endpoint hitting the cost cap?"
- "Should I materialise X?"
- An endpoint surfaced from
auditing-endpoints as a failing materialisation or expensive caller
- The user has a specific endpoint in mind and wants advice
If the question is project-wide ("what should I clean up?"), use auditing-endpoints first.
Available tools
| Tool |
Purpose |
endpoint-get |
Full endpoint config: query, current version, data_freshness_seconds, materialisation status |
endpoint-versions |
History of every version (query + materialisation state); which version is current |
endpoint-materialization-status |
Whether materialisation is eligible, current state, last run, last error |
endpoints-materialization-preview |
What the materialised query would look like, plus the rejection reason if ineligible |
endpoint-materialization-suggestion |
Server-side AI rewrite of an ineligible SQL query, validated against the live checks |
endpoint-materialization-conditions |
Source code of the live eligibility checks + the rewrite contract, for DIY rewriting |
endpoints-last-execution-times |
When was it last called (endpoint-level sanity-check that it is in active use) |
execute-sql |
Query query_log for endpoint-level call frequency and per-call duration/bytes |
The decision tree
When deciding what to recommend, walk these in order — the first one that applies is the cheapest
fix.
Step 1 — Is it cached at all?
Fetch the endpoint and look at data_freshness_seconds (it sets both the cache TTL and, when
materialised, the refresh cadence). If the user's traffic
calls the same parameters repeatedly within that window, every call after the first is a cache
hit and effectively free.
- TTL is at the default (24h / 86400s) and the data really doesn't need fresher than that →
done, no change needed.
- TTL is at the 900s floor (15 min) and the user is hitting the endpoint many times per minute →
bump the TTL. This is almost always the cheapest first move. (
data_freshness_seconds is an
enum: 900, 1800, 3600, 21600, 43200, 86400, 604800 — there is no sub-15-minute value.)
- TTL is at the floor because the data must be fresh (e.g. real-time dashboard) → cache won't
help, skip to step 2.
The shape of the variables matters here: if every call passes different user_id or date_from
values, the cache has many distinct keys and a higher TTL helps less. If almost every call uses
the same handful of parameter combinations, the cache helps a lot.
Step 2 — Should it be materialised?
Materialisation pre-computes the query into a saved view that's refreshed on a schedule. Reads
become near-instant — at the cost of staleness equal to the refresh interval, plus storage and
compute for the materialisation itself.
Call endpoints-materialization-preview. The response tells you:
- Eligible + clean transform → strong candidate. Recommend enabling, especially for
endpoints with predictable filter shapes (variables, breakdowns).
- Not eligible, with a rejection reason → cannot materialise. The reason often hints at the
next step (see step 3 — rewrite).
- Eligible but the transform is gnarly (lots of range pairs, complex aggregation
re-derivation) → materialisation will work but may not save much. Worth flagging before
flipping the switch.
When materialisation is enabled, callers must pass all materialised variables — calls without
them are rejected (security: prevents returning unfiltered data). Pair the recommendation with
a note about which variables become required.
Step 3 — Does the query need rewriting?
For a SQL endpoint that isn't eligible, try the fast path first: call
endpoint-materialization-suggestion. PostHog rewrites the query into a semantically equivalent
form and validates it against the live eligibility checks before returning it — ok means the
rewrite passes the checks plus variable- and output-column parity, but semantic equivalence is
the model's claim, not proven. Before applying, run the original and the rewrite with the same
representative variable values (via execute-sql or the endpoint playground) and compare the
results; only then apply it with endpoint-update (creates a new version), then confirm with
endpoint-materialization-status. cannot_fix means no equivalent rewrite exists (e.g. an
OR {variables.x} = 'all' optional-variable idiom) — say so rather than forcing a change in
behaviour. Requires the org's AI data processing approval; without it, or to reason about the
rewrite yourself, call endpoint-materialization-conditions — it returns the actual source code
of the checks this instance enforces plus the rewrite contract. Treat that as authoritative; the
bullet list below is a summary and may lag it.
Otherwise, the rejection reason from endpoints-materialization-preview is usually the lead:
- Cohort breakdown / compare mode rejection → regular property breakdowns materialise fine;
only cohort breakdowns and compare mode are blocked. Swap a cohort breakdown for a property
breakdown, or drop compare mode (expose the comparison window as a variable instead).
- JOINs combined with variables → a top-level
JOIN plus a variable filter is rejected for
materialisation, because applying the variable changes the joined row cardinality and silently
produces wrong results (e.g. LEFT JOIN non-matches lose the variable column). Restructure so the
variable filters a single table — push the filter into a subquery/CTE that's then joined, rather
than filtering across the join. This is the most common "looks fine but won't materialise" trap.
- "Missing variables" / unbounded scan → the query reads too much data without a filter.
Encourage adding a required time-window variable (e.g.
date_from, lookback_days).
- HogQL with
* / non-deterministic functions → narrow the columns selected, replace
now() / today() with a variable when possible.
Check endpoint-versions to see whether the query was recently changed. Often the regression
came from a specific commit and reverting that version is faster than rewriting.
Step 4 — Is the slow version even the one being called?
Only the latest version runs by default; older versions run only when a caller pins ?version=N.
So the version to tune is almost always the current one — unless a pinned older version is the
culprit. Call endpoint-versions and read each version's last_executed_at to see which versions
have been hit recently; a materialised version with a null or long-stale last_executed_at is a
candidate to unmaterialise or delete rather than tune (confirm first — that signal only counts
API-key runs and can be sparse).
For endpoint-level call frequency and per-call cost, query query_log with execute-sql — it
carries query_duration_ms, read_rows, and read_bytes, handy for confirming how heavy the
endpoint's calls actually are:
SELECT count() AS calls, max(query_start_time) AS last_called, avg(query_duration_ms) AS avg_ms
FROM query_log
WHERE name = '<endpoint_name>' AND endpoint LIKE '%/endpoints/%' AND is_personal_api_key_request
Workflow
- Identify the endpoint by name. If the user gave a URL, parse the name from
/api/projects/{team_id}/endpoints/{name}/run.
endpoint-get to fetch full config. Note: data_freshness_seconds, is_materialized,
current version, query kind.
endpoint-materialization-status to see materialisation health (failed? eligible?).
endpoint-versions to see the query history and which version is current (the one callers
hit unless they pin ?version=N).
- If the user gave specific symptoms ("times out", "memory limit", "very slow"), walk the
decision tree above. Otherwise, present the four checkpoints and ask which matches.
- End with a concrete recommendation — bump TTL, materialise, rewrite, or rollback — and
confirm before applying it.
Example interaction
User: "monthly_active_users is timing out for some callers"
Agent steps:
- endpoint-get monthly_active_users → HogQL endpoint, data_freshness_seconds=900,
is_materialized=false, current version v4
- endpoint-materialization-status monthly_active_users → not materialised; eligible: true
- endpoint-versions monthly_active_users
→ v4 is current; v1–v3 are prior query revisions (callers hit v4 unless pinned)
- endpoints-materialization-preview → eligible, clean transform with one range pair
- "Three things stand out:
1. Cache TTL is 900 seconds (the 15-min floor), but the data is
aggregating a month — that aggressive a refresh probably isn't
necessary. Bumping to 1 hour (3600s) would dramatically reduce
ClickHouse load.
2. It's eligible for materialisation with a clean transform. If
callers can tolerate 5-15 minute staleness, materialisation
would make reads near-instant.
3. v4 is the current version, so callers hit it by default — the
tuning target is clear.
Quickest win: bump TTL to 3600s. Bigger win: materialise.
Which trade-off matches your needs? If you need real-time freshness,
neither helps and we'd need to rewrite the query — likely narrowing
the aggregation window."
Important notes
- Cache is almost always the first fix. It's free, instantly reversible, and doesn't change
data semantics. Resist jumping to materialisation if a higher TTL would do.
- Materialisation has hidden costs. Storage of the materialised view, refresh compute, and
the requirement that callers pass all variables.
- Don't rewrite the query without the user. A query change creates a new version and may
break callers!!! Surface the suggested change, get sign-off, then apply.
- Three usage signals.
endpoint-get's last_executed_at is endpoint-level recency;
endpoint-versions gives each version's own last_executed_at; query_log (via execute-sql)
gives endpoint-level call frequency and per-call cost. All count only personal-API-key calls, and
per-version recency can be sparse — confirm with the user before calling a version dead.
- The "right" fix depends on the SLA, not the query. Always ask the user about acceptable
staleness before recommending materialisation. A 15-minute-stale materialised view is wrong
for a real-time dashboard, regardless of how cheap it'd be.
- Tell PostHog what's missing. If the diagnosis runs into a product limitation (an eligibility
rule, the TTL enum, required variables), nudge the team via
agent-feedback.
1---2name: diagnosing-endpoint-performance3description: Diagnose why a PostHog endpoint is slow or expensive and propose a concrete fix — bump the cache TTL, enable materialisation, restructure variables, or rewrite the query. Use when the user says "this endpoint is slow", "my endpoint times out", "we're hitting the cost cap on this one", or asks "should I materialise this?". Focuses on a single named endpoint, not a project-wide audit.4---56# Diagnosing endpoint performance78This skill walks through a specific endpoint that is slow, expensive, or unreliable, and produces9a concrete recommendation. It is the deep-dive counterpart to `auditing-endpoints` (which finds10candidates).1112## When to use this skill1314- "This endpoint is slow / timing out"15- "Why is my endpoint hitting the cost cap?"16- "Should I materialise X?"17- An endpoint surfaced from `auditing-endpoints` as a failing materialisation or expensive caller18- The user has a specific endpoint in mind and wants advice1920If the question is project-wide ("what should I clean up?"), use `auditing-endpoints` first.2122## Available tools2324| Tool | Purpose |25| ------------------------------------- | ---------------------------------------------------------------------------------------------- |26| `endpoint-get` | Full endpoint config: query, current version, `data_freshness_seconds`, materialisation status |27| `endpoint-versions` | History of every version (query + materialisation state); which version is current |28| `endpoint-materialization-status` | Whether materialisation is eligible, current state, last run, last error |29| `endpoints-materialization-preview` | What the materialised query would look like, plus the rejection reason if ineligible |30| `endpoint-materialization-suggestion` | Server-side AI rewrite of an ineligible SQL query, validated against the live checks |31| `endpoint-materialization-conditions` | Source code of the live eligibility checks + the rewrite contract, for DIY rewriting |32| `endpoints-last-execution-times` | When was it last called (endpoint-level sanity-check that it is in active use) |33| `execute-sql` | Query `query_log` for endpoint-level call frequency and per-call duration/bytes |3435## The decision tree3637When deciding what to recommend, walk these in order — the first one that applies is the cheapest38fix.3940### Step 1 — Is it cached at all?4142Fetch the endpoint and look at `data_freshness_seconds` (it sets both the cache TTL and, when43materialised, the refresh cadence). If the user's traffic44calls the same parameters repeatedly within that window, every call after the first is a cache45hit and effectively free.4647- TTL is at the default (24h / 86400s) and the data really doesn't need fresher than that →48 done, no change needed.49- TTL is at the 900s floor (15 min) and the user is hitting the endpoint many times per minute →50 bump the TTL. This is almost always the cheapest first move. (`data_freshness_seconds` is an51 enum: 900, 1800, 3600, 21600, 43200, 86400, 604800 — there is no sub-15-minute value.)52- TTL is at the floor _because the data must be fresh_ (e.g. real-time dashboard) → cache won't53 help, skip to step 2.5455The shape of the variables matters here: if every call passes different `user_id` or `date_from`56values, the cache has many distinct keys and a higher TTL helps less. If almost every call uses57the same handful of parameter combinations, the cache helps a lot.5859### Step 2 — Should it be materialised?6061Materialisation pre-computes the query into a saved view that's refreshed on a schedule. Reads62become near-instant — at the cost of staleness equal to the refresh interval, plus storage and63compute for the materialisation itself.6465Call `endpoints-materialization-preview`. The response tells you:6667- **Eligible + clean transform** → strong candidate. Recommend enabling, especially for68 endpoints with predictable filter shapes (variables, breakdowns).69- **Not eligible**, with a rejection reason → cannot materialise. The reason often hints at the70 next step (see step 3 — rewrite).71- **Eligible but the transform is gnarly** (lots of range pairs, complex aggregation72 re-derivation) → materialisation will work but may not save much. Worth flagging before73 flipping the switch.7475When materialisation is enabled, callers **must pass all materialised variables** — calls without76them are rejected (security: prevents returning unfiltered data). Pair the recommendation with77a note about which variables become required.7879### Step 3 — Does the query need rewriting?8081For a SQL endpoint that isn't eligible, try the fast path first: call82`endpoint-materialization-suggestion`. PostHog rewrites the query into a semantically equivalent83form and validates it against the live eligibility checks before returning it — `ok` means the84rewrite passes the checks plus variable- and output-column parity, but semantic equivalence is85the model's claim, not proven. Before applying, run the original and the rewrite with the same86representative variable values (via `execute-sql` or the endpoint playground) and compare the87results; only then apply it with `endpoint-update` (creates a new version), then confirm with88`endpoint-materialization-status`. `cannot_fix` means no equivalent rewrite exists (e.g. an89`OR {variables.x} = 'all'` optional-variable idiom) — say so rather than forcing a change in90behaviour. Requires the org's AI data processing approval; without it, or to reason about the91rewrite yourself, call `endpoint-materialization-conditions` — it returns the actual source code92of the checks this instance enforces plus the rewrite contract. Treat that as authoritative; the93bullet list below is a summary and may lag it.9495Otherwise, the rejection reason from `endpoints-materialization-preview` is usually the lead:9697- **Cohort breakdown / compare mode rejection** → regular property breakdowns materialise fine;98 only cohort breakdowns and compare mode are blocked. Swap a cohort breakdown for a property99 breakdown, or drop compare mode (expose the comparison window as a variable instead).100- **JOINs combined with variables** → a top-level `JOIN` plus a variable filter is rejected for101 materialisation, because applying the variable changes the joined row cardinality and silently102 produces wrong results (e.g. `LEFT JOIN` non-matches lose the variable column). Restructure so the103 variable filters a single table — push the filter into a subquery/CTE that's then joined, rather104 than filtering across the join. This is the most common "looks fine but won't materialise" trap.105- **"Missing variables" / unbounded scan** → the query reads too much data without a filter.106 Encourage adding a required time-window variable (e.g. `date_from`, `lookback_days`).107- **HogQL with `*` / non-deterministic functions** → narrow the columns selected, replace108 `now()` / `today()` with a variable when possible.109110Check `endpoint-versions` to see whether the query was recently changed. Often the regression111came from a specific commit and reverting that version is faster than rewriting.112113### Step 4 — Is the slow version even the one being called?114115Only the latest version runs by default; older versions run only when a caller pins `?version=N`.116So the version to tune is almost always the current one — unless a pinned older version is the117culprit. Call `endpoint-versions` and read each version's `last_executed_at` to see which versions118have been hit recently; a materialised version with a null or long-stale `last_executed_at` is a119candidate to unmaterialise or delete rather than tune (confirm first — that signal only counts120API-key runs and can be sparse).121122For endpoint-level call frequency and per-call cost, query `query_log` with `execute-sql` — it123carries `query_duration_ms`, `read_rows`, and `read_bytes`, handy for confirming how heavy the124endpoint's calls actually are:125126```sql127SELECT count() AS calls, max(query_start_time) AS last_called, avg(query_duration_ms) AS avg_ms128FROM query_log129WHERE name = '<endpoint_name>' AND endpoint LIKE '%/endpoints/%' AND is_personal_api_key_request130```131132## Workflow1331341. Identify the endpoint by name. If the user gave a URL, parse the name from135 `/api/projects/{team_id}/endpoints/{name}/run`.1362. `endpoint-get` to fetch full config. Note: `data_freshness_seconds`, `is_materialized`,137 current version, query kind.1383. `endpoint-materialization-status` to see materialisation health (failed? eligible?).1394. `endpoint-versions` to see the query history and which version is current (the one callers140 hit unless they pin `?version=N`).1415. If the user gave specific symptoms ("times out", "memory limit", "very slow"), walk the142 decision tree above. Otherwise, present the four checkpoints and ask which matches.1436. End with a concrete recommendation — bump TTL, materialise, rewrite, or rollback — and144 confirm before applying it.145146## Example interaction147148```text149User: "monthly_active_users is timing out for some callers"150151Agent steps:152- endpoint-get monthly_active_users → HogQL endpoint, data_freshness_seconds=900,153 is_materialized=false, current version v4154- endpoint-materialization-status monthly_active_users → not materialised; eligible: true155- endpoint-versions monthly_active_users156 → v4 is current; v1–v3 are prior query revisions (callers hit v4 unless pinned)157- endpoints-materialization-preview → eligible, clean transform with one range pair158159- "Three things stand out:160 1. Cache TTL is 900 seconds (the 15-min floor), but the data is161 aggregating a month — that aggressive a refresh probably isn't162 necessary. Bumping to 1 hour (3600s) would dramatically reduce163 ClickHouse load.164 2. It's eligible for materialisation with a clean transform. If165 callers can tolerate 5-15 minute staleness, materialisation166 would make reads near-instant.167 3. v4 is the current version, so callers hit it by default — the168 tuning target is clear.169170 Quickest win: bump TTL to 3600s. Bigger win: materialise.171172 Which trade-off matches your needs? If you need real-time freshness,173 neither helps and we'd need to rewrite the query — likely narrowing174 the aggregation window."175```176177## Important notes178179- **Cache is almost always the first fix.** It's free, instantly reversible, and doesn't change180 data semantics. Resist jumping to materialisation if a higher TTL would do.181- **Materialisation has hidden costs.** Storage of the materialised view, refresh compute, and182 the requirement that callers pass all variables.183- **Don't rewrite the query without the user.** A query change creates a new version and may184 break callers!!! Surface the suggested change, get sign-off, then apply.185- **Three usage signals.** `endpoint-get`'s `last_executed_at` is endpoint-level recency;186 `endpoint-versions` gives each version's own `last_executed_at`; `query_log` (via `execute-sql`)187 gives endpoint-level call frequency and per-call cost. All count only personal-API-key calls, and188 per-version recency can be sparse — confirm with the user before calling a version dead.189- **The "right" fix depends on the SLA, not the query.** Always ask the user about acceptable190 staleness before recommending materialisation. A 15-minute-stale materialised view is wrong191 for a real-time dashboard, regardless of how cheap it'd be.192- **Tell PostHog what's missing.** If the diagnosis runs into a product limitation (an eligibility193 rule, the TTL enum, required variables), nudge the team via `agent-feedback`.