Migrate from Segment to PostHog analytics#1481
Draft
samseely wants to merge 2 commits into
Draft
Conversation
- Replace @segment/snippet package with posthog-js - Create new lib/posthog.ts module with PostHog analytics functions - Update pages/_app.tsx to initialize PostHog and track page views - Remove old lib/analytics.js Segment integration Environment variables: - NEXT_PUBLIC_POSTHOG_KEY: PostHog project API key - NEXT_PUBLIC_POSTHOG_HOST: PostHog API host (optional, defaults to us.i.posthog.com) Resolves KNO-13710 Co-authored-by: Sam Seely <samseely@gmail.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-authored-by: Sam Seely <samseely@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR migrates the docs site analytics from Segment to PostHog, as part of the Posthog project initiative.
Changes:
@segment/snippetpackage withposthog-jslib/posthog.tsmodule with PostHog analytics functions:init()- Initialize PostHog clienttrack()- Track custom eventspage()- Track page viewsidentify()- Identify usersreset()- Reset user identitypages/_app.tsxto initialize PostHog on mount and track page views on route changeslib/analytics.jsSegment integrationEnvironment variables required:
NEXT_PUBLIC_POSTHOG_KEY- PostHog project API key (required)NEXT_PUBLIC_POSTHOG_HOST- PostHog API host (optional, defaults tohttps://us.i.posthog.com)Todos
NEXT_PUBLIC_POSTHOG_KEYenvironment variable in production deploymentScreenshots
The docs site loads successfully with the new PostHog integration:
Docs site loaded successfully
Console output showing no errors (PostHog shows as undefined since no API key is set in development):
Console output showing no errors
To show artifacts inline, enable in settings.
Linear Issue: KNO-13710