Ad Widget

Collapse

Zabbix Aggregate - Use in templates

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jalfrey
    Junior Member
    • Mar 2012
    • 28

    #1

    Zabbix Aggregate - Use in templates

    I would like to use the Zabbix Aggregate function in my templates so I can apply it to several groups of hosts.

    the syntax for the group functions are:
    grpfunc["group","key","itemfunc","numeric param"]

    Does anyone know what variable I put in for "group" so that it will populate when I associate a template with a host/group?
  • jalfrey
    Junior Member
    • Mar 2012
    • 28

    #2
    When adding an Aggregate you can select the "key". Selecting it pasts this:

    grpfunc[<Group>,<Key>,<func>,<param>]

    Based on the Zabbix 1.8 manual available here http://www.zabbix.com/documentation/...regated_checks

    the allowed group functions are:
    grpavg Average value
    grpmax Maximum value
    grpmin Minimum value
    grpsum Sum of values

    So that means the value that is pasted even if all the values between the braces are filled in correctly it will not work.

    Can you please add the following to the key list and remove the value that is already there.

    grpavg[<Group>,<Key>,<func>,<param>]
    grpmax[<Group>,<Key>,<func>,<param>]
    grpmin[<Group>,<Key>,<func>,<param>]
    grpsum[<Group>,<Key>,<func>,<param>]

    Comment

    Working...