8

I'm looking for some software to monitor a single server for performance alerts. Preferably free and with a reasonable default configuration.

Edit: To clarify, I would like to run this software on a Windows machine and monitor a remote Windows server for CPU/memory/etc. usage alerts (not a single application).

Edit: I suppose its not necessary that this software be run remotely, I would also settle for something that ran on the server and emailed me if there was an alert. It seems like Windows performance logs and alerts might be used for this purpose somehow but it was not immediately obvious to me.

Edit: Found a neat tool on the coding horror blog, not as useful for remote monitoring but very useful for things you would worry about as a server admin: http://www.winsupersite.com/showcase/winvista_ff_rmon.asp

Luke
  • 18,585
  • 24
  • 87
  • 110

7 Answers7

2

I've been experimenting with munin for monitoring around 8 Windows 2003 servers.

http://munin.projects.linpro.no/

Its a free linux-based system and the Windows agent works well & is easily extensible. Setup is simple if you have some minimal linux knowledge.

rupello
  • 8,361
  • 2
  • 37
  • 34
2

For performance monitor - start it on the server (Win+R and enter "perfmon"). Select "Performance Logs and Alerts" and expand. Select "Alerts". Select "Action" & then "New Alert". Give the alert a name, click "Add" to add a counter (there are hundres of counters, for example CPU %), then give it some limits.

Select the "Action" tab, and then decide what you want to do. You may need a third party program - for example Blat to send emails - but basiaclly any script can be run.

SeanKilleen
  • 8,809
  • 17
  • 80
  • 133
Tubs
  • 346
  • 1
  • 6
  • I'm using bmail instead of blat, but this is just the simple low-scale solution I was looking for. – Luke Apr 27 '09 at 20:00
1

If you want something free, try Nagios.

http://www.nagios.org/

TheSmurf
  • 15,337
  • 3
  • 40
  • 48
1

You can configure you perfmon to collect specific counters to "Trace Logs" files on your hard drive. We usually keep daily logs for important counters:

  • Vital signs (CPU, Memory, HDD space)
  • Application specific (ASP.Net counters / SQL Counters)
  • Custom counters if your applicaiton exposes such

You can add "Alerts" for specific counters / counters groups and define actions when these alerts fire.

joeysim
  • 494
  • 1
  • 4
  • 13
1

A list of monitoring tools from the High Scalability blog

Assaf Lavie
  • 73,079
  • 34
  • 148
  • 203
0

MS's solutions used to be called MOM. It looks like it's been redesigned a bit since I last used it.

Tanjim Ahmed Khan
  • 650
  • 1
  • 9
  • 21
brendan
  • 29,308
  • 20
  • 68
  • 109
0

I kind of like Perfmon myself. It comes with windows out of the box and has support for a lot of different measurements.

Dave Challis
  • 3,525
  • 2
  • 37
  • 65
Scott Wisniewski
  • 24,561
  • 8
  • 60
  • 89