diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-04-11 13:40:25 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-04-11 13:40:25 -0400 |
commit | fa193e9618cd60e31d0c0a71a5b6db320e4bb9ed (patch) | |
tree | e3bf89122bce926e1d57d2f91b05561c1fd4524e | |
parent | 050008f3c82733e4f047a33fc9e229cb53e21fff (diff) | |
download | kutter-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>
-rwxr-xr-x | scripts/graphstats.py | 2 |
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') |