Debugging surveys
SkillDev toolsDiagnose PostHog Surveys configuration and responses across all five SDKs (web/posthog-js, iOS, Android, Flutter, React Native). Use whenever a Surveys support ticket is pasted ("survey not showing", "fewer responses than expected", "responses disappeared", "responses are incomplete", "only the first question was answered", "the user says they didn't mean to submit", "survey shows on wrong platform"), or when diagnosing why a survey does or doesn't display. Covers the eligibility pipeline, how a response actually gets stored (partial responses, branching, optional questions, auto-submit), cross-SDK feature parity, the known-cause catalog, read-only diagnostic queries, staff access, and the customer-reply style guide.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Debugging surveys skill
What this skill tells your AI
The instructions your AI receives, as published by posthog/skills in skills/omnibus/debugging-surveys/SKILL.md and read by ahel’s review.
PostHog Surveys is a no-code in-app form builder. A customer creates a survey in the PostHog UI; it must then be evaluated and rendered by whichever SDK their app runs. Most "survey not showing" tickets are eligibility problems, not rendering bugs — the SDK correctly decided the user is not eligible, and the job is to find which gate failed and why.
Access requirements
Use PostHog MCP tools or the survey API to inspect survey configuration and responses. A checkout of the PostHog repository is not required for these diagnostic steps.
Cross-SDK feature parity (check this FIRST)
A large class of tickets is "customer expects a feature their platform doesn't support."
Confirm the survey's lib / the customer's platform before anything else, then consult
this table. Verified against the SDK source — re-verify if it's been months, the gaps
get filled over time.
| Feature | Web (posthog-js) | iOS | Android | Flutter | React Native |
|---|---|---|---|---|---|
| Rendering | DOM + shadow root | Native SwiftUI (SurveysWindow) | No built-in UI — delegate only | Dart widgets (SurveyBottomSheet) | RN components (SurveyModal) |
| Event-based triggers | yes (since 1.137.0, 2024-06-05) | yes | yes | yes (native side) | yes |
| URL / screen targeting | yes | decoded but NOT evaluated (// TODO) | decoded but NOT evaluated | NOT evaluated (native gap) | explicitly excluded in filter |
| Feature-flag / cohort targeting | yes | yes | yes | yes (native side) | yes |
seenSurveyWaitPeriodInDays | yes | yes | yes | yes (native side) | stored but comparison commented out |
surveyPopupDelaySeconds | yes | not implemented | not implemented | not implemented | not implemented (TODO) |
enable_partial_responses | yes (≥ 1.240.0) | no | no | no | no |
skipSubmitButton (auto-submit) | yes (≥ 1.244.0) | no | no | no | no |
The last two rows are per the editor's own help text ("Doesn't work with the mobile SDKs for now" / "Not available for the mobile SDKs at the moment") rather than a per-SDK source audit.
Consequences worth memorizing:
surveyPopupDelaySecondsis web-only. If a mobile ticket blames the delay, it's a red herring.- Partial responses and auto-submit are web-only too. On mobile a survey always stores one response at the end, and a rating tap never self-submits. Don't carry a web diagnosis onto a mobile ticket.
- URL targeting is effectively web-only. Mobile SDKs decode the field but never enforce it; React Native filters those surveys out entirely. A mobile survey with a URL condition behaves as "no URL condition" (mobile/flutter) or "never shows" (RN).
- Android ships no survey UI. The app (or the Flutter plugin) must provide a
PostHogSurveysDelegate. "Survey never renders on Android" is often a missing delegate, not a PostHog bug. - Flutter is hybrid: triggering/eligibility runs in the native iOS/Android layer; rendering is Dart (
SurveyService.showSurvey→showModalBottomSheet). It does not "just call native" for UI. So a Flutter rendering bug lives in Dart; a Flutter eligibility bug lives in native. - React Native wait period is silently disabled (the check is commented out). Don't blame the wait period on RN.
For a deeper version-by-version capability audit, see the survey-sdk-audit skill if available.
How a survey actually gets shown (the web eligibility pipeline)
The web SDK is the most complex and the most common in tickets. Mental model from
packages/browser/src/extensions/surveys.tsx (checkSurveyEligibility) — checks run in
order, first failure wins:
isSurveyRunning— hasstart_date, noend_date.- survey
typeis in-app (Popover / Widget / API). linked_flag_keyenabled (if set).targeting_flag_keyenabled (if set) — customer-defined property targeting._internalFlagCheckSatisfied— the auto-generated internal targeting flag.hasWaitPeriodPassed—seenSurveyWaitPeriodInDaysvslocalStorage.lastSeenSurveyDate.getSurveySeen— per-survey seen flag.
Then in getActiveMatchingSurveys: URL/device/selector match, event/action trigger fired, and flag re-check.
Two non-obvious facts that drive real tickets:
- The server returns ALL non-archived surveys (
SurveyViewSet,products/surveys/backend/api/survey.py). It does not pre-filter by the internal targeting flag. All eligibility is client-side. So you cannot conclude "the backend excluded them" — the SDK did. - The wait period has TWO independent implementations.
canActivateRepeatedly(true whenschedule: 'always') short-circuits_internalFlagCheckSatisfied(step 5) — soalwaysbypasses the internal flag, including its$last_seen_survey_daterule. ButhasWaitPeriodPassed(step 6) readslocalStorage.lastSeenSurveyDatedirectly and is NOT bypassed bycanActivateRepeatedly. So aschedule: 'always'survey withseenSurveyWaitPeriodInDays: 30still enforces the 30-day wait via the localStorage path.lastSeenSurveyDateis updated whenever any survey is shown, regardless of completion. The same short-circuit also drops the internal flag's$survey_responded/<id> is_not_setrule, soschedule: 'always'lets one person respond repeatedly — checkuniq(distinct_id)againstcount()onsurvey sentbefore reading a response count as a respondent count.
How a response actually gets stored
Showing a survey and storing a response are separate pipelines. "Wrong data" tickets are about the second one, and its UI copy is genuinely misleading — reason from the code, not from the label.
"Response collection" maps to enable_partial_responses
The radio in frontend/src/scenes/surveys/SurveyResponsesCollection.tsx. "Any question: when at
least one question is answered…" is true; "Complete survey: the response is stored when all
questions are answered" is false.
true->sendSurveyEventfires on everyonNextButtonClick, so onesurvey sentper question answered, all sharing a$survey_submission_idwith$survey_completedrunningfalse ... true.false-> onesurvey sentevent, at the end of the path.
The setting controls capture, not response visibility. The results include every survey sent
and every survey dismissed or survey abandoned marked $survey_partially_completed = true.
buildMergedSubmissionsSubquery in frontend/src/scenes/surveys/utils.ts merges the latest
answer per question for each submission ID; events without an ID stay separate. Raw event
counts can exceed response counts. A completed event takes precedence over earlier partial
closures. Otherwise the outcome chip reads "Dismissed" when the latest response event is a
dismissal, and "Abandoned" for other unfinished submissions. "Abandoned" does not prove a
page-unload event or inactivity timeout occurred; a later completion updates the same row.
The defaults disagree by creation path: NEW_SURVEY sets true
(frontend/src/scenes/surveys/constants.tsx) but the Django model default is False
(products/surveys/backend/models.py). Read it, don't infer it from the creation date.
"All questions answered" does not mean what it says
isSurveyCompleted is getNextSurveyStep(...) === End — the respondent reached the end of their
own branching path. Nothing checks that every question holds a value, and two things then blank
out cells on a complete response: questions skipped by branching have no key at all
(onNextButtonClick prunes to visitedIndices before capture, so absent rather than "" or
null), and optional: true questions clicked past are stored as null
(submitDisabled is isNull(rating) && !question.optional).
So on a branching survey with optional tail questions, "only the first question was answered" is
the expected shape of a complete response. Blank ≠ unanswered. Check branching and optional
on every question before believing a bug.
Branching is in the API — read it, don't ask for it
It's questions[].branching, returned verbatim by both the management API and the SDK payload, in
four shapes: next_question, end (the confirmation message), specific_question + index, and
response_based + responseValues. Two traps: for rating questions responseValues is keyed
by bucket (negative/neutral/positive, or NPS detractors/passives/promoters), not by
value; and a bucket missing from responseValues silently falls through to
currentQuestionIndex + 1. So {negative: 3, neutral: 3} on a 5-scale is a complete, working
config that reads like an omission. Bucket boundaries per scale are in
references/reading-responses.md — don't guess them, scale 2 is
inverted.
The event vocabulary
survey shown (fired inside showSurvey() at the moment the popup becomes visible, i.e. after
surveyPopupDelaySeconds, so shown→sent latency is real time-on-popup), survey sent,
survey dismissed (explicit close), survey abandoned (handlePageUnload →
sendSurveyAbandonedEvent). $survey_partially_completed appears on dismissed and abandoned
only, never on sent. All of them carry sessionRecordingUrl, so a disputed submission can often
be watched instead of theorized about. A populated URL only proves a session id was captured,
not that a recording exists: replay is off by default, and the default cloud retention of 30 days is
well short of these queries' 180-day window. Open the link before offering it as evidence.
Read answers with getSurveyResponse, never a guessed key
getSurveyResponse(<index>, '<questionId>') is the HogQL helper the product itself reads
answers with (posthog/hogql/functions/survey.py, used across
products/surveys/backend/responses/). Prefer it over hand-writing a property key: response keys
come in three formats, and the helper coalesces the current UUID-keyed one
($survey_response_<questionId>) with the legacy index-keyed one, so it returns what the customer's
own results table shows. Pass true as a third argument for multiple-choice questions. A
hand-written properties.$survey_response_<uuid> misses legacy-keyed answers, and inside a
countIf that silently converts a real answer into "unanswered" and inflates the incomplete ratio.
Whichever you use, the index and id must come from questions[] in the survey JSON. Guessing
which UUID belongs to which question is the fastest route to a wrong conclusion: it reads one
question's answers under another's label, and the resulting ratio looks like a serious bug. If you
have no survey JSON, unroll $survey_questions, which carries the question text alongside the
answer. Formats and templates: references/reading-responses.md,
references/diagnostic-queries.md.
Sanity check the mapping before trusting the numbers: if a column you labeled as a single-choice question contains free text, the mapping is wrong.
Debugging workflow
-
Parse the ticket. Extract: org/project ID, instance (US vs EU — URLs differ), survey ID(s), the
lib(platform), the symptom in precise terms, and what the customer already tried. If the ticket is aged or has prior support replies, the config may have been edited mid-thread — treat earlier claims as stale and re-pull current state. -
Disambiguate "none" vs "fewer." Customers say "no responses" when they mean "fewer." Pull the
survey shownvssurvey sentcounts before/after the suspected change (see references/diagnostic-queries.md). If the response rate (sent/shown) is stable, the problem is upstream eligibility (fewer people shown), not rendering or submission. This single check redirects most investigations correctly.
2b. For a data-quality ticket, disambiguate "incomplete" vs "complete but sparse." Before anything else, check whether the blank cells are questions the respondent was never asked. Branching plus optional questions makes a complete response look abandoned, and this is the single most common reason a survey gets reported as broken when it isn't. See How a response actually gets stored.
-
Platform parity check. Confirm the
liband consult the parity table. Eliminate features the platform doesn't support before investigating them. -
Pull the survey definition.
GET /api/projects/<id>/surveys/<sid>/. Inspectconditions(events, url, seenSurveyWaitPeriodInDays, repeatedActivation),appearance.surveyPopupDelaySeconds,appearance.position,schedule,linked_flag,targeting_flag,internal_targeting_flag.filters,responses_limit,iteration_*,enable_partial_responses— and then go inside each question:id,type,scale,optional,skipSubmitButton,branching. The per-question fields answer most "wrong data" tickets on their own and are easy to miss, since a shallow look at top-level keys doesn't surface them. -
Pull the targeting-flag activity log for any "stopped showing" ticket. Cohort swaps and rollout changes are invisible in the current config but show up here:
GET /api/projects/<id>/activity_log/?scope=FeatureFlag&item_id=<flag_id>&limit=20. Also?scope=Survey&item_id=<sid>to see whether the survey itself was edited. -
Confirm with events. Use
$feature_flag_calledto see what the gating flag actually returned for affected users, and whether$groupsis set (see group-aggregation cause below). Usesurvey shownto see real reach vs the stats UI. -
Diagnose against the known-cause catalog, confirm with one targeted query, then write the reply.
Before you call it an SDK bug
These tickets attract a specific failure mode: the symptom looks impossible, so the SDK gets blamed and the customer is told to pause the survey, file a bug, and rebuild their questions. That advice is expensive and hard to walk back — restructuring destroys the comparability of every response already collected, and reordering questions risks the UUID problem below. Clear all four gates before writing "this is a bug":
- Read the survey JSON, per-question
branching,optional,skipSubmitButtonandscaleincluded. Most "impossible" behavior is configured behavior. - Reproduce it in Preview.
- Read the SDK source for the handler you're accusing. Grep the symbol; don't reason from what a setting is named.
enable_partial_responsesand "all questions answered" both mean something narrower than they sound. - Re-check your own query before trusting a shocking ratio. "89% of responses are incomplete" is more often a bad response-key mapping than a real defect.
If it survives all four it's a bug: name the file and handler, and file it upstream.
Known-cause catalog
Ordered roughly by how often they're the answer.
"Survey shows to fewer users than expected"
surveyPopupDelaySeconds+ URL re-check (web only). After the event fires and eligibility passes, the SDK waits N seconds, then re-checksdoesSurveyUrlMatchagainst the current URL before rendering (handlePopoverSurvey). If the user navigated during the delay, the survey is silently dropped — nosurvey shown. Common on navigation-heavy apps with a non-trivial delay. Fix: lower the delay to 0–2s.seenSurveyWaitPeriodInDays+ the customer's other surveys. Any survey shown to a user updateslastSeenSurveyDate; this survey is then blocked for the wait window. Completion status is irrelevant. Verify by checking whether the unshown cohort saw another survey recently — and confirm against a control group (do the shown users differ?). Fix: lower the wait period, or pause competing surveys.- Cohort composition changed. If the survey targets a cohort and someone edited the source dynamic cohort (e.g. added a behavioral filter), every static snapshot taken afterward inherits the narrower definition. Reach drops without any survey-side change. Find it in the flag activity log (cohort swap) and confirm cohort sizes via
static_cohort_people.
"Event-based survey never fires"
- Timing race at session start. Event captured before
/api/surveysreturns and the capture hook registers. Signature: event fires very early in session. Unavoidable client-side; mitigate by triggering on a slightly later event. - Group-aggregated
linked_flagwith no group context. Iflinked_flag(or targeting flag) hasaggregation_group_type_indexset, it evaluates against a group, not the person. Withoutposthog.group(<index>, <key>)set before the event fires, the flag returns false and the survey never shows. Signature:$feature_flag_calledreturnsfalsewith empty$groups, and the$feature/<key>property is missing from the trigger events. Fix: set group context in the SDK, or switch the survey to a person-level flag. - Customer wired the survey to the wrong flag. They create a flag with email/property targeting but the survey's
linked_flag/targeting_flagpoints at a different flag. Always confirm the actuallinked_flag.key/targeting_flag.keyfrom the API — don't trust the customer's description. - Behavioral cohort in a realtime flag. A cohort with
performed_event/behavioral filters can't be evaluated in realtime flag bytecode ("Unsupported behavioral filter for realtime bytecode",posthog/api/cohort.py). The cohort shows abytecode_error. Surveys/flags can't use it directly — the customer must make a static copy of the cohort and target that.
"Responses are incomplete — only the first question has a value"
Usually not a bug — see How a response actually gets stored. Work these four first; only then is the completion condition genuinely not being honored.
- Branching skipped the blank questions. Map it from
questions[].branchingyourself. Customers describe their intent, which may not be what's saved, and a rating bucket absent fromresponseValuesfalls through to the next index. - The blank questions are
optional: trueand the respondent clicked past them. A rating plus two skipped optional open-text questions is a complete submission with one value in it. - Partial responses is on and you're reading intermediate events in raw SQL that the UI collapses by
$survey_submission_id. - The response keys were guessed. Re-run keyed off
questions[].id.
"The respondent says they didn't mean to submit"
skipSubmitButton, shown in the editor as "Automatically submit on selection". When true no submit button renders at all (BottomSection.tsx) and one click both records the answer and advances —setRating(response)thenhandleSubmit(response)→onNextButtonClickin the same handler invocation, no debounce, no confirm. Rating and single-choice-without-open-choice only (canQuestionSkipSubmitButton); web-only. It is on by default in every survey template (constants.tsx) and in quick-create, so customers rarely know they enabled it.- It compounds with popup placement.
appearance.position: middle_center, a largemaxWidth, and a non-zerosurveyPopupDelaySecondsmean the popup materializes seconds after the trigger under a cursor that's still moving, and the next click lands on an answer. Consecutive auto-submitting questions let someone click through most of a survey without reading it. - Diagnose with shown→sent latency, then confirm from the replay (
sessionRecordingUrlonsurvey sent). A cluster of sub-10-second completions on a multi-question survey is the signature; genuine respondents take longer and leave text behind. Fix is to uncheck the setting — not to move the question, since the behavior follows the question wherever it sits.
"Responses show as zero in the UI but raw events exist"
- Max AI corrupted the survey definition. Max's
edit_surveytool (products/surveys/backend/max_tools.py) has two failure modes: (a) on reorder/edit it rebuilds each question fromQUESTION_TYPE_MAP(nps→scale 10,csat→scale 5, etc.), so picking the wrong semantic type silently changes a question's scale; (b) theidfield expects 1-indexed labels ("1","2") — passing a real UUID falls through and a fresh UUID is generated, so responses keyed by$survey_response_<old_uuid>no longer join to the question. Raw events are intact; only the definition is wrong. Fix: PATCH thequestionsarray back to the original UUIDs (recoverable from the response events) and restore the question type. Tell the customer to edit question text via the UI, and avoid asking Max to reorder questions on a survey with historical responses until the tool guards UUIDs.
"Cohort count shows 0 but the cohort is populated"
- Cosmetic UI bug, does not affect targeting. Confirm the real count via
static_cohort_people. NOTE: this is not a simple one-line bug — the normalinsert_cohort_from_querypath does recompute count viacount_cohort_members; thecount=0display only appears on certain failure paths. Do not promise a quick fix without reproducing the specific path.
General caution
- Aged tickets are dirty. Config may have been edited by the customer or a prior agent during troubleshooting. Pull activity logs; frame secondary findings as "while you're in there, double-check X" rather than "we found X is broken."
- The stats UI can undercount vs raw
survey shownevents. If the numbers don't reconcile, trust the raw events and flag the discrepancy as a separate follow-up. - Check both
$emailandemailon the person.person.properties.$emailis what the SDKs set; plenty of customers also set a bareemail. Querying one and concluding "this user was never identified" is a common miss — usecoalesce(person.properties.$email, person.properties.email).
Diagnostic queries
Read-only HogQL templates for the disambiguators and confirmations above live in
references/diagnostic-queries.md. Run them via the
PostHog MCP execute-sql against the customer's project.
Access for debugging
Only investigate a project tied to a genuine support request from that customer — the IDs should come from a real ticket, not from someone asking you to look up an org/survey they can't point to a request for. Staff access is broad; don't freelance across projects.
Prefer read-only paths in this order:
Shortened here. Read the whole file on GitHub.
Signals
- GitHub stars
- 62
- Forks
- 6
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
debugging-surveys- Source
- github.com/posthog/skills