From f5c7f3a3205e8531d22b46081f6d6bbf4d7b02b4 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 17 Feb 2022 10:30:26 +0100 Subject: [PATCH 1/2] docs: Add how-to video for impression data This change adds a video to the impression data how-to guide --- website/docs/how-to/how-to-capture-impression-data.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/docs/how-to/how-to-capture-impression-data.mdx b/website/docs/how-to/how-to-capture-impression-data.mdx index 6a16ef2e14..bdfeeb486f 100644 --- a/website/docs/how-to/how-to-capture-impression-data.mdx +++ b/website/docs/how-to/how-to-capture-impression-data.mdx @@ -2,6 +2,7 @@ title: How to capture impression data --- import ApiRequest from '@site/src/components/ApiRequest' +import VideoContent from '@site/src/components/VideoContent.jsx' :::info Placeholders Placeholders in code samples below are delimited by angle brackets (i.e. ``). You will need to replace them with the values that are correct in _your_ situation for the code samples to run properly. @@ -11,6 +12,9 @@ Unleash allows you to gather [**impression data**](../advanced/impression-data.m This guide will take you through everything you need to do in Unleash to facilitate such a workflow. It will show you how to send data to Posthog as an example sink, but the exact same principles will apply to any other service of the same kind. + +This content in this guide is also available in video format. + ## Prerequisites From 7c70dffd5b5347efa5a4cf72e0c3bd96e44025f1 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 17 Feb 2022 10:32:34 +0100 Subject: [PATCH 2/2] fix: add missing word --- website/docs/how-to/how-to-capture-impression-data.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/how-to/how-to-capture-impression-data.mdx b/website/docs/how-to/how-to-capture-impression-data.mdx index bdfeeb486f..5ae9ed1e31 100644 --- a/website/docs/how-to/how-to-capture-impression-data.mdx +++ b/website/docs/how-to/how-to-capture-impression-data.mdx @@ -5,7 +5,7 @@ import ApiRequest from '@site/src/components/ApiRequest' import VideoContent from '@site/src/components/VideoContent.jsx' :::info Placeholders -Placeholders in code samples below are delimited by angle brackets (i.e. ``). You will need to replace them with the values that are correct in _your_ situation for the code samples to run properly. +Placeholders in the code samples below are delimited by angle brackets (i.e. ``). You will need to replace them with the values that are correct in _your_ situation for the code samples to run properly. ::: Unleash allows you to gather [**impression data**](../advanced/impression-data.md) from your feature toggles, giving you complete visibility into who checked what toggles and when. What you do with this data is entirely up to you, but a common use case is to send it off to an aggregation and analytics service such as [Posthog](https://posthog.com/) or [Google Analytics](https://analytics.google.com/), either just for monitoring purposes or to facilitate [A/B testing](../topics/a-b-testing.md).