Funnel
A Funnel widget allows you to quickly analyze various trends across several metric. It can be used for a wide variety of business purposes.
Supported ADD parameters
ADD API
widget_class
- Contains "funnel" for Funnel-widget.
{
"title": "OS Releases",
"description": "RHEL version",
"domain": "M1ZES",
"widget_class": "funnel"
}
Supported SET parameters
SET API
Funnel charts are a common way to show stages in a process.
item
- An array of objects. Each object is a subsequent step down in the funnel. Values will be ordered descending. A minimum of 2 objects and a maximum of 5 objects are allowed..
value
- This parameter describes a step in the funnel and should be a number.
label
- Indicates what the value represents. Minimum 2, maximum 12 characters
{
"domain": "M1ZES",
"widget_data": {
"item": [
{
"value": 1231,
"label": "RHEL 7"
},
{
"value": 450,
"label": "RHEL6"
},
{
"value": 72,
"label": "RHEL 8"
},
{
"value": 3,
"label": "RHEL 5"
}
]
}
}