Add ping endpoint and latency tracking to PostHog#16
Merged
iAmVishal16 merged 6 commits intomainfrom Nov 26, 2025
Merged
Conversation
- Add PING endpoint to SafeEatsEndpoint enum - Create NetworkInfo utility for network type, cellular generation, and carrier detection - Create PingRepository for measuring backend latency - Integrate ping call after successful login (once per app lifecycle) - Add trackEdgePing() to Analytics for PostHog logging - Add comprehensive logging throughout ping flow - Log latency and metadata (app_version, device_model, network_type, cellular_generation, carrier) to PostHog The ping endpoint is called non-blocking after device registration completes. All metadata is collected and logged to PostHog with event name 'edge_ping'.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
app/src/main/java/lc/fungee/IngrediCheck/viewmodel/LoginAuthViewModel.kt
Outdated
Show resolved
Hide resolved
- Remove detailed debug logging from NetworkInfo, PingRepository, LoginAuthViewModel, and Analytics - Keep essential error logging for debugging failures - Clean up code for production readiness
- Replace SharedPreferences persistence with in-memory @volatile flag - Ping flag now resets on app restart (true once-per-lifecycle behavior) - Remove KEY_PING_CALLED from AppConstants (no longer needed) - Remove ping flag preservation logic from signOut methods Previously, the ping flag persisted across app restarts via SharedPreferences, causing ping to be skipped on every subsequent app launch after the first. Now the flag is stored in-memory only and resets when the app process restarts.
iAmVishal16
approved these changes
Nov 26, 2025
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.
Summary
This PR adds a ping endpoint call after login to measure backend latency and log it to PostHog with network metadata.
Changes
Testing
Metadata Example
From test run:
Matches iOS implementation behavior.