[comment]: # translation:outdated

[comment]: # ({093ad1f3-8b285a74})
# 3 Adatok áttekintése

[comment]: # ({/093ad1f3-8b285a74})

[comment]: # ({77f1ca42-ecbfa4b1})
::: fontos
Ez a widget elavult, és a közelgő nagyobb kiadásban eltávolítjuk.
Fontolja meg a [*Top hosts*](/manual/api/reference/dashboard/widget_fields/top_hosts) widget használatát.
:::

[comment]: # ({/77f1ca42-ecbfa4b1})

[comment]: # ({46c56c9f-4a755106})
### Leírás

Ezek a paraméterek és a megfelelő irányítópult widget mezőobjektumok lehetséges tulajdonságértékei lehetővé teszik a konfigurálást
a [*Data overview*](/manual/web_interface/frontend_sections/monitoring/dashboard/widgets/data_overview) widget a `dashboard.create` és `dashboard.update` metódusokban.

::: fontos
A widget `fields` tulajdonságait a rendszer nem ellenőrzi az irányítópult létrehozása vagy frissítése során.
Ez lehetővé teszi a felhasználók számára a [beépített widgetek](/manual/web_interface/frontend_sections/monitoring/dashboard/widgets) módosítását és [egyéni widgetek](/manual/modules#developing-modules) létrehozását, de emellett fennáll annak a kockázata is, hogy a widgetek frissítése nem megfelelő.
Az *Adatok áttekintése* widget sikeres létrehozása vagy frissítése érdekében kérjük, tekintse meg az alábbi táblázatokban vázolt paraméterkövetelményeket.
:::

[comment]: # ({/46c56c9f-4a755106})

[comment]: # ({new-06bdb405})
### Parameters

The following parameters are supported for the *Data overview* 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 - *(default)* 1 minute;<br>120 - 2 minutes;<br>600 - 10 minutes;<br>900 - 15 minutes.|
|*Host groups*|<|2|groupids|[Host group](/manual/api/reference/hostgroup/get) ID.<br><br>Note: To configure multiple host groups, create a dashboard widget field object for each host group.|
|*Hosts*|<|3|hostids|[Host](/manual/api/reference/host/get) ID.<br><br>Note: To configure multiple hosts, create a dashboard widget field object for each host. 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.|
|*Tags* (the number in the property name (e.g. tags.tag.0) references tag order in the tag evaluation list)|<|<|<|<|
|<|*Evaluation type*|0|evaltype|0 - *(default)* And/Or;<br>2 - Or.|
|^|*Tag name*|1|tags.tag.0|Any string value.<br><br>Parameter *Tag name* required if configuring *Tags*.|
|^|*Operator*|0|tags.operator.0|0 - Contains;<br>1 - Equals;<br>2 - Does not contain;<br>3 - Does not equal;<br>4 - Exists;<br>5 - Does not exist.<br><br>Parameter *Operator* required if configuring *Tags*.|
|^|*Tag value*|1|tags.value.0|Any string value.<br><br>Parameter *Tag value* required if configuring *Tags*.|
|*Show suppressed problems*|<|0|show_suppressed|0 - *(default)* Disabled;<br>1 - Enabled.|
|*Hosts location*|<|0|style|0 - *(default)* Left;<br>1 - Top.|

[comment]: # ({/new-06bdb405})

[comment]: # ({7663ef93-ea5f1a97})
### Példák

A következő példák csak az irányítópult felületi elem mezőobjektumainak konfigurációját kívánják leírni az *Adatok áttekintése* widgethez.
Az irányítópult konfigurálásával kapcsolatos további információkért lásd: [`dashboard.create`](/manual/api/reference/dashboard/create).

[comment]: # ({/7663ef93-ea5f1a97})

[comment]: # ({new-2a2d8ed8})
#### Configuring a *Data overview* widget

Configure a *Data overview* widget that displays data for host "10084" and only for items for which the tag with the name "component" contains value "cpu".
In addition, display the data with hosts located on top.

Request:

```json
{
    "jsonrpc": "2.0",
    "method": "dashboard.create",
    "params": {
        "name": "My dashboard",
        "display_period": 30,
        "auto_start": 1,
        "pages": [
            {
                "widgets": [
                    {
                        "type": "dataover",
                        "name": "Data overview",
                        "x": 0,
                        "y": 0,
                        "width": 12,
                        "height": 5,
                        "view_mode": 0,
                        "fields": [
                            {
                                "type": 3,
                                "name": "hostids",
                                "value": 10084
                            },
                            {
                                "type": 1,
                                "name": "tags.tag.0",
                                "value": "component"
                            },
                            {
                                "type": 0,
                                "name": "tags.operator.0",
                                "value": 0
                            },
                            {
                                "type": 1,
                                "name": "tags.value.0",
                                "value": "cpu"
                            },
                            {
                                "type": 0,
                                "name": "style",
                                "value": 1
                            }
                        ]
                    }
                ]
            }
        ],
        "userGroups": [
            {
                "usrgrpid": 7,
                "permission": 2
            }
        ],
        "users": [
            {
                "userid": 1,
                "permission": 3
            }
        ]
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

Response:

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

[comment]: # ({/new-2a2d8ed8})

[comment]: # ({e9d30322-27a42ae9})
### Lásd még

-   [Irányítópult widget mező](/manual/api/reference/dashboard/object#dashboard-widget-field)
-   [`dashboard.create`](/manual/api/reference/dashboard/create)
-   [`dashboard.update`](/manual/api/reference/dashboard/update)

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