posthog/ai-plugin

exploring-endpoint-execution-logs

Explore and diagnose a PostHog endpoint's execution logs — error messages, failed runs, cache misses, slow runs, or unexpected row counts during endpoint invocations.

查看源码
仓库原始内容

按源仓库内容呈现,保留标题、案例、代码、表格、链接以及原文引用的演示图片。

Exploring endpoint execution logs

Every endpoint run emits one execution log entry to PostHog's log_entries store. This skill reads those entries for a specific endpoint to answer "what happened when it ran?". It is the log-level counterpart to diagnosing-endpoint-performance (which reasons about cache/materialisation strategy from config and query_log).

When to use this skill

  • "Why is my endpoint failing / erroring?"
  • "Show me the logs / recent runs for endpoint X"
  • "Did the last run hit cache? How many rows did it return?"
  • "What happened the last time endpoint Y ran?"

If the question is "this endpoint is slow, what should I change?", use diagnosing-endpoint-performance. If it's project-wide ("what can I clean up?"), use auditing-endpoints.

What an execution log entry looks like

Each run produces exactly one entry. The level is INFO on success and ERROR on failure, and the message carries the extra data as searchable key=value tokens:

text
Endpoint executed · path=materialized cache=hit duration_ms=142 rows=1024 version=3
Endpoint execution failed · path=inline error=ResolutionError version=3

Token meanings:

TokenValuesMeaning
pathmaterialized / inline / ducklake / ducklake_fallbackWhich execution path ran
cachehit / missWhether the query result cache was used (omitted for ducklake)
duration_msintegerWall-clock execution time
rowsintegerNumber of result rows returned
versionintegerWhich endpoint version ran
errore.g. ResolutionError, HogVMExceptionError class / HogQL code name (failures only)

Each run gets a distinct instance_id, so logs group one-per-execution in the viewer.

Available tools

ToolPurpose
endpoint-logsPrimary. Execution log entries for one endpoint by name. Filter by level, search, time range, instance_id; limit up to 500.
endpoint-getEndpoint config for context (current version, materialisation, query kind)
execute-sqlFallback / aggregation directly against log_entries (log_source='endpoints')

Filtering

endpoint-logs exposes the standard log filters:

  • level — comma-separated, e.g. ERROR to see only failed runs, or INFO,ERROR for all.
  • search — case-insensitive substring over the message. Because the extra data is in

key=value tokens, you can search cache=miss, path=inline, error=ResolutionError, or a specific version=3.

  • after / before — ISO timestamps to bound the time range.
  • instance_id — pin a single execution.
  • limit — 1–500 (default 50).

Workflow

  1. Identify the endpoint by name. If given a URL, parse it from

/api/projects/{team_id}/endpoints/{name}/run.

  1. Start broad: endpoint-logs for the endpoint with a recent time range. Skim levels and tokens.
  2. Narrow to the symptom:
  • Failures → level=ERROR; read the error= token and path= to see where it broke.
  • Cache concerns → search=cache=miss to see how often runs miss cache.
  • Wrong results → compare rows= across runs, and version= to spot a regression after a

version bump.

  1. For counts/trends across many runs (e.g. error rate over a week), drop to execute-sql against

log_entries:

sql
   SELECT toDate(timestamp) AS day, upper(level) AS level, count() AS runs
   FROM log_entries
   WHERE log_source = 'endpoints' AND log_source_id = '<endpoint_uuid>'
   GROUP BY day, level ORDER BY day DESC

Get the endpoint UUID from endpoint-get (the log_source_id is the endpoint id, not its name).

  1. Summarize: what's failing, since when, on which version/path, and whether it's a config issue

(hand off to diagnosing-endpoint-performance) or a query bug.

Example interaction

text
User: "weekly_signups started erroring this morning"

Agent steps:
- endpoint-logs weekly_signups, level=ERROR, after=<this morning>
  → several "Endpoint execution failed · path=inline error=ResolutionError version=5"
- endpoint-get weekly_signups → current version is v5 (bumped today)
- endpoint-logs weekly_signups, level=INFO, before=<this morning>
  → prior runs: "path=inline cache=hit ... version=4" succeeded

- "v5 (created this morning) is failing with a ResolutionError on the inline path — it can't
   resolve a table or field reference. v4 ran fine. This looks like a bad query in the new
   version. Want me to pull the v5 query (endpoint-versions) so we can fix it, or roll back to v4?"

Important notes

  • One entry per run. Don't expect step-by-step traces — endpoints log a single completion line.

The detail lives in the tokens, not in multiple lines.

  • `log_source_id` is the endpoint UUID, not the name. For execute-sql, fetch it via

endpoint-get first.

  • Logs are retained ~90 days (the log_entries TTL). Older runs won't appear.
  • Execution logs ≠ query performance. endpoint-logs tells you what happened and why a run

failed; for "should I materialise / bump cache TTL?" use diagnosing-endpoint-performance, which reasons over config and query_log cost metrics.

  • Best-effort emission. A log line is emitted after each run but never blocks it — if a run

succeeded for the caller but no log shows, the emit was dropped, not the query.

来自同一仓库

更多 Skills

全部 Skills
posthog
官方

assessing-heatmaps

Assesses what a page's heatmap is telling you and recommends concrete changes. Pulls click / rageclick / scroll-depth data for a URL, names the hot elements by cross-referencing autocapture events on the same page, and can create a saved heatmap the user opens in PostHog, then summarizes the behavior and proposes improvements.\nTRIGGER when: user asks what a heatmap shows, why people aren't clicking something, where users rage-click, how far they scroll, what to change on a page based on heatmap/click data, or to 'analyze/assess/review the heatmap' for a URL.\nDO NOT TRIGGER when: the user only wants to create a saved heatmap screenshot with no analysis (use heatmaps-saved-create directly), or is asking about session replay in general (use investigating-replay).

安装量
1
GitHub Stars
80
最近更新
9月4日
posthog
官方

auditing-endpoints

Audit every endpoint in a PostHog project for staleness, failed materialisations, and unused materialised versions. Use when the user asks "what endpoints can I clean up?", "are any of my endpoints broken?", "which materialised versions are still being called?", or wants a one-shot cleanup pass over the Endpoints product. Produces a prioritised report grouped by issue type, with recommended actions but does not modify anything without explicit confirmation.

安装量
1
GitHub Stars
80
最近更新
9月4日
posthog
官方

auditing-experiments-flags

Audit PostHog experiments and feature flags for configuration issues, staleness, and best-practice violations. Read when the user asks to audit, health-check, or review experiments or feature flags, check flag hygiene, or verify experiment setup.

安装量
1
GitHub Stars
80
最近更新
9月4日
posthog
官方

authoring-data-quality-checks

Adds and runs data quality checks (dbt-test style assertions) on a project's warehouse tables and saved-query views: not-null, uniqueness, accepted values, referential integrity, row-count bounds, freshness, and custom HogQL. Use when asked to test a model, validate a view, check for nulls or duplicates, add data quality checks, find out why a number looks wrong, or judge whether a warehouse table is trustworthy before using it in an analysis. To describe what data means (metrics, certifications, joins), see setting-up-data-catalog instead. Trigger terms: data quality, data test, dbt test, not null check, uniqueness check, freshness check, referential integrity, row count check, validate model, is this table trustworthy.

安装量
1
GitHub Stars
80
最近更新
9月4日