-
Type:
Incident report
-
Resolution: Unresolved
-
Priority:
Trivial
-
None
-
Affects Version/s: 7.0.24, 7.4.8
-
Component/s: Documentation (D)
-
None
Steps to reproduce:
- In the web scenario documentation, it states that it supports User Macros in the Post field, in raw data format:
HTTP POST variables.
In Form data mode, specified as attribute and value pairs.
Values are URL-encoded automatically. Values from scenario variables, user macros or {HOST.*} macros are resolved and then URL-encoded automatically.
In Raw data mode, attributes/values are displayed on a single line and concatenated with a & symbol.
Raw values can be URL-encoded/decoded manually using a {{macro}.urlencode()} or {{macro}.urldecode()} syntax.
For example: id=2345&userid={user}
If {user} is defined as a variable of the web scenario, it will be replaced by its value when the step is executed. If you wish to URL-encode the variable, substitute {user} with {{user}.urlencode()}.
User macros and {HOST.*} macros are supported.
However, it's not present/mentioned under macros supported by location:
https://www.zabbix.com/documentation/7.0/en/manual/appendix/macros/supported_by_location_user#web-scenario
Expected result:
adjust the "supported by location" documentation to include this information as well.