Funnel Widget

이 페이지는 아직 한국어로 제공되지 않으며 번역 작업 중입니다. 번역에 관한 질문이나 의견이 있으시면 언제든지 저희에게 연락해 주십시오.

Funnel analysis helps you track conversion rates across key workflows to identify and address any bottlenecks in end-to-end user journeys. The funnel widget visualizes conversion rates across user workflows and end-to-end user journeys.

Funnel widget visualizing drop-off rates of a user on an e-commerce site

Setup

Funnel widget setup screen

Configuration

  1. Choose the data to graph:
  2. Select View or Action and choose a query from the dropdown menu.
  3. Click the + button and select another query from the dropdown menu to visualize the funnel. See the RUM Visualize documentation for more information on visualizing Funnel analysis.

Options

Global time

On screenboards and notebooks, choose whether your widget has a custom timeframe or uses the global timeframe.

API

This widget can be used with the Dashboards API. See the following table for the widget JSON schema definition:

Expand All

항목

유형

설명

requests [required]

[object]

Request payload used to query items.

query [required]

object

Updated funnel widget.

data_source [required]

enum

Source from which to query items to display in the funnel. Allowed enum values: rum

default: rum

query_string [required]

string

The widget query.

steps [required]

[object]

List of funnel steps.

facet [required]

string

The facet of the step.

value [required]

string

The value of the step.

request_type [required]

enum

Widget request type. Allowed enum values: funnel

time

object

Time setting for the widget.

live_span

enum

The available timeframes depend on the widget you are using. Allowed enum values: 1m,5m,10m,15m,30m,1h,4h,1d,2d,1w,1mo,3mo,6mo,week_to_date,month_to_date,1y,alert

title

string

The title of the widget.

title_align

enum

How to align the text on the widget. Allowed enum values: center,left,right

title_size

string

The size of the title.

type [required]

enum

Type of funnel widget. Allowed enum values: funnel

default: funnel

{
  "requests": [
    {
      "query": {
        "data_source": "rum",
        "query_string": "@browser.name:Chrome",
        "steps": [
          {
            "facet": "@view.name",
            "value": "/apm/home"
          }
        ]
      },
      "request_type": "funnel"
    }
  ],
  "time": {
    "live_span": "5m"
  },
  "title": "string",
  "title_align": "string",
  "title_size": "string",
  "type": "funnel"
}

Further Reading