[comment]: # ({ff5657eb-d8b4b063})
# 27 System information

[comment]: # ({/ff5657eb-d8b4b063})

[comment]: # ({59265e87-acdd6f8c})
### Description

These parameters and the possible property values for the respective dashboard widget field objects allow to configure
the [*System Information*](/manual/web_interface/frontend_sections/dashboards/widgets/system) widget in `dashboard.create` and `dashboard.update` methods.

::: noteimportant
Widget `fields` properties are not validated during the creation or update of a dashboard.
This allows users to modify [built-in widgets](/manual/web_interface/frontend_sections/dashboards/widgets) and create [custom widgets](/devel/modules/tutorials/widget), but also introduces the risk of creating or updating widgets incorrectly.
To ensure the successful creation or update of the *System information* widget, please refer to the parameter behavior outlined in the tables below.
:::

[comment]: # ({/59265e87-acdd6f8c})

[comment]: # ({83e943a2-59ca3d9b})
### Parameters

The following parameters are supported for the *System Information* widget.

|Parameter|[type](/manual/api/reference/dashboard/object#dashboard-widget-field)|name|value|
|-----|-|-----|-------------------|
|*Refresh interval*|0|rf_rate|0 - No refresh;<br>10 - 10 seconds;<br>30 - 30 seconds;<br>60 - 1 minute;<br>120 - 2 minutes;<br>600 - 10 minutes;<br>900 - *(default)* 15 minutes.|
|*Show*|0|info_type|0 - *(default)* System stats;<br>1 - High availability nodes.|
|*Show software update check details*|0|show_software_update_check_details|0 - *(default)* Disabled;<br>1 - Enabled.<br><br>[Parameter behavior](/manual/api/reference_commentary#parameter-behavior):<br>- *supported* if [`AllowSoftwareUpdateCheck`](/manual/concepts/server/server_params#allowsoftwareupdatecheck) in Zabbix server configuration is enabled and *Show* is set to "System stats"|

[comment]: # ({/83e943a2-59ca3d9b})

[comment]: # ({78ff2b0f-c23d8683})
### Examples

The following examples aim to only describe the configuration of the dashboard widget field objects for the *System information* widget.
For more information on configuring a dashboard, see [`dashboard.create`](/manual/api/reference/dashboard/create).

[comment]: # ({/78ff2b0f-c23d8683})

[comment]: # ({0cfa7dc7-91f3e344})
#### Configuring a *System information* widget

Configure a *System information* widget that displays system stats with a refresh interval of 10 minutes and software update check enabled.

[Request](/manual/api#performing-requests):

```json
{
    "jsonrpc": "2.0",
    "method": "dashboard.create",
    "params": {
        "name": "My dashboard",
        "display_period": 30,
        "auto_start": 1,
        "pages": [
            {
                "widgets": [
                    {
                        "type": "systeminfo",
                        "name": "System information",
                        "x": 0,
                        "y": 0,
                        "width": 36,
                        "height": 5,
                        "view_mode": 0,
                        "fields": [
                            {
                                "type": 0,
                                "name": "rf_rate",
                                "value": 600
                            },
                            {
                                "type": 0,
                                "name": "show_software_update_check_details",
                                "value": 1
                            }
                        ]
                    }
                ]
            }
        ],
        "userGroups": [
            {
                "usrgrpid": 7,
                "permission": 2
            }
        ],
        "users": [
            {
                "userid": 1,
                "permission": 3
            }
        ]
    },
    "id": 1
}
```

Response:

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

[comment]: # ({/0cfa7dc7-91f3e344})

[comment]: # ({e9d30322-ee77e7cb})
### See also

-   [Dashboard widget field](/manual/api/reference/dashboard/object#dashboard-widget-field)
-   [`dashboard.create`](/manual/api/reference/dashboard/create)
-   [`dashboard.update`](/manual/api/reference/dashboard/update)

[comment]: # ({/e9d30322-ee77e7cb})
