[comment]: # translation:outdated

[comment]: # ({4d5c1b80-4d5c1b80})
# 8 Mértékegység szimbólumok

[comment]: # ({/4d5c1b80-4d5c1b80})

[comment]: # ({393f9290-393f9290})
#### Áttekintés

Néhány nagy számot kell használni, például a '86400'-t a
másodpercek számát egy napon belül, nehéz és hibás. Ez
miért használhatunk néhány megfelelő egységszimbólumot (vagy utótagot) az egyszerűsítés érdekében
Zabbix trigger kifejezések és elemkulcsok.

A másodpercek számát jelző „86400” helyett egyszerűen beírhatja az „1d” értéket.
Az utótagok szorzóként funkcionálnak.

[comment]: # ({/393f9290-393f9290})

[comment]: # ({7db0e66e-163b4f50})
#### Time suffixes

For time you can use:

-   **s** - seconds (when used, works the same as the raw value)
-   **m** - minutes
-   **h** - hours
-   **d** - days
-   **w** - weeks
-   **M** - months ([trend functions](/manual/appendix/functions/trends) only)
-   **y** - years ([trend functions](/manual/appendix/functions/trends) only)

Time suffixes support only integer numbers (so '1h' is supported, '1,5h'
or '1.5h' are not; use '90m' instead).

Time suffixes are supported in:

-   trigger [expression](/manual/config/triggers/expression) constants
    and function parameters
-   constants of [calculated
    item](/manual/config/items/itemtypes/calculated) formulas
-   parameters of the **zabbix\[queue,<from>,<to>\]**
    [internal item](/manual/config/items/itemtypes/internal)
-   time period parameter of [aggregate
    calculations](/manual/config/items/itemtypes/calculated/aggregate)
-   item configuration ('Update interval', 'Custom intervals', 'History
    storage period' and 'Trend storage period' fields)
-   item prototype configuration ('Update interval', 'Custom intervals',
    'History storage period' and 'Trend storage period' fields)
-   low-level discovery rule configuration ('Update interval', 'Custom
    intervals', 'Keep lost resources' fields)
-   network discovery configuration ('Update interval' field)
-   web scenario configuration ('Update interval', 'Timeout' fields)
-   action operation configuration ('Default operation step duration',
    'Step duration' fields)
-   user profile settings ('Auto-logout', 'Refresh', 'Message timeout'
    fields)
-   graph
    [widget](/manual/web_interface/frontend_sections/monitoring/dashboard/widgets#graph)
    of *Monitoring* → *Dashboard* ('Time shift' field)
-   *Administration* → *General* → *Housekeeping* (storage period
    fields)
-   *Administration* → *General* → *Trigger displaying options*
    ('Display OK triggers for', 'On status change triggers blink for'
    fields)
-   *Administration* → *General* → *Other* ('Login blocking interval'
    field and fields related to communication with Zabbix server)
-   Zabbix server `ha_set_failover_delay=delay` [runtime
    control](/manual/concepts/server#runtime_control) option

[comment]: # ({/7db0e66e-163b4f50})

[comment]: # ({11368220-11368220})
#### Memória utótagok

A memóriaméret-utótagok támogatottak:

- trigger [kifejezés](/manual/config/triggers/expression) állandók
    és a funkció paraméterei
- állandói [számított
    item](/manual/config/items/itemtypes/calculated) képleteket

A memória méretéhez használhatja:

- **K** - kilobájt
- **M** - megabájt
- **G** - gigabájt
- **T** - terabájt

[comment]: # ({/11368220-11368220})

[comment]: # ({c9f73444-c9f73444})
#### Egyéb felhasználás

Az egység szimbólumokat az adatok ember által olvasható ábrázolására is használják
a frontendben.

A Zabbix szerveren és a frontenden is ezek a szimbólumok támogatottak:

- **K** - kiló
- **M** - mega
- **G** - giga
- **T** - tera

Ha a B, Bps elemértékek megjelennek a frontendben, a 2. alap az
alkalmazva (1K = 1024). Ellenkező esetben 10-es alapot használunk (1K = 1000).

Ezenkívül a frontend a következők megjelenítését is támogatja:

- **P** - peta
- **E** - pl
- **Z** - zetta
- **Y** - yotta

[comment]: # ({/c9f73444-c9f73444})

[comment]: # ({46f2ffdf-46f2ffdf})
#### Használati példák

Néhány megfelelő utótag használatával trigger kifejezéseket írhat
amelyek könnyebben érthetők és karbantarthatók, például ezek
kifejezések:

    last(/host/system.uptime[])<86400s
    avg(/host/system.cpu.load,600s)<10
    last(/host/vm.memory.size[elérhető])<20971520

módosítható erre:

    last(/host/system.uptime[])<1d
    avg(/host/system.cpu.load,10m)<10
    last(/host/vm.memory.size[elérhető])<20M

[comment]: # ({/46f2ffdf-46f2ffdf})
