aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/graphstats.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-04-11 13:40:25 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-04-11 13:40:25 -0400
commitfa193e9618cd60e31d0c0a71a5b6db320e4bb9ed (patch)
treee3bf89122bce926e1d57d2f91b05561c1fd4524e /scripts/graphstats.py
parent050008f3c82733e4f047a33fc9e229cb53e21fff (diff)
downloadkutter-fa193e9618cd60e31d0c0a71a5b6db320e4bb9ed.tar.gz
kutter-fa193e9618cd60e31d0c0a71a5b6db320e4bb9ed.tar.xz
kutter-fa193e9618cd60e31d0c0a71a5b6db320e4bb9ed.zip
graphstats: The times are no longer in UTC time
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/graphstats.py')
-rwxr-xr-xscripts/graphstats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/graphstats.py b/scripts/graphstats.py
index ef93e711..ce191d9b 100755
--- a/scripts/graphstats.py
+++ b/scripts/graphstats.py
@@ -85,7 +85,7 @@ def plot_mcu(data, maxbw, outname):
# Build plot
fig, ax1 = plt.subplots()
ax1.set_title("MCU bandwidth and load utilization")
- ax1.set_xlabel('Time (UTC)')
+ ax1.set_xlabel('Time')
ax1.set_ylabel('Usage (%)')
ax1.plot_date(times, bwdeltas, 'g', label='Bandwidth')
ax1.plot_date(times, loads, 'r', label='MCU load')