fix(telemetry): enable GeoIP resolution for PostHog events

posthog-node SDK defaults disableGeoip to true, preventing country/city
data from being populated despite $ip being sent. Explicitly set
disableGeoip: false to enable geographic analytics.
This commit is contained in:
YeonGyu-Kim
2026-04-11 23:08:19 +09:00
parent 69f1c9ae35
commit 314e1a5efb
+1
View File
@@ -77,6 +77,7 @@ function createPostHogClient(
const configuredClient = new PostHog(getPostHogApiKey(), {
...options,
host: getPostHogHost(),
disableGeoip: false,
})
const sharedProperties = getSharedProperties(source)