<div>I am able to graph CPU statistics but not memory stats for my linux clients.</div>
<div> </div>
<div>I use NRPE to monitor memory on my linux clients.</div>
<div> </div>
<div> </div>
<div>nagios graph map config is below:</div>
<div> </div>
<div> </div>
<div>
<p># Service Type Linux Memory Check<br># output:Memory Check: total:1106.54 Mb - used: 304.37 Mb (28%) - free: 802.16 Mb (72%)<br> /output:Memory Check: total:([-.0-9]+) Mb - used: ([-.0-9]+) Mb \((\d+)%\) - free: ([-.0-9]+) Mb \((\d+)%\)/<br>
 and push @s, [ memory,<br>              [ bytesmax, GAUGE, $1*1024**2 ],<br>              [ bytesused, GAUGE, $2*1024**2 ],<br>              [ pctused, GAUGE, $3 ],<br>              [ bytesfree, GAUGE, $4*1024**2 ],<br>              [ pctfree, GAUGE, $5 ] ];</p>

<p> </p></div>