Search found 13 matches

by Michael Siepen
Tue Nov 26, 2013 1:01 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Performance Counters tests stopped working
Replies: 8
Views: 18531

On thursday at about 8pm most of the tests using performance counters stopped working. They ran into a timeout. CPU usage tests were still working. Afaik we're not running any WMI based tests. During yesterday nearly all tests restored without changing anything :roll: The error displayed was "E...
by Michael Siepen
Mon Nov 25, 2013 8:10 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Performance Counters tests stopped working
Replies: 8
Views: 18531

We're using this performance counter for active session test "\\srv123\Terminaldienste\Aktive Sitzungen" and this for free ram "\\srv123\Arbeitsspeicher\Verfügbare MB" CPU usage test works for all servers. The remote registry service is running on all target systems. Without chan...
by Michael Siepen
Mon Nov 25, 2013 1:51 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Performance Counters tests stopped working
Replies: 8
Views: 18531

Sorry, my fault. HM itself runs on Windows 7 SP1, the Systems monitored are running on Windows Server 2008 SP2/2008R2 SP1. There're no firewalls active and the systems are on the same LAN segment. All systems are members of the same domain. The user running HM is member of domain admins group. We ch...
by Michael Siepen
Fri Nov 22, 2013 1:55 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Performance Counters tests stopped working
Replies: 8
Views: 18531

Performance Counters tests stopped working

Hi there, yesterday all tests using performance counters stopped working. Restarting HM or even the whole computer it's running on didn't solve the problem. If I try to reconfigure the tests it says that it can't connect to the server or states "Error: Der Wartevorgang wurde abgebrochen". ...
by Michael Siepen
Tue Jan 11, 2011 3:29 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Reading temperature from APC AP9631 via snmp
Replies: 7
Views: 29477

Sorry that isn't possible. At the moment we're using a little shell script to pull temperature readings via snmpget an pass them to HM.
by Michael Siepen
Mon Jan 10, 2011 8:43 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Reading temperature from APC AP9631 via snmp
Replies: 7
Views: 29477

Yes we did, it adds that index to our OID and returns the same value as shown on the webinterface of the management card.
by Michael Siepen
Mon Jan 10, 2011 1:37 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Reading temperature from APC AP9631 via snmp
Replies: 7
Views: 29477

Hi,

your OIDs are the same as the ones we used. Index for the first OID is .1.1 (1st port, 1st value [there's an optional probe for temperature and humidity) and for the 2nd OID it's just .1 (first port).
by Michael Siepen
Fri Jan 07, 2011 2:24 am
Forum: Configuration, Maintenance, Troubleshooting
Topic: Reading temperature from APC AP9631 via snmp
Replies: 7
Views: 29477

Reading temperature from APC AP9631 via snmp

Hi, we're trying to get temperatures from an AP9631 card connected to a smart-ups. We tried various OIDs but get always a no such name error. In the integrated mib browser it shows the right OID and snmp get gets the right values for that OID, but when we try to use it in a test we get the error. Ot...
by Michael Siepen
Mon Mar 01, 2010 2:20 am
Forum: Bug reports
Topic: Client Certificate not visible in HM
Replies: 5
Views: 22663

Back from vacation I tried your hint, it works :) Thank you.
by Michael Siepen
Thu Feb 04, 2010 1:32 am
Forum: Bug reports
Topic: Client Certificate not visible in HM
Replies: 5
Views: 22663

I tried both application and service. Service started with system user and as administrator. At the moment it runs in application mode under a normal user account with local admin rights. This user sees the certificate on the personal tab in internet explorer and windows says everything is alright w...
by Michael Siepen
Wed Feb 03, 2010 2:08 am
Forum: Bug reports
Topic: Client Certificate not visible in HM
Replies: 5
Views: 22663

Client Certificate not visible in HM

Hi, I want to monitor an url which requests a client certificate. As mentioned in http://www.ks-soft.net/cgi-bin/phpBB/viewtopic.php?t=4625&highlight=certificates I installed the certificate and setup HM to use the local cert store but the dropdown menu is empty. I'm using HM 8.32 on windows xp ...
by Michael Siepen
Mon Sep 14, 2009 1:43 am
Forum: Library
Topic: Scripts for monitoring Citrix XenServer
Replies: 1
Views: 36818

Checks free space on a storage repository: #!/usr/bin/perl $limit = $ARGV[0]; chomp($belegt = `xe sr-param-get uuid=$ARGV[1] param-name=physical-utilisation`); chomp($total = `xe sr-param-get uuid=$ARGV[1] param-name=physical-size`); $membyte = $total - $belegt; $memkbyte = $membyte/1024; $memmbyte ...
by Michael Siepen
Mon Sep 14, 2009 1:43 am
Forum: Library
Topic: Scripts for monitoring Citrix XenServer
Replies: 1
Views: 36818

Scripts for monitoring Citrix XenServer

Hi, here are some scripts we're using to monitor our Citrix XenServers. As I am not a programmer they maybe not as elegant as they can be, but they serve our needs. How many virtual machines are running on a host or pool: #!/bin/bash xe vm-list power-state=running | grep running > /tmp/vmlist COUNT=...