1 Item key format

    To construct a valid item key, one starts with specifying the key name, then there’s a choice to either have parameters or not - as depicted by the two lines that could be followed.

    Key name

    The key name itself has a limited range of allowed characters, which just follow each other. Allowed characters are:

    Which means:

    • all numbers;
    • all lowercase letters;
    • underscore;
    • dash;
    • dot.

    1 Item key format - 图2

    Key parameters

    An item key can have multiple parameters that are comma separated.

    Each key parameter can be either a quoted string, an unquoted string or an array.

    The parameter can also be left empty, thus using the default value. In that case, the appropriate number of commas must be added if any further parameters are specified. For example, item key icmpping[,,200,,500] would specify that the interval between individual pings is 200 milliseconds, timeout - 500 milliseconds, and all other parameters are left at their defaults.

    Parameter - quoted string

    If the key parameter is a quoted string, any Unicode character is allowed.

    If the key parameter string contains comma, this parameter has to be quoted.

    If the key parameter string contains quotation mark, this parameter has to be quoted and each quotation mark which is a part of the parameter string has to be escaped with a backslash () character.

    To quote item key parameters, use double quotes only. Single quotes are not supported.

    Parameter - unquoted string

    If the key parameter is an unquoted string, any Unicode character is allowed except comma and right square bracket (]). Unquoted parameter cannot start with left square bracket ([).

    1 Item key format - 图6

    Parameter - array

    If the key parameter is an array, it is again enclosed in square brackets, where individual parameters come in line with the rules and syntax of specifying multiple parameters.

    Multi-level parameter arrays, e.g. [a,[b,[c,d]],e], are not allowed.