Introduction
Customer success is the discipline of ensuring customers achieve their desired outcomes while using your product. But how do you know if your customers are succeeding? The answer lies in measuring the right metrics.
For indie hackers and SaaS founders, understanding customer success metrics isn’t optionalโit’s essential for building a sustainable business. This guide covers the essential KPIs, how to measure them, and how to act on the data.
Why Customer Success Metrics Matter
The Economics of Customer Success
Acquiring a new customer costs 5-25ร more than retaining an existing one. Improving retention by just 5% can increase profits by 25-95%.
The Math:
| Improvement | Impact on 5-Year Revenue |
|---|---|
| 5% increase in retention | +25% revenue |
| 10% increase in retention | +55% revenue |
| 15% increase in retention | +90% revenue |
What Gets Measured Gets Managed
Metrics help you:
- Identify at-risk customers early
- Allocate customer success resources effectively
- Prove ROI to customers
- Predict future revenue
- Improve product decisions
Essential Customer Success Metrics
1. Retention Metrics
Customer Retention Rate (CRR)
The percentage of customers who stay over a period:
CRR = ((Customers at End - New Customers) / Customers at Start) ร 100
Example:
Start: 100 customers
New: 20 customers
Lost: 8 customers
End: 112 customers
CRR = ((112 - 20) / 100) ร 100 = 92%
Benchmarks:
| Stage | Good | Great |
|---|---|---|
| Bootstrapped | > 85% | > 92% |
| Growth | > 80% | > 88% |
| Enterprise | > 90% | > 95% |
Net Revenue Retention (NRR)
Measures revenue expansion from existing customers:
NRR = ((Starting MRR + Expansion - Contraction - Churn) / Starting MRR) ร 100
Example:
Starting MRR: $100,000
Expansion: $15,000
Contraction: $5,000
Churn: $8,000
NRR = (($100,000 + $15,000 - $5,000 - $8,000) / $100,000) ร 100 = 102%
Benchmarks:
| NRR | Interpretation |
|---|---|
| < 100% | Contraction exceeds expansion |
| 100-110% | Healthy, modest expansion |
| 110-125% | Strong expansion |
| > 125% | Excellent, high growth |
2. Engagement Metrics
Product Usage Rate
Percentage of users who actively use your product:
Daily Active Users (DAU) / Total Users ร 100 = DAU%
Weekly Active Users (WAU) / Total Users ร 100 = WAU%
Targets:
- DAU%: > 20% for consumer, > 40% for B2B
- WAU%: > 40% for consumer, > 70% for B2B
Feature Adoption Rate
How many users use key features:
Feature Adoption = Users Using Feature / Total Users ร 100
3. Health Score
A composite metric predicting customer success:
def calculate_health_score(customer):
score = 0
# Usage (40% of score)
if customer.dau > 0.5:
score += 40
elif customer.dau > 0.2:
score += 20
# Engagement (30% of score)
engagement = (customer.features_used / customer.total_features) * 30
score += engagement
# Support (20% of score)
if customer.support_tickets < 2:
score += 20
elif customer.support_tickets < 5:
score += 10
# Payments (10% of score)
if customer.payments_current:
score += 10
return score # 0-100
4. Time to Value (TTV)
How quickly customers achieve their first success:
TTV = Date of First Value - Date of Signup
Target: < 7 days
5. Customer Lifetime Value (LTV)
LTV = Average MRR ร Gross Margin ร Lifetime
Example:
Avg MRR: $100
Gross Margin: 80%
Lifetime: 20 months
LTV = $1,600
6. Customer Satisfaction
Net Promoter Score (NPS)
NPS = % Promoters (9-10) - % Detractors (0-6)
Target: > 50
Acting on Metrics
Trigger-Based Interventions
def handle_at_risk_customer(customer):
if customer.health_score < 40:
schedule_founder_call(customer)
offer_retention_bonus()
elif customer.health_score < 60:
send_success_manager_outreach()
offer_training_session()
Escalation Paths
| Health Score | Response Time | Owner | Action |
|---|---|---|---|
| 80-100 | 1 week | Automated | Continue normal |
| 60-79 | 48 hours | CSM | Check-in call |
| 40-59 | 24 hours | CSM + Manager | Intervention |
| 0-39 | Same day | Founder | Personal outreach |
Conclusion
Customer success metrics are your early warning system and growth engine. By measuring retention, health scores, engagement, and satisfaction, you can prevent churn and identify expansion opportunities.
Start with basics: track retention, measure health scores, monitor engagement. Build from there as you grow.
Resources
Related articles: SaaS Churn Reduction Strategies and SaaS Customer Onboarding Optimization
Comments