Search found 62 matches

by AlexL
Tue Sep 06, 2011 4:36 pm
Forum: Wish list
Topic: Log Analyzer: summary by TestID instead of by TestName ?
Replies: 11
Views: 33648

AlexL wrote:
KS-Soft wrote:AlexL uses this version for a week or two, no bug reports so far, I assume everything works fine
Sorry, couldn't test, I am out of office until Aug. 24.
Alex
I am very sorry, didn't have the time any more and I retired as of August 31.

Thank you for everything, Alex.

Kind regards

Alex
by AlexL
Sat Aug 20, 2011 5:02 pm
Forum: Wish list
Topic: Log Analyzer: summary by TestID instead of by TestName ?
Replies: 11
Views: 33648

KS-Soft wrote:AlexL uses this version for a week or two, no bug reports so far, I assume everything works fine
Sorry, couldn't test, I am out of office until Aug. 24.

Alex
by AlexL
Mon Aug 08, 2011 10:18 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Report Manager - Custom HTML - strange results
Replies: 3
Views: 11634

Re: Report Manager - Custom HTML - strange results

HostMonitor allows to specify custom HTML text for each test status: Good, Bad, Unknown e.t.c. I assume, you have specified your custom HTML text "Test<br>" only for one of possible test statuses. I've checked and yes, you are right! Also, I would recommend you to use macro-variables like...
by AlexL
Mon Aug 08, 2011 9:03 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Report Manager - Custom HTML - strange results
Replies: 3
Views: 11634

Report Manager - Custom HTML - strange results

[Version 8.86] Hi, I defined a Custom HTML report, using "Setup report template". In the "Test items" tab I define the contents of the report, using text and macros. Now, whatever I specify there, for some tests I always get the test name, followed ba comma, followed by test ID. ...
by AlexL
Fri Aug 05, 2011 4:24 am
Forum: Library
Topic: Checking several file shares with one single test
Replies: 0
Views: 30150

Checking several file shares with one single test

In this shell script test I am using the IF EXIST command to check a file share: @ECHO OFF SET server=%1 SET count_missing=0 & SET count_total=0 :check_share SHIFT IF "%1"=="" GOTO end SET /A count_total+=1 IF NOT EXIST \\%server%\%1 ( SET /A count_missing+=1 SET missing=%mis...
by AlexL
Fri Aug 05, 2011 4:10 am
Forum: Wish list
Topic: Log Analyzer: summary by TestID instead of by TestName ?
Replies: 11
Views: 33648

Request sent. Thank you so much, Alex!

Alex
by AlexL
Wed Jul 27, 2011 1:21 pm
Forum: Library
Topic: Checking several services with one single test
Replies: 2
Views: 34430

Checking several services with one single test

In this shell script test I am using the Microsoft's SC.EXE command line utility: @ECHO OFF setlocal enabledelayedexpansion SET not_running= SET skip= SET count= FOR /F "tokens=2" %%a IN ('SC \\%1 QUERY ^| FIND /I "SERVICE_NAME: "') DO SET "var=!var! %%a" FOR %%a IN (%*...
by AlexL
Wed Jul 27, 2011 1:14 pm
Forum: Wish list
Topic: Log Analyzer: summary by TestID instead of by TestName ?
Replies: 11
Views: 33648

KS-Soft wrote:Yes, we plan to implement such option in version 9 Alex
Meaning several months? Would be wonderful !!

Thanks

Alex
by AlexL
Wed Jul 27, 2011 9:02 am
Forum: Wish list
Topic: Log Analyzer: summary by TestID instead of by TestName ?
Replies: 11
Views: 33648

Log Analyzer: summary by TestID instead of by TestName ?

Hi, Log Analyzer currently displays separate summary lines when: - one changes the TestName - if one changes the Method, for example a different timeout for a Ping test I need quite often to slightly adjust the name of a test. For example, from "Server1 Free Space F:" to "Server1 Free...
by AlexL
Wed Jul 27, 2011 8:35 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Shell Script Test - strange %errorlevel% value
Replies: 3
Views: 11942

Re: Shell Script Test - strange %errorlevel% value

Yes, this did the trick!

Thanks a lot!

Alex
by AlexL
Wed Jul 27, 2011 7:01 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Monitoring Status of Many Services
Replies: 2
Views: 11316

Re: Monitoring Status of Many Services

Would like your help in an issue: today I have to monitor 18 different services on 10 different servers, that makes 180 different tests! Would it be possible to create only one test per server that would monitor all 18 services? I am using the Microsoft's SC.EXE command line utility in this generic...
by AlexL
Wed Jul 27, 2011 6:29 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Shell Script Test - strange %errorlevel% value
Replies: 3
Views: 11942

Shell Script Test - strange %errorlevel% value

[AHM v. 8.86, under Windows 2003 and 7] I am trying to compare two files (I cannot use the File Compare test because one of the files has to be dynamically created by the test itself). My script is this: @echo off FC c:\aaa.txt c:\bbb.txt > nul IF %errorlevel% == 0 (echo ScriptRes:OK:%errorlevel%) E...
by AlexL
Wed Feb 16, 2011 4:47 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: SNMP and 3COM SuperStack
Replies: 13
Views: 30574

Thank you Alex!

Alex
by AlexL
Wed Feb 16, 2011 4:28 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Retest after another test was GOOD for X sec
Replies: 1
Views: 8108

Retest after another test was GOOD for X sec

Assume I check if a service is active, and make it dependent of a PING master test. Now, when I reboot the machine, the Ping test will report OK, but probably the service will not yet be stated, and I want the Service test to wait some time before trying. What is the best/easyest solution for this? ...