TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How do you track user behavior/engagement inside of your SaaS app?

3 点作者 markfer超过 7 年前
I'm curious if anyone has a way to track the behaviors (time spent in app, pages they frequent, steps they're taking, etc) of applicants INSIDE of their SaaS app? I don't mean hotjar :)

2 条评论

troydavis超过 7 年前
A few popular choices for this: Mixpanel, Amplitude, Heap Analytics, KISSmetrics.<p>Some factors that may push you to one more than the other:<p>* What are the 3-5 things you’re currently most interested in concluding? Some products will make certain reports&#x2F;conclusions much easier than others.<p>* Will your events be generated exclusively from the server (major benefits: not subject to content blocking, can be augmented with other data only the server has), or only from clients(s), or both?<p>* Do you have one important ID (typically a user ID), or 2 (typically a customer&#x2F;company ID and a user ID), or many?<p>* Once you’re able to measure the basics, what do you want to do with it? Some examples: cohort analysis; contextual in-app messaging with a product like Intercom; exporting the data to a BI tool like Tableau
matchmike1313超过 7 年前
We use Amplitude right now and absolutely love it! We have a Rails App with a React front-end and we just made a helper to have Amplitude track all actions we deem &quot;important&quot; and spin up a job in our back-end job queue. We also use Google Analytics and Intercom for some higher level stuff.