diff --git a/NEWS b/NEWS index f410dc54..40b0e916 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,6 @@ Version 1.6.1 * Take into account the number of core in the CPU process limit * Code refactory: PsUtil < 0.4.1 is depredicated (Thk to Alessio) - Version 1.6 =========== diff --git a/glances/glances.py b/glances/glances.py index 4dd1848b..6ac55130 100755 --- a/glances/glances.py +++ b/glances/glances.py @@ -3,7 +3,7 @@ # # Glances is a simple textual monitoring tool # -# Copyright (C) 2012 Nicolargo +# Copyright (C) 2013 Nicolargo # # Glances is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by @@ -140,6 +140,12 @@ except ImportError: else: csv_lib_tag = True +# Default tag +sensors_tag = False +network_tag = True +diskio_tag = True +fs_tag = True + # Define the default configuration file DEFAULT_CONF_FILE = "/etc/glances/glances.conf" diff --git a/glances/unitest.py b/glances/unitest.py index 644a96f7..aa497151 100755 --- a/glances/unitest.py +++ b/glances/unitest.py @@ -30,7 +30,6 @@ import signal import time import glances - class TestGlancesStat(unittest.TestCase): def setUp(self):