Changes between Version 2 and Version 3 of documentation/tools/monitoring
- Timestamp:
- 02/14/12 08:57:40 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
documentation/tools/monitoring
v2 v3 22 22 and run: 23 23 {{{ 24 24 cmake ../ 25 25 }}} 26 26 if you have not install libhamcast to standard directories, run: 27 27 {{{ 28 29 28 cmake -DHAMCAST_INCLUDE_PATH=<path-to-headers> \ 29 -DHAMCAST_LIBRARY_PATH=<path-to-libhamcast> ../ 30 30 }}} 31 31 'path-to-headers' is the absolute path where 'hamcast/hamcast.hpp' can … … 34 34 This will initialize build environment, if no errors occure run: 35 35 {{{ 36 36 make 37 37 }}} 38 38 If build was successful you find the binaries in 'build' folder. … … 64 64 All arguments are optional, the program can also run on default settings. 65 65 {{{ 66 66 ./mdaemon -d example -g ip://239.0.0.1:1234 67 67 }}} 68 68 … … 77 77 All arguments are optional and can be run on default. 78 78 {{{ 79 79 ./mcollector -g ip://239.0.0.1:1234 -p 35000 -s 10 -m 30 80 80 }}} 81 81 82 === mviewer === 82 83 … … 90 91 (ii) mcollector, and (iii) mviewer. Additional information on these 91 92 can be found in corresponding REAMDE in subdirectories. 92