Search found 13 matches
- Tue Nov 26, 2013 1:01 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Performance Counters tests stopped working
- Replies: 8
- Views: 18531
- Mon Nov 25, 2013 8:10 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Performance Counters tests stopped working
- Replies: 8
- Views: 18531
- 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...
- 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". ...
- Tue Jan 11, 2011 3:29 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Reading temperature from APC AP9631 via snmp
- Replies: 7
- Views: 29477
- Mon Jan 10, 2011 8:43 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Reading temperature from APC AP9631 via snmp
- Replies: 7
- Views: 29477
- Mon Jan 10, 2011 1:37 am
- Forum: Configuration, Maintenance, Troubleshooting
- Topic: Reading temperature from APC AP9631 via snmp
- Replies: 7
- Views: 29477
- 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...
- Mon Mar 01, 2010 2:20 am
- Forum: Bug reports
- Topic: Client Certificate not visible in HM
- Replies: 5
- Views: 22663
- 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...
- 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 ...
- 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 ...
- 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=...