ssiog/metrics_logger.py [41:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                try:
                    metrics = []
                    while True:
                        metrics.append(self.queue.get_nowait())
                except queue.Empty:
                    pass

                if metrics:
                    writer.writerows(metrics)
                    csvfile.flush()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ssiog/metrics_logger.py [54:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    try:
                        metrics = []
                        while True:
                            metrics.append(self.queue.get_nowait())
                    except queue.Empty:
                        pass
                    
                    if metrics:
                        writer.writerows(metrics)
                        csvfile.flush()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



