blob: 7f235f66bc48d0aa887c99c5b1253a4bece1fd29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# This is config file for zabbix_trapper
# To get more information about ZABBIX,
# go http://www.zabbix.com
############ GENERAL PARAMETERS #################
# Specifies debug level
# 1 - critical information
# 2 - warnings (default)
# 3 - for debugging (produces lots of information)
DebugLevel=2
# Spend no more than Timeout seconds on processing
# Must be between 1 and 30
Timeout=3
# Name of log file
# If not set, syslog will be used
LogFile=/var/log/zabbix/zabbix_trapper.log
# Database host name
# Default is localhost
DBHost=localhost
# Database name
DBName=zabbix
# Database user
DBUser=zabbix
# Database password
# Comment this line if no password used
DBPassword=zabbix
# Connect to MySQL usig Unix socket?
#DBSocket=/tmp/mysql.sock
|