<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
Paul ,<br>
<br>
Great help , this hint had worked just fine. <br>
<br>
I had to create some smb shares on some filesystem that hadn´t anyone .<br>
<br>
Again thanks for your hint man.<br>
<br>
:-)<br>
<br>
-------- Mensagem original --------
<table class="moz-email-headers-table" border="0" cellpadding="0"
 cellspacing="0">
  <tbody>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">Assunto: </th>
      <td>RE: [Nagios-users] SNMP disk checking in Windows NTFS mounted
system</td>
    </tr>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">Data: </th>
      <td>Tue, 15 Apr 2008 14:54:56 +0100</td>
    </tr>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">De: </th>
      <td>Paul Weaver <a class="moz-txt-link-rfc2396E" href="mailto:paul.weaver@bbc.co.uk"><paul.weaver@bbc.co.uk></a></td>
    </tr>
    <tr>
      <th align="right" nowrap="nowrap" valign="baseline">Para: </th>
      <td><a class="moz-txt-link-rfc2396E" href="mailto:marcos.marinho@rac.com.br"><marcos.marinho@rac.com.br></a>,
<a class="moz-txt-link-rfc2396E" href="mailto:Nagios-users@lists.sourceforge.net"><Nagios-users@lists.sourceforge.net></a></td>
    </tr>
  </tbody>
</table>
<br>
<br>
<pre>> The NTFS Mounted Point File System in Windows is a File 
> System mounted 
> in a Subdirectory, but still a Mounted File System., but a 
> got your point.

> Do you Known any other way in other to get the free space percent in 
> this kind of cenario ?

A couple of options
1) Create a second mountpoint for the drive as a letter -- I have a
server that has "C:\mysql\data" as a separate drive. I've additionally
mounted this as "M:", and can use SNMP to look at the M: drive. I've had
issues with SNMP on windows 2000 before, it sometimes fails to report
the correct value.
2) You can also use samba, pass in a host, share, username and password,
the plugin used smbclient to do a "DIR". Seems to work for me, I knocked
up a plugin for internal use which does this, basically it does:

open(PH, "smbclient //$host/$share -U$username \"$password\" -c \"dir\"
2>/dev/null");
While (<PH>) {$lastLine = $_;}
Then checks for /NT_STATUS_BAD_NETWORK_NAME/, /NT_STATUS_ACCESS_DENIED/
and no output, then checks for the "nnn blocks of size xx. Yyy blocks"

If it finds it, it takes the number used as
100*(blockused/(blockused+blockfree))), which gives me x%

It then returns this value, and nagiosgrapher parses it to plot a graph.

(Don't ask why we have mysql on a windows server!)

<a class="moz-txt-link-freetext" href="http://www.bbc.co.uk/">http://www.bbc.co.uk/</a>
This e-mail (and any attachments) is confidential and may contain personal views which are not the views of the BBC unless specifically stated.
If you have received it in error, please delete it from your system.
Do not use, copy or disclose the information in any way nor act in reliance on it and notify the sender immediately.
Please note that the BBC monitors e-mails sent or received.
Further communication will signify your consent to this.
                                        

</pre>
</body>
</html>