Adam Silenko
Adam Silenko

Reputation: 3108

Zabbix web scenario debug

To figure out the problems in web scenario I need to check values of variables (macros) in some steps. I expect view in Web interface...

Upvotes: 1

Views: 2602

Answers (1)

Adam Silenko
Adam Silenko

Reputation: 3108

Currently log is accessible only from system, but there is an ugly workaround to view variables:

  1. Add step to not existing URL with variable in path, for example:

    https://{HOST.DNS}/{some_variable}/{some_other_variable}

  2. server probably return error page, but you can set is as expected in Required status codes

  3. set Required string to an not existing on error page, for example "not existing string"
  4. then in details of web scenario you can see status:

Error: required pattern "not existing string" was not found on https://some.dns/some_variable_value/some_other_variable_value

Upvotes: 1

Related Questions