Search found 3 matches

by Gumby
Tue Feb 18, 2014 3:31 pm
Forum: Open Source Nagios Projects
Topic: Monitor Windows Server Bandwidth
Replies: 5
Views: 2019

Re: Monitor Windows Server Bandwidth

What if I was to run a script via task scheduler to run at *:55 using the following powershell command and write that number to a file Get-Counter "\\$HOSTNAME\$NIC_NAME\bytes total/sec" -SampleInterval 3600 | Foreach-Object {$_.CounterSamples[0].CookedValue} This will return a number like...
by Gumby
Tue Feb 18, 2014 2:48 pm
Forum: Open Source Nagios Projects
Topic: Monitor Windows Server Bandwidth
Replies: 5
Views: 2019

Re: Monitor Windows Server Bandwidth

If you look at the performance counters for that NIC on the windows system, do they offer the data you need? If so we can help you monitor them. Thanks for the response slansing. The following will tell me how much data has been used in 60 minutes using powershell's Get-Counter. This has to be exec...
by Gumby
Tue Feb 18, 2014 1:37 pm
Forum: Open Source Nagios Projects
Topic: Monitor Windows Server Bandwidth
Replies: 5
Views: 2019

Monitor Windows Server Bandwidth

Hi all, I am looking to monitor the bandwidth usage on a few windows servers. What I would like to do is monitor the total throughput of outbound data for a specific NIC over a given amount of time (for example 1 or 3 hours). Is this possible with Nagios? I haven't been able to find a plugin that do...