Index: trunk/ippMonitor/czartool/czarpoll.pl
===================================================================
--- trunk/ippMonitor/czartool/czarpoll.pl	(revision 40092)
+++ trunk/ippMonitor/czartool/czarpoll.pl	(revision 40702)
@@ -350,29 +350,35 @@
     $plotter->setStandardMode();
 
-    foreach $stage (@stages) {
-        foreach $row ( @{$rows} ) {
-            my ($label) = @{$row};
-
-            # skip update labels for now. The plots are not relevant.
-            next if $label =~ 'ps_ud';
-
-            chomp($label);
-            $plotter->createTimeSeries($label, $stage, $begin, $end, 1, 0, 1);
-        }
-    }
+    #TdB 20190411: We are turning off these plots for the time being. They take up a lot of time and are rarely looked at. If need be, can be generated on the fly using czartool.
+    #foreach $stage (@stages) {
+    #    foreach $row ( @{$rows} ) {
+    #        my ($label) = @{$row};
+
+    #        # skip update labels for now. The plots are not relevant.
+    #        next if $label =~ 'ps_ud';
+
+    #        chomp($label);
+    #        $plotter->createTimeSeries($label, $stage, $begin, $end, 1, 0, 1);
+    #    }
+    #}
 
     my $allServerLabels = undef;
 
     # create plots for each label for all stages
-    foreach $row ( @{$rows} ) {
-        my ($label) = @{$row};
-
-        # skip update labels for now. The plots are not relevant.
-        next if $label =~ 'ps_ud';
-	# Skip individual label tables for raw-like stages.
-#	if ($stage =~ /Exp/) { next; } 
-
-        $plotter->createTimeSeries($label, undef, $begin, $end, 1, 1, 1);
-    }
+    #TdB 20190411: We are turning off some these plots for the time being.
+    #foreach $row ( @{$rows} ) {
+    #    my ($label) = @{$row};
+
+    #  #  # skip update labels for now. The plots are not relevant.
+    #  #  next if $label =~ 'ps_ud';
+    #  #  # Skip individual label tables for raw-like stages.
+    #  # if ($stage =~ /Exp/) { next; } 
+    #  #  $plotter->createTimeSeries($label, undef, $begin, $end, 1, 1, 1);
+
+    #    #TdB 20190411: Make the all stages plots for the nightlyscience labels only
+    #    if ($label =~ m/nightlyscience/) {
+    #      $plotter->createTimeSeries($label, undef, $begin, $end, 1, 0, 1);
+    #    }
+    #}
 
     $allServerLabels = "all_".$server."_labels";
@@ -380,8 +386,8 @@
     $plotter->createTimeSeries($allServerLabels, undef, $begin, $end, 1, 0, 1);
 
-    foreach $stage (@stages) {
-
-        $plotter->createTimeSeries($allServerLabels, $stage, $begin, $end, 1, 0, 1); # TODO must be a neater way...
-    }
+    #TdB 20190411: We are turning off these plots for the time being. They take up a lot of time and are rarely looked at. If need be, can be generated on the fly using czartool.
+    #foreach $stage (@stages) {
+    #    $plotter->createTimeSeries($allServerLabels, $stage, $begin, $end, 1, 0, 1); # TODO must be a neater way...
+    #}
 }
 
