Metric

What is source quality, and how do you measure it in Metabase?

Source quality is an HR and recruiting metric you can track in Metabase once ATS or HRIS data is synced into a database. Source quality measures whether a recruiting source produces qualified candidates and hires, not just volume. It keeps sourcing decisions tied to outcomes instead of top-of-funnel noise.

TL;DR — Define the event timestamps and denominator once, report counts next to rates, and segment only when sample size and privacy rules support it.

How is source quality defined?

  • Start with applications by source, then layer qualified, interview, offer, and accepted-hire outcomes.
  • Use rates and counts together: high conversion on tiny volume can mislead.
  • Compare sources within similar roles, locations, and seniority bands.
  • Use downstream retention or performance only when legally and ethically appropriate.

What data does it need?

  • Application source or source attribution field.
  • Application stage and outcome data, ideally with stage history.
  • Offer and accepted-hire outcomes tied to applications.
  • Role, department, seniority, location, and recruiter fields for segmentation.

SQL pattern

Source quality in MetabasePostgreSQL
SELECT
  COALESCE(source, 'Unknown') AS source,
  COUNT(*) AS applications,
  COUNT(*) FILTER (WHERE reached_interview) AS interviewed,
  COUNT(*) FILTER (WHERE offer_extended_at IS NOT NULL) AS offers,
  COUNT(*) FILTER (WHERE offer_accepted_at IS NOT NULL) AS accepted_hires,
  ROUND(100.0 * COUNT(*) FILTER (WHERE reached_interview) / NULLIF(COUNT(*), 0), 1)
    AS interview_rate_pct,
  ROUND(100.0 * COUNT(*) FILTER (WHERE offer_accepted_at IS NOT NULL) / NULLIF(COUNT(*), 0), 1)
    AS application_to_hire_pct
FROM modeled_applications
WHERE application_created_at >= CURRENT_DATE - INTERVAL '12 months'
GROUP BY 1
HAVING COUNT(*) >= 10
ORDER BY accepted_hires DESC, application_to_hire_pct DESC;

Pitfalls

Ranking by applicant volume.→ Volume without quality rewards noisy sources.
Ignoring attribution rules.→ Document first-touch, last-touch, agency, referral, and manual overrides.
Comparing all roles together.→ Executive, engineering, sales, and hourly roles have different source dynamics.

Where this metric applies

Dashboards

Integrations

Metrics

Analytics

FAQ

What is the best source quality metric?
Use a small scorecard: applications, qualified candidates, interviews, offers, accepted hires, and conversion rates. No single metric tells the full story.
Should source quality include retention?
It can, but only with careful privacy, legality, and role-mix controls.