You are viewing documentation for the development version, it may be incomplete.
Join our translation project and help translate Zabbix documentation into your native language.

15 Item navigator

Description

These parameters and the possible property values for the respective dashboard widget field objects allow to configure the Item navigator widget in dashboard.create and dashboard.update methods.

Widget fields properties are not validated during the creation or update of a dashboard. This allows users to modify built-in widgets and create custom widgets, but also introduces the risk of creating or updating widgets incorrectly. To ensure the successful creation or update of the Item navigator widget, please refer to the parameter behavior outlined in the tables below.

Parameters

The following parameters are supported for the Item navigator widget.

Parameter type name value
Refresh interval 0 rf_rate 0 - No refresh;
10 - 10 seconds;
30 - 30 seconds;
60 - (default) 1 minute;
120 - 2 minutes;
600 - 10 minutes;
900 - 15 minutes.
Host groups 2 groupids.0 Host group ID.

Note: To configure multiple host groups, create a dashboard widget field object for each host group with an incremented number in the property name.

This parameter is not supported if configuring the widget on a template dashboard.
Hosts 2 hostids.0 Host ID.

Note: To configure multiple hosts, create a dashboard widget field object for each host with an incremented number in the property name. For multiple hosts, the parameter Host groups must either be not configured at all or configured with at least one host group that the configured hosts belong to.

This parameter is not supported if configuring the widget on a template dashboard.
Host tags
Evaluation type 0 host_tags_evaltype 0 - (default) And/Or;
2 - Or.

This parameter is not supported if configuring the widget on a template dashboard.
Tag name 1 host_tags.0.tag Any string value.

Note: The number in the property name references tag order in the tag evaluation list.

Parameter behavior:
- required if configuring Host tags

This parameter is not supported if configuring the widget on a template dashboard.
Operator 0 host_tags.0.operator 0 - Contains;
1 - Equals;
2 - Does not contain;
3 - Does not equal;
4 - Exists;
5 - Does not exist.

Note: The number in the property name references tag order in the tag evaluation list.

Parameter behavior:
- required if configuring Host tags

This parameter is not supported if configuring the widget on a template dashboard.
Tag value 1 host_tags.0.value Any string value.

Note: The number in the property name references tag order in the tag evaluation list.

Parameter behavior:
- required if configuring Host tags

This parameter is not supported if configuring the widget on a template dashboard.
Item patterns 1 items.0 Item name or pattern.

Note: To configure multiple item patterns, create a dashboard widget field object for each item pattern with an incremented number in the property name.
Item tags
Evaluation type 0 item_tags_evaltype 0 - (default) And/Or;
2 - Or.
Tag name 1 item_tags.0.tag Any string value.

Note: The number in the property name references tag order in the tag evaluation list.

Parameter behavior:
- required if configuring Item tags
Operator 0 item_tags.0.operator 0 - Contains;
1 - Equals;
2 - Does not contain;
3 - Does not equal;
4 - Exists;
5 - Does not exist.

Note: The number in the property name references tag order in the tag evaluation list.

Parameter behavior:
- required if configuring Item tags
Tag value 1 item_tags.0.value Any string value.

Note: The number in the property name references tag order in the tag evaluation list.

Parameter behavior:
- required if configuring Item tags
State 0 state -1 - (default) All;
0 - Normal;
1 - Not supported.
Show problems 0 show_problems 0 - All;
1 - (default) Unsuppressed;
2 - None.
Group by
Attribute 0 group_by.0.attribute 0 - Host group;
1 - Host name;
2 - Host tag value;
3 - Item tag value.

Note: The number in the property name references attribute order in the grouping attribute list.

Parameter behavior:
- required if configuring Group by
Value 1 group_by.0.tag_name Any string value.

Note: The number in the property name references the grouping attribute set in the Attribute parameter.

Parameter behavior:
- required if configuring Group by and Attribute is set to "Host tag value" or "Item tag value"
Item limit 0 show_lines Possible values range from 1-9999.

Default: 100.
Reference 1 reference Any string value consisting of 5 characters (e.g., ABCDE or JBPNL). This value must be unique within the dashboard to which the widget belongs.

Parameter behavior:
- required

Examples

The following examples aim to only describe the configuration of the dashboard widget field objects for the Item navigator widget. For more information on configuring a dashboard, see dashboard.create.

Configuring an Item navigator widget

Configure an Item navigator widget that displays up to 1000 items grouped by their host and, then, by the "component" item tag value.

Request:

{
           "jsonrpc": "2.0",
           "method": "dashboard.create",
           "params": {
               "name": "My dashboard",
               "display_period": "30",
               "auto_start": "1",
               "pages": [
                   {
                       "widgets": [
                           {
                               "type": "itemnavigator",
                               "name": "Item navigator",
                               "x": "0",
                               "y": "0",
                               "width": "4",
                               "height": "5",
                               "view_mode": "0",
                               "fields": [
                                   {
                                       "type": 0,
                                       "name": "group_by.0.attribute",
                                       "value": 0
                                   },
                                   {
                                       "type": 0,
                                       "name": "group_by.1.attribute",
                                       "value": 3
                                   },
                                   {
                                       "type": 1,
                                       "name": "group_by.1.tag_name",
                                       "value": "component"
                                   },
                                   {
                                       "type": 0,
                                       "name": "show_lines",
                                       "value": 1000
                                   },
                                   {
                                       "type": 1,
                                       "name": "reference",
                                       "value": "DFNLK"
                                   }
                               ]
                           }
                       ]
                   }
               ],
               "userGroups": [
                   {
                       "usrgrpid": 7,
                       "permission": 2
                   }
               ],
               "users": [
                   {
                       "userid": 1,
                       "permission": 3
                   }
               ]
           },
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "dashboardids": [
                   "3"
               ]
           },
           "id": 1
       }

See also