TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Remote log service for react-native or mobile app

1 pointsby amir734jjover 2 years ago
I am working on a mobile app and I am wondering is there a logging service that can accept http or socket call/connection so a mobile app or a web app can send its error logs to. Thereafter it would send the logs to elastic or some other log database. I see there are "logging service" for React to record crash logs. But I am logging for remote logging service not crash logging service.

1 comment

brylieover 2 years ago
Is your frontend client connecting to a backend service that you control&#x2F;develop?<p>If so, your existing backend service can provide a REST endpoint to which your client could send structured log data. The backend service likely uses structured logging internally, so the &#x2F;log POST endpoint could be a thin wrapper around whatever logging method your backend uses internally.