-
Confused Where To Add Module Code
Hi all,
I have setup PandoraFMS and it is running very well for a good week now. I have looked through lots of documentation, but I still cannot understand how to install or setup a new module in the PandoraFMS console. For example, module code between module_begin and module_end
I want t add a new module for Stock with:
module_begin
module_name Google_Stock
module_type generic_data
module_description Stock value of Google (GOOG) in Nasdac
module_exec echo -e “GET http://download.finance.yahoo.com/d/quotes.csv?s=GOOG&f=sl1d1t1c1ohgv&e=.csv HTTP/1.0nn” | nc -w 10 download.finance.yahoo.com 80 | tail -1 | cut -f 2 -d “,”
module_endI am under the impression that we need to make a .pspz out of a new made text file containing the module code and upload it through the console this way, but I am probably mistaken.
This is pretty much where I am stuck at with PandoraFMS. Everything else is working great and I am monitoring all my servers and workstations. Thanks in advance.