File: README

package info (click to toggle)
cacti-spine 0.8.7e-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,900 kB
  • ctags: 534
  • sloc: ansic: 4,564; sh: 882; makefile: 70
file content (37 lines) | stat: -rw-r--r-- 1,433 bytes parent folder | download | duplicates (2)
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
------------------------------------------
spine: a backend data gatherer for cacti
------------------------------------------

This code represents high speed poller replacement for cmd.php.
It has come quite a ways from it's initial development.  It is almost
100% compatible with the legacy cmd.php processor and provides much
more flexibility than cmd.php.

Make sure that you have a good development environment setup to compile spine.
This includes compilers, header files and things such as libtool.  If you have
questions, use the forums.

KNOWN Issues:

1) On Windows, Microsoft does not support a TCP Socket send timeout.  Therefore,
   if you are using TCP ping on Windows, spine will not perform a second or subsequent
   retries to connect and the host will be assumed down on the first failure.  

   If this presents a problem for you, I suggest using another Availability/Reachability
   method, or moving to Linux/UNIX.

2) Spine takes quite a few MySQL connections.  The number of connections is calculated
   as follows:

   a) main poller take one connection
   b) all threads take one connection each
   c) all script servers take one connection each

   Therefore, if you have 4 processes, with 10 threads each, and 5 script servers each
   your spine will take approximately:

   total connections = 4 * ( 1 + 10 + 5 ) = 64

   This may be resolved in a future release of spine.

-Larry Adams (aka TheWitness)