summaryrefslogtreecommitdiffstats
path: root/glances/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/main.py')
-rw-r--r--glances/main.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/glances/main.py b/glances/main.py
index 9dd35117..61a1273f 100644
--- a/glances/main.py
+++ b/glances/main.py
@@ -294,6 +294,13 @@ Examples of use:
dest='export_graph_path',
help='Folder for Graph exporter',
)
+ parser.add_argument(
+ '--export-process-filter',
+ default=None,
+ type=str,
+ dest='export_process_filter',
+ help='set the export process filter (comman separated list of regular expression)',
+ )
# Client/Server option
parser.add_argument(
'-c', '--client', dest='client', help='connect to a Glances server by IPv4/IPv6 address or hostname'
@@ -600,6 +607,10 @@ Examples of use:
args.network_sum = False
args.network_cumul = False
+ # Processlist id updated in processcount
+ if getattr(args, 'enable_processlist', False):
+ enable(args, 'processcount')
+
def init_client_server(self, args):
"""Init Glances client/server mode."""