Index: trunk/ippMonitor/czartool/czartool/CzarDb.pm
===================================================================
--- trunk/ippMonitor/czartool/czartool/CzarDb.pm	(revision 34095)
+++ trunk/ippMonitor/czartool/czartool/CzarDb.pm	(revision 34096)
@@ -927,6 +927,11 @@
         my ($host, $used, $available, $writable, $readable) = @row;
    
-        if (($used/($used+$available))*100 > $limit) {$underLimit = 0;}
-        else {$underLimit = 1;}
+   	if (($used+$available) == 0) {
+	  $underLimit = 1;
+	} elsif (($used/($used+$available))*100 > $limit) {
+	  $underLimit = 0;
+	} else {
+	  $underLimit = 1;
+	}
 
         # Col 1: host
Index: trunk/ippMonitor/czartool/czartool/Nebulous.pm
===================================================================
--- trunk/ippMonitor/czartool/czartool/Nebulous.pm	(revision 34095)
+++ trunk/ippMonitor/czartool/czartool/Nebulous.pm	(revision 34096)
@@ -111,5 +111,6 @@
         }
         elsif (($line =~ m/(ipp[0-9]+\.[0-9]{1})\s.+[0-9]+\s+([0-9]+)\s+([0-9]+)\s+([0-9]+)%.*/i)||
-	       ($line =~ m/(ippb[0-9]+\.[0-9]{1})\s.+[0-9]+\s+([0-9]+)\s+([0-9]+)\s+([0-9]+)%.*/i)) {
+	       ($line =~ m/(ippb[0-9]+\.[0-9]{1})\s.+[0-9]+\s+([0-9]+)\s+([0-9]+)\s+([0-9]+)%.*/i) ||
+	       ($line =~ m/(stsci0[0-9]+\.[0-9]{1})\s.+[0-9]+\s+([0-9]+)\s+([0-9]+)\s+([0-9]+)%.*/i)) {
         
             $self->{_totalHosts}++;
Index: trunk/ippMonitor/czartool/czartool/Plotter.pm
===================================================================
--- trunk/ippMonitor/czartool/czartool/Plotter.pm	(revision 34095)
+++ trunk/ippMonitor/czartool/czartool/Plotter.pm	(revision 34096)
@@ -679,5 +679,4 @@
 
         "\n";
-
     close GP;
 }
