feat: initial commit
This commit is contained in:
commit
8cee41cfa8
16 changed files with 328 additions and 0 deletions
41
templates/zabbix/zabbix_server.conf.j2
Normal file
41
templates/zabbix/zabbix_server.conf.j2
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# general
|
||||
ListenPort=10051
|
||||
LogType=system
|
||||
DebugLevel=1
|
||||
PidFile=/var/run/zabbix/zabbix_server.pid
|
||||
|
||||
# database
|
||||
DBHost=127.0.0.1
|
||||
DBPort=3306
|
||||
DBName={{ zabbix_server_db_name }}
|
||||
DBUser={{ zabbix_server_db_user }}
|
||||
DBPassword={{ zabbix_server_db_pass }}
|
||||
DBSocket=/var/run/mysqld/mysqld.sock
|
||||
|
||||
# poller parameters
|
||||
StartPollers=10
|
||||
StartPollersUnreachable=10
|
||||
StartTrappers=10
|
||||
StartPingers=5
|
||||
StartDiscoverers=5
|
||||
StartHTTPPollers=5
|
||||
StartTimers=5
|
||||
|
||||
# other parameters
|
||||
HousekeepingFrequency=1
|
||||
MaxHousekeeperDelete=10000
|
||||
CacheSize=64M
|
||||
CacheUpdateFrequency=90
|
||||
StartDBSyncers=30
|
||||
HistoryCacheSize=64M
|
||||
TrendCacheSize=32M
|
||||
ValueCacheSize=32M
|
||||
Timeout=15
|
||||
UnreachablePeriod=30
|
||||
UnavailableDelay=30
|
||||
UnreachableDelay=10
|
||||
LogSlowQueries=1000
|
||||
|
||||
# locations
|
||||
FpingLocation=/usr/bin/fping
|
||||
Fping6Location=/usr/bin/fping6
|
||||
Loading…
Add table
Add a link
Reference in a new issue