Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(marking hub, ads): add metric desc table #581

Merged
merged 8 commits into from
Mar 31, 2025
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions content/collections/analytics/en/web-analytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,21 @@
- View the data table fields by channel or campaign.
- Display total conversions or conversion rate.

### Ads metrics definitions

Here are the default Ads metrics available in Out-of-the-box Marketing Analytics, along with the high-level formulas and definitions:

| **Metric** | **Formula** | **Definition** |
|----------------|---------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **Impressions**| `PROPSUM(ad_metrics.impressions)` | Total number of times your ad is served (shown) to users. **Derived from Daily Ad Metrics**. |

Check warning on line 80 in content/collections/analytics/en/web-analytics.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Amplitude.Passive] 'is served' looks like passive voice. Raw Output: {"message": "[Amplitude.Passive] 'is served' looks like passive voice.", "location": {"path": "content/collections/analytics/en/web-analytics.md", "range": {"start": {"line": 80, "column": 107}}}, "severity": "WARNING"}
| **Clicks** | `PROPSUM(ad_metrics.clicks)` | Total number of times users click your ad. **Derived from Daily Ad Metrics**. |
| **CTR** | `%: (ad_metrics.clicks / ad_metrics.impressions) * 100` | Click-through rate. Shows the percentage of impressions that result in a click. **Derived from Daily Ad Metrics**. |
| **Ad Spend** | `PROPSUM(ad_metrics.cost)` | Total amount spent on your ad campaign(s). **Derived from Daily Ad Metrics**. |

Check failure on line 83 in content/collections/analytics/en/web-analytics.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Amplitude.OptionalPlural] Don't use plurals in parentheses such as in 'campaign(s)'. Raw Output: {"message": "[Amplitude.OptionalPlural] Don't use plurals in parentheses such as in 'campaign(s)'.", "location": {"path": "content/collections/analytics/en/web-analytics.md", "range": {"start": {"line": 83, "column": 107}}}, "severity": "ERROR"}
| **CPC** | `ad_metrics.cost / ad_metrics.clicks` | Cost per click. Shows how much you pay, on average, for each click on your ad. **Derived from Daily Ad Metrics**. |
| **CAC** | `ad_metrics.cost / [Acquisition Event]` | Customer Acquisition Cost. Shows how much you pay, on average, to acquire a single new user. **Cost from Daily Ad Metrics; acquisition event set in Settings**. |

Check warning on line 85 in content/collections/analytics/en/web-analytics.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Amplitude.ComplexWords] Consider using 'get' or 'buy' instead of 'acquire'. Raw Output: {"message": "[Amplitude.ComplexWords] Consider using 'get' or 'buy' instead of 'acquire'.", "location": {"path": "content/collections/analytics/en/web-analytics.md", "range": {"start": {"line": 85, "column": 143}}}, "severity": "WARNING"}

Check warning on line 85 in content/collections/analytics/en/web-analytics.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Amplitude.TooWordy] 'acquire' is too wordy. Use a simpler word. Raw Output: {"message": "[Amplitude.TooWordy] 'acquire' is too wordy. Use a simpler word.", "location": {"path": "content/collections/analytics/en/web-analytics.md", "range": {"start": {"line": 85, "column": 143}}}, "severity": "WARNING"}
| **ROAS** | `[Revenue Property] / ad_metrics.cost` | Return on Ad Spend. Shows how much revenue you earn for every dollar spent on advertising. **Cost from Daily Ad Metrics; revenue property set in Settings**. |


## Modify settings and create goals

Out-of-the-box Marketing Analytics uses default events and properties from the Browser SDK, but admins or managers can modify them in settings.
Expand Down
Loading