Data Logging

Need new test, action, option? Post request here.
Post Reply
dave rowland
Posts: 2
Joined: Mon Jan 23, 2006 3:28 pm

Data Logging

Post by dave rowland »

Is it possible to have an option to record test results to RRD database, this allows compact hourly/daily/weekly/monthly/yearly trend reports for disk space, cpu etc... competitive product servers alive has such a function
KS-Soft
Posts: 13012
Joined: Wed Apr 03, 2002 6:00 pm
Location: USA
Contact:

Post by KS-Soft »

No, HostMonitor does not provide such option yet

Regards
Alex
dave rowland
Posts: 2
Joined: Mon Jan 23, 2006 3:28 pm

Post by dave rowland »

Any idea when, if not is there an option to dump the variables into a text or csv file. i could then write a cript to full the data nad dump it into the RRD database
KS-Soft
Posts: 13012
Joined: Wed Apr 03, 2002 6:00 pm
Location: USA
Contact:

Post by KS-Soft »

HostMonitor supports text log files.
If you need csv, you may use "execute external program" action + any script (e.g. bat file)

Regards
Alex
ironmike
Posts: 15
Joined: Sun Jun 22, 2003 6:00 pm
Contact:

Post by ironmike »

I was trying to do something like this with a test Alert profile:

Code: Select all

cmd /c "C:\Program Files\HostMonitor4\scripts\test.bat"  %timeDate% %testname% %Reply > C:\test.out
I also tried

Code: Select all

"C:\Program Files\HostMonitor4\scripts\test.bat"  %timeDate% %testname% %Reply > C:\test.out
All that's in the test.bat file is
@echo %1 %2 %3

Is there anything that I am doing incorrectly?

thanks,
Mike
KS-Soft
Posts: 13012
Joined: Wed Apr 03, 2002 6:00 pm
Location: USA
Contact:

Post by KS-Soft »

Is there anything that I am doing incorrectly?
1) Yes, you made at least 2 mistakes:
- there is no %timeDate% variable. Probably you want to use %DateTime%
- also you forgot % after Reply

2) you didn't say what is wrong with result of your experiment

Regards
Alex
Post Reply