Áú»¢¶Ä²©

This is the documentation page for an unsupported version of Áú»¢¶Ä²©.
Is this not what you were looking for? Switch to the current version or choose one from the drop-down menu.

8 Unit symbols

Overview

Having to use some large numbers, for example '86400' to represent the number of seconds in one day, is both difficult and error-prone. This is why you can use some appropriate unit symbols (or suffixes) to simplify Áú»¢¶Ä²© trigger expressions and item keys.

Instead of '86400' for the number of seconds you can simply enter '1d'. Suffixes function as multipliers.

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

Time suffixes are supported in:

  • trigger expression constants and function parameters
  • 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)
  • slide show configuration ('Default delay' field)
  • user profile settings ('Auto-logout', 'Refresh', 'Message timeout' fields)
  • Administration ¡ú General ¡ú GUI ('Show events not older than' 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 ('Refresh unsupported items' field)
  • parameters of the zabbix[queue,<from>,<to>] internal item
  • last parameter of aggregate checks

Memory suffixes

Memory size suffixes are supported in trigger expression constants and function parameters.

For memory size you can use:

  • K - kilobyte
  • M - megabyte
  • G - gigabyte
  • T - terabyte

Other uses

Unit symbols are also used for a human-readable representation of data in the frontend.

In both Áú»¢¶Ä²© server and frontend these symbols are supported:

  • K - kilo
  • M - mega
  • G - giga
  • T - tera

When item values in B, Bps are displayed in the frontend, base 2 is applied (1K = 1024). Otherwise a base of 10 is used (1K = 1000).

Additionally the frontend also supports the display of:

  • P - peta
  • E - exa
  • Z - zetta
  • Y - yotta

Usage examples

By using some appropriate suffixes you can write trigger expressions that are easier to understand and maintain, for example these expressions:

{host:zabbix[proxy,zabbix_proxy,lastaccess]}>120
       {host:system.uptime[].last()}<86400
       {host:system.cpu.load.avg(600)}<10
       {host:vm.memory.size[available].last()}<20971520

could be changed to:

{host:zabbix[proxy,zabbix_proxy,lastaccess]}>2m
       {host:system.uptime.last()}<1d
       {host:system.cpu.load.avg(10m)}<10
       {host:vm.memory.size[available].last()}<20M