Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/zabbix/files/1.6.5: postinstall-en.txt zabbix_agent.conf zabbix_agentd.conf zabbix_proxy.conf zabbix_server.conf zabbix_trapper.conf
Date: Tue, 01 Sep 2009 08:32:46
Message-Id: E1MiTc5-0001cI-6J@stork.gentoo.org
1 patrick 09/09/01 13:41:33
2
3 Added: postinstall-en.txt zabbix_agent.conf
4 zabbix_agentd.conf zabbix_proxy.conf
5 zabbix_server.conf zabbix_trapper.conf
6 Log:
7 repoman forgot some files
8
9 Revision Changes Path
10 1.1 net-analyzer/zabbix/files/1.6.5/postinstall-en.txt
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/postinstall-en.txt?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/postinstall-en.txt?rev=1.1&content-type=text/plain
14
15 Index: postinstall-en.txt
16 ===================================================================
17 Please change the values of the following variables in
18 ${MY_HTDOCSDIR}/include/db.inc.php:
19
20 DB_TYPE
21 DB_SERVER
22 DB_DATABASE
23 DB_USER
24 DB_PASSWORD
25
26
27
28 1.1 net-analyzer/zabbix/files/1.6.5/zabbix_agent.conf
29
30 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_agent.conf?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_agent.conf?rev=1.1&content-type=text/plain
32
33 Index: zabbix_agent.conf
34 ===================================================================
35 # This is config file for zabbix_agent
36 # To get more information about ZABBIX,
37 # go http://www.zabbix.com
38
39 # IP address of ZABBIX server
40 # Connections from other hosts will be denied
41
42 Server=127.0.0.1
43
44 # Spend no more than Timeout seconds on processing
45 # Must be between 1 and 30
46
47 Timeout=3
48
49 ####### USER-DEFINED MONITORED PARAMETERS #######
50 # Format: UserParameter=<key>,<shell command>
51 # Note that shell command must not return empty string or EOL only
52 #UserParameter=system.test,who|wc -l
53 ### Set of parameter for monitoring MySQL server (v3.23.42 and later)
54 ### Change -u<username> and add -p<password> if required
55 #UserParameter=mysql.ping,mysqladmin -uroot ping|grep alive|wc -l
56 #UserParameter=mysql.uptime,mysqladmin -uroot status|cut -f2 -d":"|cut -f1 -d"T"
57 #UserParameter=mysql.threads,mysqladmin -uroot status|cut -f3 -d":"|cut -f1 -d"Q"
58 #UserParameter=mysql.questions,mysqladmin -uroot status|cut -f4 -d":"|cut -f1 -d"S"
59 #UserParameter=mysql.slowqueries,mysqladmin -uroot status|cut -f5 -d":"|cut -f1 -d"O"
60 #UserParameter=mysql.qps,mysqladmin -uroot status|cut -f9 -d":"
61 #UserParameter=mysql.version,mysql -V
62
63
64
65 1.1 net-analyzer/zabbix/files/1.6.5/zabbix_agentd.conf
66
67 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_agentd.conf?rev=1.1&view=markup
68 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_agentd.conf?rev=1.1&content-type=text/plain
69
70 Index: zabbix_agentd.conf
71 ===================================================================
72 # This is config file for zabbix_agentd
73 # To get more information about ZABBIX, go http://www.zabbix.com
74
75 ############ GENERAL PARAMETERS #################
76
77 # List of comma delimited IP addresses (or hostnames) of ZABBIX servers.
78 # No spaces allowed. First entry is used for sending active checks.
79 # Note that hostnames must resolve hostname->IP address and
80 # IP address->hostname.
81
82 Server=127.0.0.1
83
84 # Server port for sending active checks
85
86 #ServerPort=10051
87
88 # Unique hostname. Required for active checks.
89
90 Hostname=ZABBIX Server
91
92 # Listen port. Default is 10050
93
94 #ListenPort=10050
95
96 # IP address to bind agent
97 # If missing, bind to all available IPs
98
99 #ListenIP=127.0.0.1
100
101 # Source IP address for outgouing connections
102 #SourceIP=
103
104 # Number of pre-forked instances of zabbix_agentd.
105 # Default value is 5
106 # This parameter must be between 1 and 16
107
108 StartAgents=5
109
110 # How often refresh list of active checks. 2 minutes by default.
111
112 #RefreshActiveChecks=120
113
114 # Disable active checks. The agent will work in passive mode listening server.
115
116 #DisableActive=1
117
118 # Enable remote commands for ZABBIX agent. By default remote commands disabled.
119
120 #EnableRemoteCommands=1
121
122 # Specifies debug level
123 # 0 - debug is not created
124 # 1 - critical information
125 # 2 - error information
126 # 3 - warnings (default)
127 # 4 - for debugging (produces lots of information)
128
129 DebugLevel=3
130
131 # Name of PID file
132
133 PidFile=/var/run/zabbix/zabbix_agentd.pid
134
135 # Name of log file.
136 # If not set, syslog will be used
137
138 LogFile=/tmp/zabbix_agentd.log
139
140 # Maximum size of log file in MB. Set to 0 to disable automatic log rotation.
141 #LogFileSize=1
142
143 # Spend no more than Timeout seconds on processing
144 # Must be between 1 and 30
145
146 Timeout=3
147
148 ####### USER-DEFINED MONITORED PARAMETERS #######
149 # Format: UserParameter=<key>,<shell command>
150 # Note that shell command must not return empty string or EOL only
151 #UserParameter=system.test,who|wc -l
152 ### Set of parameter for monitoring MySQL server (v3.23.42 and later)
153 ### Change -u<username> and add -p<password> if required
154 #UserParameter=mysql.ping,mysqladmin -uroot ping|grep alive|wc -l
155 #UserParameter=mysql.uptime,mysqladmin -uroot status|cut -f2 -d":"|cut -f1 -d"T"
156 #UserParameter=mysql.threads,mysqladmin -uroot status|cut -f3 -d":"|cut -f1 -d"Q"
157 #UserParameter=mysql.questions,mysqladmin -uroot status|cut -f4 -d":"|cut -f1 -d"S"
158 #UserParameter=mysql.slowqueries,mysqladmin -uroot status|cut -f5 -d":"|cut -f1 -d"O"
159 #UserParameter=mysql.qps,mysqladmin -uroot status|cut -f9 -d":"
160 #UserParameter=mysql.version,mysql -V
161
162
163
164
165 1.1 net-analyzer/zabbix/files/1.6.5/zabbix_proxy.conf
166
167 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_proxy.conf?rev=1.1&view=markup
168 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_proxy.conf?rev=1.1&content-type=text/plain
169
170 Index: zabbix_proxy.conf
171 ===================================================================
172 # This is config file for ZABBIX server process
173 # To get more information about ZABBIX,
174 # go http://www.zabbix.com
175
176 ############ GENERAL PARAMETERS #################
177
178 # IP address (or hostname) of ZABBIX servers.
179
180 Server=127.0.0.1
181
182 # Server port for sending active checks
183
184 ServerPort=10051
185
186 # Unique hostname.
187
188 Hostname=proxy
189
190 # Number of pre-forked instances of pollers
191 # Default value is 5
192 # This parameter must be between 0 and 255
193 #StartPollers=5
194
195 # Number of pre-forked instances of IPMI pollers
196 # Default value is 0
197 # This parameter must be between 0 and 255
198 #StartIPMIPollers=0
199
200 # Number of pre-forked instances of pollers for unreachable hosts
201 # Default value is 1
202 # This parameter must be between 0 and 255
203 #StartPollersUnreachable=1
204
205 # Number of pre-forked instances of trappers
206 # Default value is 5
207 # This parameter must be between 0 and 255
208 #StartTrappers=5
209
210 # Number of pre-forked instances of ICMP pingers
211 # Default value is 1
212 # This parameter must be between 0 and 255
213 #StartPingers=1
214
215 # Number of pre-forked instances of discoverers
216 # Default value is 1
217 # This parameter must be between 0 and 255
218 #StartDiscoverers=1
219
220 # Number of pre-forked instances of HTTP pollers
221 # Default value is 1
222 # This parameter must be between 0 and 255
223 #StartHTTPPollers=1
224
225 # Listen port for trapper. Default port number is 10051. This parameter
226 # must be between 1024 and 32767
227 #ListenPort=10051
228
229 # Source IP address for outgouing connections
230 #SourceIP=
231
232 # Listen interface for trapper. Trapper will listen all network interfaces
233 # if this parameter is missing.
234 #ListenIP=127.0.0.1
235
236 # How often ZABBIX will perform sending hearbeat message
237 # (in seconds)
238 # Default value is 60 seconds
239 # Set to 0 to disable heartbeat messages
240 # This parameter must be between 0 and 3600
241 #HeartbeatFrequency=60
242
243 # How often ZABBIX will perform sync configuration data
244 # (in seconds)
245 # Default value is 3600 seconds (1h)
246 # This parameter must be between 1 and 604800 (1 week)
247 #ConfigFrequency=3600
248
249 # How often ZABBIX will perform housekeeping procedure
250 # (in hours)
251 # Default value is 1 hour
252 # Housekeeping is removing unnecessary information from
253 # tables history, alert, and alarms
254 # This parameter must be between 1 and 24
255 #HousekeepingFrequency=1
256
257 # How often ZABBIX will try to send unsent alerts
258 # (in seconds)
259 # Default value is 30 seconds
260 #SenderFrequency=30
261
262 # Local bufer size in hours. Proxy will keep collected data N hours.
263 # Default value is 0 hours
264 #ProxyLocalBuffer=0
265
266 # Offline buffer size in hours. It is used when server is not available.
267 # Older data is removed.
268 # Default value is 1 hours
269 #ProxyOfflineBuffer=1
270
271 # Specifies debug level
272 # 0 - debug is not created
273 # 1 - critical information
274 # 2 - error information
275 # 3 - warnings (default)
276 # 4 - for debugging (produces lots of information)
277 #DebugLevel=3
278
279 # Specifies how long we wait for agent response (in sec)
280 # Must be between 1 and 30
281 Timeout=5
282
283 # Specifies how many seconds trapper may spend processing new data
284 # Must be between 1 and 30
285 #TrapperTimeout=5
286
287 # After how many seconds of unreachability treat a host as unavailable
288 #UnreachablePeriod=45
289
290 # How ofter check host for availability during the unreachability period
291 #UnavailableDelay=15
292
293 # How ofter check host for availability during the unavailability period
294 #UnavailableDelay=60
295
296 # Name of PID file
297 PidFile=/var/tmp/zabbix_proxy.pid
298
299 # Name of log file
300 # If not set, syslog is used
301 LogFile=/tmp/zabbix_proxy.log
302
303 # Maximum size of log file in MB. Set to 0 to disable automatic log rotation.
304 #LogFileSize=1
305
306 # Location for custom alert scripts
307 AlertScriptsPath=/home/zabbix/bin/
308
309 # Location of external scripts
310 #ExternalScripts=/etc/zabbix/externalscripts
311
312 # Location of 'fping. Default is /usr/sbin/fping
313 # Make sure that fping binary has root permissions and SUID flag set
314 #FpingLocation=/usr/sbin/fping
315
316 # Location of fping6. Default is /usr/sbin/fping6
317 # Make sure that fping binary has root permissions and SUID flag set
318 #Fping6Location=/usr/sbin/fping6
319
320 # Temporary directory. Default is /tmp
321 #TmpDir=/tmp
322
323 # Frequency of ICMP pings (item keys 'icmpping' and 'icmppingsec'). Defauls is 60 seconds.
324 #PingerFrequency=60
325
326 # Database host name
327 # Default is localhost
328
329 #DBHost=localhost
330
331 # Database name
332 # SQLite3 note: path to database file must be provided. DBUser and DBPassword are ignored.
333 DBName=proxy
334
335 # Database user
336
337 DBUser=root
338
339 # Database password
340 # Comment this line if no password used
341
342 #DBPassword=<password>
343
344 # Connect to MySQL using Unix socket?
345
346 #DBSocket=/tmp/mysql.sock
347
348
349
350 1.1 net-analyzer/zabbix/files/1.6.5/zabbix_server.conf
351
352 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_server.conf?rev=1.1&view=markup
353 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_server.conf?rev=1.1&content-type=text/plain
354
355 Index: zabbix_server.conf
356 ===================================================================
357 # This is config file for ZABBIX server process
358 # To get more information about ZABBIX,
359 # go http://www.zabbix.com
360
361 ############ GENERAL PARAMETERS #################
362
363 # This defines unique NodeID in distributed setup,
364 # Default value 0 (standalone server)
365 # This parameter must be between 0 and 999
366 #NodeID=0
367
368 # Number of pre-forked instances of pollers
369 # Default value is 5
370 # This parameter must be between 0 and 255
371 #StartPollers=5
372
373 # Number of pre-forked instances of IPMI pollers
374 # Default value is 0
375 # This parameter must be between 0 and 255
376 #StartIPMIPollers=0
377
378 # Number of pre-forked instances of pollers for unreachable hosts
379 # Default value is 1
380 # This parameter must be between 0 and 255
381 #StartPollersUnreachable=1
382
383 # Number of pre-forked instances of trappers
384 # Default value is 5
385 # This parameter must be between 0 and 255
386 #StartTrappers=5
387
388 # Number of pre-forked instances of ICMP pingers
389 # Default value is 1
390 # This parameter must be between 0 and 255
391 #StartPingers=1
392
393 # Number of pre-forked instances of discoverers
394 # Default value is 1
395 # This parameter must be between 0 and 255
396 #StartDiscoverers=1
397
398 # Number of pre-forked instances of HTTP pollers
399 # Default value is 1
400 # This parameter must be between 0 and 255
401 #StartHTTPPollers=1
402
403 # Listen port for trapper. Default port number is 10051. This parameter
404 # must be between 1024 and 32767
405
406 #ListenPort=10051
407
408 # Source IP address for outgouing connections
409 #SourceIP=
410
411 # Listen interface for trapper. Trapper will listen all network interfaces
412 # if this parameter is missing.
413
414 #ListenIP=127.0.0.1
415
416 # How often ZABBIX will perform housekeeping procedure
417 # (in hours)
418 # Default value is 1 hour
419 # Housekeeping is removing unnecessary information from
420 # tables history, alert, and alarms
421 # This parameter must be between 1 and 24
422
423 #HousekeepingFrequency=1
424
425 # How often ZABBIX will try to send unsent alerts
426 # (in seconds)
427 # Default value is 30 seconds
428 SenderFrequency=30
429
430 # Uncomment this line to disable housekeeping procedure
431 #DisableHousekeeping=1
432
433 # Specifies debug level
434 # 0 - debug is not created
435 # 1 - critical information
436 # 2 - error information
437 # 3 - warnings (default)
438 # 4 - for debugging (produces lots of information)
439
440 DebugLevel=3
441
442 # Specifies how long we wait for agent response (in sec)
443 # Must be between 1 and 30
444 Timeout=5
445
446 # Specifies how many seconds trapper may spend processing new data
447 # Must be between 1 and 30
448 #TrapperTimeout=5
449
450 # After how many seconds of unreachability treat a host as unavailable
451 #UnreachablePeriod=45
452
453 # How ofter check host for availability during the unreachability period
454 #UnavailableDelay=15
455
456 # How ofter check host for availability during the unavailability period
457 #UnavailableDelay=60
458
459 # Name of PID file
460
461 PidFile=/var/run/zabbix/zabbix_server.pid
462
463 # Name of log file
464 # If not set, syslog is used
465
466 LogFile=/tmp/zabbix_server.log
467
468 # Maximum size of log file in MB. Set to 0 to disable automatic log rotation.
469 #LogFileSize=1
470
471 # Location for custom alert scripts
472 AlertScriptsPath=/home/zabbix/bin/
473
474 # Location of external scripts
475 #ExternalScripts=/etc/zabbix/externalscripts
476
477 # Location of fping. Default is /usr/sbin/fping
478 # Make sure that fping binary has root permissions and SUID flag set
479 #FpingLocation=/usr/sbin/fping
480
481 # Location of fping6. Default is /usr/sbin/fping6
482 # Make sure that fping binary has root permissions and SUID flag set
483 #Fping6Location=/usr/sbin/fping6
484
485 # Temporary directory. Default is /tmp
486 #TmpDir=/tmp
487
488 # Frequency of ICMP pings (item keys 'icmpping' and 'icmppingsec'). Defauls is 60 seconds.
489 #PingerFrequency=60
490
491 # Database host name
492 # Default is localhost
493
494 #DBHost=localhost
495
496 # Database name
497 # SQLite3 note: path to database file must be provided. DBUser and DBPassword are ignored.
498 DBName=zabbix
499
500 # Database user
501
502 DBUser=root
503
504 # Database password
505 # Comment this line if no password used
506
507 #DBPassword=<password>
508
509 # Connect to MySQL using Unix socket?
510
511 #DBSocket=/tmp/mysql.sock
512
513
514
515 1.1 net-analyzer/zabbix/files/1.6.5/zabbix_trapper.conf
516
517 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_trapper.conf?rev=1.1&view=markup
518 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/zabbix/files/1.6.5/zabbix_trapper.conf?rev=1.1&content-type=text/plain
519
520 Index: zabbix_trapper.conf
521 ===================================================================
522 # This is config file for zabbix_trapper
523 # To get more information about ZABBIX,
524 # go http://www.zabbix.com
525
526 ############ GENERAL PARAMETERS #################
527
528 # Specifies debug level
529 # 1 - critical information
530 # 2 - warnings (default)
531 # 3 - for debugging (produces lots of information)
532
533 DebugLevel=2
534
535 # Spend no more than Timeout seconds on processing
536 # Must be between 1 and 30
537
538 Timeout=3
539
540 # Name of log file
541 # If not set, syslog will be used
542
543 LogFile=/tmp/zabbix_trapper.log
544
545 # Database host name
546 # Default is localhost
547
548 #DBHost=localhost
549
550 # Database name
551
552 DBName=zabbix
553
554 # Database user
555
556 DBUser=root
557
558 # Database password
559 # Comment this line if no password used
560
561 #DBPassword=<password>
562
563 # Connect to MySQL usig Unix socket?
564
565 #DBSocket=/tmp/mysql.sock