summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_zabbix/templates/zabbix.conf.php.j2
blob: ad0a8328d2f2b89ab882afbd57e0296f95661110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
// Zabbix GUI configuration file
global $DB;

$DB['TYPE']     = 'MYSQL';
$DB['SERVER']   = 'localhost';
$DB['PORT']     = '0';
$DB['DATABASE'] = '{{ db_name }}';
$DB['USER']     = '{{ db_user }}';
$DB['PASSWORD'] = '{{ db_password }}';

// SCHEMA is relevant only for IBM_DB2 database
$DB['SCHEMA'] = '';

$ZBX_SERVER      = 'localhost';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = '';

$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
?>