summaryrefslogtreecommitdiffstats
path: root/glances/exports/glances_csv.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/exports/glances_csv.py')
-rw-r--r--glances/exports/glances_csv.py36
1 files changed, 17 insertions, 19 deletions
diff --git a/glances/exports/glances_csv.py b/glances/exports/glances_csv.py
index 7df52977..7c680306 100644
--- a/glances/exports/glances_csv.py
+++ b/glances/exports/glances_csv.py
@@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
-# Copyright (C) 2018 Nicolargo <nicolas@nicolargo.com>
+# Copyright (C) 2019 Nicolargo <nicolas@nicolargo.com>
#
# 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
@@ -64,33 +64,31 @@ class Export(GlancesExport):
def update(self, stats):
"""Update stats in the CSV output file."""
# Get the stats
- all_stats = stats.getAllExports()
- plugins = stats.getPluginsList()
+ all_stats = stats.getAllExportsAsDict(plugin_list=self.plugins_to_export())
# Init data with timestamp (issue#708)
if self.first_line:
csv_header = ['timestamp']
csv_data = [time.strftime('%Y-%m-%d %H:%M:%S')]
- # Loop over available plugin
- for i, plugin in enumerate(plugins):
- if plugin in self.plugins_to_export():
- if isinstance(all_stats[i], list):
- for stat in all_stats[i]:
- # First line: header
- if self.first_line:
- csv_header += ('{}_{}_{}'.format(
- plugin, self.get_item_key(stat), item) for item in stat)
- # Others lines: stats
- csv_data += itervalues(stat)
- elif isinstance(all_stats[i], dict):
+ # Loop over plugins to export
+ for plugin in self.plugins_to_export():
+ if isinstance(all_stats[plugin], list):
+ for stat in all_stats[plugin]:
# First line: header
if self.first_line:
- fieldnames = iterkeys(all_stats[i])
- csv_header += ('{}_{}'.format(plugin, fieldname)
- for fieldname in fieldnames)
+ csv_header += ('{}_{}_{}'.format(
+ plugin, self.get_item_key(stat), item) for item in stat)
# Others lines: stats
- csv_data += itervalues(all_stats[i])
+ csv_data += itervalues(stat)
+ elif isinstance(all_stats[plugin], dict):
+ # First line: header
+ if self.first_line:
+ fieldnames = iterkeys(all_stats[plugin])
+ csv_header += ('{}_{}'.format(plugin, fieldname)
+ for fieldname in fieldnames)
+ # Others lines: stats
+ csv_data += itervalues(all_stats[plugin])
# Export to CSV
if self.first_line: