Source
self::waitForLogLineToBePresent(self::COMPONENT_SERVER, 'sending configuration data to proxy "proxy"');
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
require_once dirname(__FILE__).'/../include/CIntegrationTest.php';
require_once dirname(__FILE__).'/../include/helpers/CDataHelper.php';
/**
* Test suite for data collection using both active and passive agents.
*
* @backup history
*/
class testDataCollection extends CIntegrationTest {
private static $hostids = [];
private static $itemids = [];
/**
* @inheritdoc
*/
public function prepareData() {
// Create proxy "proxy".
CDataHelper::call('proxy.create', [
'host' => 'proxy',
'status' => HOST_STATUS_PROXY_ACTIVE
]);
$proxyids = CDataHelper::getIds('host');
// Create host "agent", "custom_agent" and "proxy agent".
$interfaces = [
'type' => 1,
'main' => 1,
'useip' => 1,
'ip' => '127.0.0.1',
'dns' => '',
'port' => $this->getConfigurationValue(self::COMPONENT_AGENT, 'ListenPort')
];
$groups = ['groupid' => 4];
$result = CDataHelper::createHosts([
[
'host' => 'agent',
'interfaces' => $interfaces,
'groups' => $groups,
'status' => HOST_STATUS_NOT_MONITORED,
'items' => [
[
'name' => 'Agent ping',
'key_' => 'agent.ping',
'type' => ITEM_TYPE_ZABBIX_ACTIVE,
'value_type' => ITEM_VALUE_TYPE_UINT64,
'delay' => '1s'
],
[
'name' => 'Agent hostname',
'key_' => 'agent.hostname',
'type' => ITEM_TYPE_ZABBIX,
'value_type' => ITEM_VALUE_TYPE_TEXT,
'delay' => '1s'
]
]
],
[
'host' => 'custom_agent',
'interfaces' => $interfaces,
'groups' => $groups,
'status' => HOST_STATUS_NOT_MONITORED,
'items' => [
[
'name' => 'Custom metric 1',
'key_' => 'custom.metric',
'type' => ITEM_TYPE_ZABBIX_ACTIVE,
'value_type' => ITEM_VALUE_TYPE_TEXT,