> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bigdelta.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Track custom events

> Go beyond page views by tracking the actions that matter most in your product.

Go beyond page views by tracking the actions that matter most in your product — feature usage, key workflows, conversions.

**What you need to provide:**

* Event names for your core product actions (e.g., "Report Created", "Invoice Sent", "Project Published")

```javascript theme={null}
client.track({
  event_name: 'Report Created',
  properties: { report_type: 'revenue' }
});
```

**Resetting on logout**

After tracking a logout event, call `client.reset()` to unlink the current session from the identified user and account.

```javascript theme={null}
client.track({ event_name: 'User Logged Out' });
client.reset();
```

**What you unlock:**

* **[Product Stages Customisation](/guide/features/product-stages)** — Each account is automatically labeled as Engaged, Activated, Non-Activated, or Dormant based on their activity patterns. [Configure stages](https://eu.bigdelta.com/account-lifecycle)
* **[Feature Adoption activities](/guide/features/activities)** — Tried, Adopted, and Dropped activities are generated as accounts interact with your features. [Configure features](https://eu.bigdelta.com/features)
