Definition
An analytics call is the specific function invocation in your application code that sends an event somewhere it can be analysed. `posthog.capture('checkout_completed', { plan })` is an analytics call. So is `mixpanel.track(...)`, `analytics.identify(...)`, and `amplitude.track(...)`.
Why it matters
Every dashboard, funnel, and retention chart your team trusts is downstream of these calls. If a call disappears, gets renamed, or fires from a different code path, the dashboard keeps drawing - just from worse data.
