Skip to content
Open
Changes from all 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
8 changes: 4 additions & 4 deletions hugo/content/en/product_analytics/charts/funnel_analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ For any conversion analysis view, you can choose to view conversions by count or
## Conversion computing metrics

### How Datadog computes conversion metrics
Consider a funnel with events `A → B → C` and event steps `A, A, A, B, C, C`.
Consider a funnel with events `A → B → C` and event steps <code><strong style="font-weight: 900">A</strong>, A, A, <strong style="font-weight: 900">B</strong>, <strong style="font-weight: 900">C</strong>, C</code>.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Style: Inline HTML with hard-coded styles (<strong style="font-weight: 900">) is unusual in this repo's markdown content and can cause styling drift if the site's typography changes. If the goal is just to highlight the matched events within a monospace run, the existing **...** markdown inside a code span may not render bold — but a lightweight alternative would be to wrap the highlighted characters in a semantic class (or use backticks around each matched event) rather than inline font-weight: 900. Not a blocker if this is the agreed-upon pattern for this page.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To be confirmed, not sure what the alternatives are to bold some of the letters


In this case, Datadog counts one conversion. This is because the conversion calculation matches only the first occurrence of event **A** and the first occurrence of event **C** in the sequence.
In this case, Datadog counts one conversion. Each **A** starts an independent attempt. Because all three attempts complete on the same **C** event, Datadog counts only the earliest attempt.

To further illustrate, if the user performs the event sequence `A, A, A, B, C, C, A, B, C`, Datadog counts two conversions. The first conversion completes with the sequence `A, A, A, B, C, C`, and the second conversion completes with the following sequence of `A, B, C`.
To further illustrate, if the user performs the event sequence <code><strong style="font-weight: 900">A</strong>, A, A, <strong style="font-weight: 900">B</strong>, <strong style="font-weight: 900">C</strong>, C, <strong style="font-weight: 900">A</strong>, <strong style="font-weight: 900">B</strong>, <strong style="font-weight: 900">C</strong></code>, Datadog counts two conversions. The first conversion completes with the sequence <code><strong style="font-weight: 900">A</strong>, A, A, <strong style="font-weight: 900">B</strong>, <strong style="font-weight: 900">C</strong></code>, and the second conversion completes with the following sequence of <code><strong style="font-weight: 900">A</strong>, <strong style="font-weight: 900">B</strong>, <strong style="font-weight: 900">C</strong></code>.

<div class="alert alert-info"> Any action or view that happens between two steps in a funnel does not impact the step-by-step or overall conversion rate. As long as step A and C happen in the right order in a given session at least once, it counts as a single converted session.</div>
<div class="alert alert-info"> Any action or view that does not match a funnel step does not impact the step-by-step or overall conversion rate. If all funnel steps occur in the right order within the conversion window, Datadog counts the session as a single converted session.</div>

Datadog calculates the average time between steps by averaging the total duration between the first and last step of each conversion over the total number of steps.

Expand Down
Loading