19 Browser监控项

Overview

Browser items allow monitoring complex websites and web applications using a browser.

The support of Browser items is currently experimental.

Browser items collect data by executing a user-defined JavaScript code and retrieving data over HTTP/HTTPS. This item can simulate such browser-related actions as clicking, entering text, navigating through web pages, and other user interactions with websites or web applications.

In addition to the script, an optional list of parameters (pairs of name and value) and timeout can be specified.

The item partially implements the W3C WebDriver standard with either Selenium Server or a plain WebDriver (for example, ChromeDriver) as a web testing endpoint. For the item to work, set the endpoint in the Zabbix server/proxy configuration file WebDriverURL parameter.

Browser items are executed and processed by Zabbix server or proxy browser pollers. If necessary, you can adjust the number of pre-forked instances of Browser item pollers in the Zabbix server/proxy configuration file StartBrowserPollers parameter.

For monitoring complex websites and web applications, the Website by Browser template is available as an out-of-the-box template.

配置

如果使用 ChromeDriver 作为网络测试端点,请参阅 安全注意事项

监控项配置表类型 字段中,选择 Browser,然后填写必填字段。

19 Browser监控项 - 图1

所有标红星号为必填字段。

Browser 监控项需要特定信息的字段有:

字段描述
Key输入用于识别监控项的唯一密钥。
*参数指定作为属性和值对传递给脚本的变量。
支持用户宏。要查看支持哪些内置宏,可以在支持的宏表中搜索 “Browser-type item”。
脚本在点击参数字段(或旁边的查看/编辑按钮)时出现的代码块中输入 JavaScript 代码。此代码必须提供返回度量值的逻辑。
代码可以访问所有参数,以及 Zabbix 添加的所有额外的JavaScript 对象Browser监控项JavaScript对象
See also: JavaScript Guide.
超时JavaScript 执行超时(1-600 秒;超出此时间将返回错误)。
请注意,根据脚本的不同,超时可能需要更长的时间才能触发。
有关超时参数的更多信息,请参见 通用监控项属性

示例

默认脚本

以下脚本:

  1. 初始化一个浏览器会话。
  2. 导航到指定的 URL。
  3. 收集性能条目和会话统计数据,并以 JSON 字符串的形式返回它们。

脚本字段中,输入以下内容:

  1. var browser = new Browser(Browser.chromeOptions());
  2. try {
  3. browser.navigate("http://example.com");
  4. browser.collectPerfEntries();
  5. }
  6. finally {
  7. return JSON.stringify(browser.getResult());
  8. }
检查 Zabbix 登录

脚本执行以下操作:

  1. 初始化一个浏览器会话。
  2. 导航到 Zabbix 登录页面。
  3. 输入用户名 “Admin” 和密码 “zabbix”。
  4. 查找并点击登录按钮。
  5. 查找并点击注销按钮。
  6. 收集登录前后以及注销后的性能数据。
  7. 通过捕获错误消息和屏幕截图来处理错误。
  8. 将收集到的结果作为 JSON 字符串返回。

脚本 字段中,输入以下 JavaScript 代码:

  1. var browser, result;
  2. browser = new Browser(Browser.chromeOptions());
  3. try {
  4. browser.navigate("http://example.com/zabbix/index.php");
  5. browser.collectPerfEntries("open page");
  6. var el = browser.findElement("xpath", "//input[@id='name']");
  7. if (el === null) {
  8. throw Error("cannot find name input field");
  9. }
  10. el.sendKeys("Admin");
  11. el = browser.findElement("xpath", "//input[@id='password']");
  12. if (el === null) {
  13. throw Error("cannot find password input field");
  14. }
  15. el.sendKeys("zabbix");
  16. el = browser.findElement("xpath", "//button[@id='enter']");
  17. if (el === null) {
  18. throw Error("cannot find login button");
  19. }
  20. el.click();
  21. browser.collectPerfEntries("login");
  22. el = browser.findElement("link text", "Sign out");
  23. if (el === null) {
  24. throw Error("cannot find logout button");
  25. }
  26. el.click();
  27. browser.collectPerfEntries("logout");
  28. result = browser.getResult();
  29. }
  30. catch (err) {
  31. if (!(err instanceof BrowserError)) {
  32. browser.setError(err.message);
  33. }
  34. result = browser.getResult();
  35. result.error.screenshot = browser.getScreenshot();
  36. }
  37. finally {
  38. return JSON.stringify(result);
  39. }
初始化浏览器

以下脚本执行以下操作:

  1. 根据脚本中指定的顺序,为可用的浏览器初始化一个浏览器会话,选择第一个匹配的浏览器。
  2. 定义浏览器能力,包括页面加载策略以及针对每个浏览器的特定选项,例如 Chrome、Firefox 和 Microsoft Edge 浏览器的无头模式。

请注意,为了设置 WebDriver 实例,您将需要额外的测试脚本或场景来与被测试的网站或 Web 应用程序进行交互。

脚本字段中,输入以下内容:

  1. var browser = new Browser({
  2. "capabilities":{
  3. "firstMatch":[
  4. {
  5. "browserName":"chrome",
  6. "pageLoadStrategy":"normal",
  7. "goog:chromeOptions":{
  8. "args":[
  9. "--headless=new"
  10. ]
  11. }
  12. },
  13. {
  14. "browserName":"firefox",
  15. "pageLoadStrategy":"normal",
  16. "moz:firefoxOptions":{
  17. "args":[
  18. "--headless"
  19. ]
  20. }
  21. },
  22. {
  23. "browserName":"MicrosoftEdge",
  24. "pageLoadStrategy":"normal",
  25. "ms:edgeOptions":{
  26. "args":[
  27. "--headless=new"
  28. ]
  29. }
  30. },
  31. {
  32. "browserName":"safari",
  33. "pageLoadStrategy":"normal"
  34. }
  35. ]
  36. }
  37. });