-
Incident report
-
Resolution: Fixed
-
Minor
-
2.2.10
Suppose we have an item with name "echo $1" and the following item key:
echo[{$MACRO}]
Suppose also that the value of the macro is "this,is,a,list". Then, server will show item name as "echo this,is,a,list", whereas frontend will show it as "echo this".
The probable reason is that the server correctly quotes item arguments when expanding macros, yielding the following item key:
echo["this,is,a,list"]
However, the frontend apparently yields the following key after macro expansion, which is not correct:
echo[this,is,a,list]
Therefore, the frontend side should be fixed.
- duplicates
-
ZBXNEXT-2683 context/parameter for user macros/variables
- Closed