Skip to main content

Performance Dashboard

The Analytics section provides comprehensive metrics on your job search performance, helping you identify what’s working and where to improve. Access from the sidebar under Inventory → Analytics.
Analytics Dashboard

Core Metrics

ApplyTrack tracks four primary statistics displayed on your main dashboard:

Total Applied

142 applications tracked with month-over-month growth percentage

Interview Rate

12 interviews secured with conversion rate and weekly trends

Offer Rate

2.4% success rate compared to industry benchmark (1.8%)

Active Pipeline

18 opportunities currently in active discussion phase
// Real dashboard stats from source code (app/dashboard/page.tsx:19-24)
const stats = [
    { 
      label: 'Total Applied', 
      val: '142', 
      sub: '+12% month over month', 
      icon: Briefcase, 
      color: "text-blue-600", 
      bg: "bg-blue-50" 
    },
    { 
      label: 'Interviews', 
      val: '12', 
      sub: '3 scheduled this week', 
      icon: Clock, 
      color: "text-amber-500", 
      bg: "bg-amber-50" 
    },
    { 
      label: 'Offer Rate', 
      val: '2.4%', 
      sub: 'Higher than average (1.8%)', 
      icon: TrendingUp, 
      color: "text-emerald-500", 
      bg: "bg-emerald-50" 
    },
    { 
      label: 'Active Pipeline', 
      val: '18', 
      sub: 'Currently in discussion', 
      icon: Zap, 
      color: "text-indigo-600", 
      bg: "bg-indigo-50" 
    }
];

Network Health Metrics

The dashboard displays a Response Rate Efficiency widget showing your overall performance:
  • 82% efficiency: Current response rate from all applications
  • Visual progress bar: Quick at-a-glance performance indicator
  • Trend comparison: Week-over-week improvement tracking
  • Benchmark: Comparison to industry averages
// Network health display from source code (app/dashboard/page.tsx:192-203)
<div className="rounded-[2.5rem] border border-zinc-100 bg-zinc-50 p-8">
  <div>Network Health</div>
  <div className="space-y-4">
    <div className="h-1.5 w-full rounded-full bg-zinc-200 overflow-hidden">
      <div className="h-full w-[82%] bg-[#1C4ED8]" />
    </div>
    <div className="flex justify-between items-center">
      <span>Response Rate Efficiency</span>
      <span>82%</span>
    </div>
  </div>
</div>
82% is considered excellent. The average job seeker has a 50-60% response rate efficiency.

Advanced Analytics (Premium/Platinum)

Navigate to Inventory → Analytics in the sidebar to access detailed reporting:

Company Insights Analytics

See which companies respond most frequently:
CompanyApplicationsInterviewsResponse Rate
Anthropic3266.7%
Scale AI5240.0%
OpenAI4125.0%
Tesla8112.5%
Amazon1200.0%
Insight: You have a 3x higher response rate with AI startups (50-200 employees) compared to large enterprises.
Applications segmented by industry:
  • AI/ML: 45 applications, 12% response rate
  • Fintech: 28 applications, 7% response rate
  • Enterprise SaaS: 35 applications, 5% response rate
  • Startups: 34 applications, 11% response rate
Pie chart visualization shows where you’re applying most and which sectors respond best.
Response rates by company size:
  • 1-50 employees: 15% response rate (high competition, but faster)
  • 51-200 employees: 12% response rate (best balance)
  • 201-1000 employees: 6% response rate (structured hiring)
  • 1000+ employees: 3% response rate (slow, competitive)
The AI recommends focusing on 51-200 employee companies for your profile.

Email Performance Metrics (Premium/Platinum)

With email sync enabled, track communication patterns:

Email Threads

24 active threads being monitored for updates

Response Time

Average 4.2 hours to reply to recruiter emails

Follow-Up Success

24% increase in interviews after follow-up emails

Best Send Times

Tuesday 10am has highest recruiter response rate

Email Analytics Dashboard

Premium and Platinum users see:
  • Thread activity: Which conversations are most active
  • Sentiment trends: Positive, neutral, or negative tone in recruiter emails
  • Response velocity: How quickly recruiters reply to you (and vice versa)
  • Follow-up reminders: Automated suggestions for when to follow up
// Email sync status from dashboard header (components/dashboard/Header.tsx)
<div className="flex items-center gap-3">
  <div className="flex -space-x-2">
    {[1, 2, 3].map((i) => (
      <div key={i} className="h-8 w-8 rounded-full border-2 border-white bg-zinc-200" />
    ))}
  </div>
  <span>Syncing 24 Active threads</span>
</div>

Export & Reporting

Generate reports for personal tracking or career coaching:
Export all applications with fields:
  • Company name
  • Role title
  • Application date
  • Current status
  • Last update timestamp
  • Response time (if applicable)
  • Salary range
  • Notes
Perfect for importing into spreadsheets or sharing with career advisors.

Analytics Features by Plan

Limited analytics:
  • ✅ Basic stats (total applied, interviews)
  • ✅ Recent activity feed
  • ❌ No historical trends
  • ❌ No advanced filtering
  • ❌ No export features

Benchmark Comparisons

See how your performance compares to similar job seekers:

Your Performance vs. Peers

Your profile: Mid-level Software Engineer, 5 YOE, AI/ML focus
MetricYouAverageTop 10%
Response Rate8.5%6.2%12.8%
Applications/Week12815
Time-to-Interview11 days16 days7 days
Offer Rate2.4%1.8%4.2%
You’re performing above average in most categories. To reach top 10%, focus on increasing application volume while maintaining quality.

Next Steps

AI Insights

Use AI recommendations to improve your metrics

Dashboard Guide

Navigate all dashboard features and sections

Build docs developers (and LLMs) love