Hi David,

Try WMI, using a tool from Microsoft called Scriptomatic
(http://www.microsoft.com/technet/scriptcenter/tools/wmimatic.mspx).

You can write your own scripts or download some from the net and
customize:
http://www.networknewz.com/networknewz-10-20040723MRTGandWMI.html
http://snmpboy.msft.net/

I use one 'default' script where I simple change the variables to get
another values.
Here is a script to get SMTP traffic:

'<-- cut here -->
Set oArgs=wscript.arguments
HostName = oArgs.item(0)
set oSvc = GetObject("winmgmts:\\" & HostName & "\root\cimv2")

wqlQuery = "select BytesReceivedPersec,BytesSentPersec from
Win32_PerfRawData_SMTPSVC_SMTPServer"

for each oData in oSvc.ExecQuery(wqlQuery)
        for each oProperty in oData.Properties_
                if oProperty.Name = "BytesReceivedPersec" then
                        BytesReceivedPersec = oProperty.Value
                elseif oProperty.Name = "BytesSentPersec" then
                        BytesSentPersec = oProperty.Value
                end if
        next
next

wscript.echo BytesReceivedPersec
wscript.echo BytesSentPersec

wscript.echo Date() & " " & Time()
'<-- cut here -->

In Mrtg cfg file, you simple call it by 
Target[exchange_smtp]: `cscript //nologo
\mrtg\scripts-wmi\smtp_traffic.vbs exchange_server`

Remember the user running MRTG must have administrative privileges under
exchange_server.

Done!

Greets,
Edaurdo

> -----Mensagem original-----
> De: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] Em nome de Dave Morrow
> Enviada em: quinta-feira, 11 de novembro de 2004 11:50
> Para: [EMAIL PROTECTED]
> Assunto: [mrtg] Exchange Server 2003
> 
> 
> I was wondering if anyone knows of a good resource for some 
> sample configs for monitoring Exchange Server 2003, 
> particularly queues.  I hate re-inventing the wheel. David A. 
> Morrow Technical Systems Lead Autodata Solutions Company 
> [EMAIL PROTECTED] http://www.autodata.net

--
Unsubscribe mailto:[EMAIL PROTECTED]
Archive     http://www.ee.ethz.ch/~slist/mrtg
FAQ         http://faq.mrtg.org    Homepage     http://www.mrtg.org
WebAdmin    http://www.ee.ethz.ch/~slist/lsg2.cgi

Reply via email to