No results for ""
EXPAND ALL
  • Home
  • API docs

Clicked or tapped conversion metrics

Read time: 5 minutes
Last edited: Sep 30, 2024

Overview

This topic explains how to create a clicked or tapped metric in LaunchDarkly. Clicked or tapped metrics track how often an end user interacts with an element of your product's UI.

For example, you can use clicked or tapped metrics to track:

  • How often a customer clicks a "Save" button when it is red, versus how often a customer clicks the "Save" button when it is blue
  • How often a customer clicks the same "Save" button across different URLs by tracking URLs based on substrings or simple matches

Clicked or tapped metrics must be used with with JavaScript-based SDKs.

Some metrics require certain SDKs

Clicked or tapped metrics are only compatible with the following SDKs:

  • Electron
  • JavaScript
  • Node.js (client-side)
  • React Web
  • Vue

If you do not use one of these SDKs and would like to track clicks or page views, use a custom conversion binary metric instead.

Flush events when an end user is redirected

SDKs send events at regular intervals, such as every five seconds. If a browser redirects an end user to another page, any events that occurred between when the SDK last sent events and when the browser redirected will be lost. To avoid this, flush events when you know the browser will redirect an end user to another page, such as on click. To learn more, read Flushing events.

CSS selectors

CSS selectors designate specific areas of your product UI, like buttons or images, that your end users can interact with. You can create a metric that monitors interaction with one or more CSS selectors.

For example, some CSS selectors include:

  • #example-element-id
  • .example-classname
  • button.example-button
  • .example-button, .example-button-alt

The CSS selector must be present in your application after the end user interacts with it in order for LaunchDarkly to record the metric. For example, if the end user clicks an element that is dynamically removed from your application in response to the click, then LaunchDarkly will not record the metric event.

If the CSS selector will not be present after the end user interacts with it, we recommend using a custom conversion binary metric instead. To learn more, read Custom conversion binary metrics.

Metric definition

When you create a clicked or tapped conversion metric, you must first decide:

  • What do you want to measure:
    • Count: the number of times a target was clicked.
    • Occurrence: whether or not a target was clicked.

Then, clicked or tapped conversion metric definition options include:

  • Analysis method:
    • for metrics measuring count, you can you can analyze by:
      • Average: "average" is the default analysis method. For metrics you plan to use in funnel experiments, you must select "Average."
      • Percentile: you can choose between P50-P99, which represent the 50th through the 99th percentile.
    • for metrics measuring occurrence, the metric automatically sets the analysis method to "average."
  • Randomization unit: one or more context kinds, such as "user," "device," or "request," that the metric can measure events from.

To learn more about the metric definition options, read Metric analysis.

Create clicked or tapped metrics

To create a clicked or tapped metric:

  1. Navigate to the Metrics list.
  2. Click Create metric. The "Create metric" dialog appears.
  3. Select an event kind of Clicked or tapped.
  4. Enter one or more CSS selectors in the Click targets field. If you include multiple CSS selectors, separate them with commas.
  5. Specify the Target type you want to track behavior on. Expand the section below to view the four types of URL matching.
Expand URL matching options
URL matching schemaDescriptionExample
Simple match

This sends an event when the end user accesses a URL, or clicks on an element hosted at a URL, that matches the string you enter in the Target URL field or a formulation of that URL that included appended parameters. If you want events to record for URLs with substrings, specify each URL individually.

If you specify:

  • https://www.example.com

Then LaunchDarkly sends events from views or clicks at:

  • https://www.example.com
  • https://www.example.com#signin

If you specify:

  • https://www.example.com, and
  • https://www.example.com/login

Then LaunchDarkly sends events from views or clicks at:

  • https://www.example.com
  • https://www.example.com/login
Exact match

This sends an event when the end user accesses a URL, or clicks on an element hosted at a URL, that exactly matches what you enter in the Target URL field. Identical base URLs with different substrings do not send events.

If you specify:

  • https://www.example.com

Then LaunchDarkly sends events from views or clicks at:

  • https://www.example.com

Views and clicks at https://www.example.com/login and https://www.example.com#signin do not send events.

Regular expression

This sends an event based on a regex expression you specify. This lets you designate more precise locations to send click and page view events.

If you specify:

  • example.com\/account\/.*\/billing

Then LaunchDarkly sends events from views or clicks at any string between account/ and /billing, such as http://example.com/account/12345/billing.

Substring match

This sends an event when the end user accesses a URL, or clicks on an element hosted at a URL with a specific string of text in it.

If you specify:

  • your-substring

Then LaunchDarkly sends events from views or clicks at:

  • example.com/your-substring
  • example.com/username/your-substring/
  • example.com/your-substring/settings

Because all of these URLs contain your-substring, clicks on the CSS selectors you specify on each page send events.

  1. Enter the Target URL.
  2. (Optional) Click Add target URL to track behavior on more than one URL.
  3. Select what you want to measure:
  • Count: the number of times a target was clicked or tapped.
  • Occurrence: whether or not a target was clicked or tapped.
  1. In the Metric definition section, select the following:
    • Analysis method:
      • If you selected Count in step 8, select Average or a percentile between P50-P99 click rate.
      • If you selected Occurrence in step 8, the metric automatically sets this to "Average."
  • per or percentage of [randomization unit]: for clicked or tapped metrics, the randomization unit will usually be "user," "customer," or similar, representing an individual person.
A clicked or tapped conversion metric.
A clicked or tapped conversion metric.
  1. Enter a metric Name.
  2. (Optional) Add a Description.
  3. (Optional) Add any Tags.
  4. (Optional) Update the Maintainer.
  5. Click Create metric.

After you create a metric, you can connect it to an experiment or use it to monitor the performance of flag changes. To learn how, read Creating experiments and Release Guardian.

You can also use the REST API: Create metric