diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-05-06 15:01:27 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-05-06 15:01:27 -0400 |
commit | 6f0b7c7a2a81d88502f42bbeeac2d3b39f546a5f (patch) | |
tree | 10b057da7e1d7f1f580ce05cc8ea34992e18a718 /scripts | |
parent | 661f5b08c8ea62aec55e5fda555b970a1895d073 (diff) | |
download | kutter-6f0b7c7a2a81d88502f42bbeeac2d3b39f546a5f.tar.gz kutter-6f0b7c7a2a81d88502f42bbeeac2d3b39f546a5f.tar.xz kutter-6f0b7c7a2a81d88502f42bbeeac2d3b39f546a5f.zip |
graphstats: Fix system graph title
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-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 b00477f9..f0e24c91 100755 --- a/scripts/graphstats.py +++ b/scripts/graphstats.py @@ -161,7 +161,7 @@ def plot_system(data): # Build plot fig, ax1 = matplotlib.pyplot.subplots() - ax1.set_title("MCU bandwidth and load utilization") + ax1.set_title("System load utilization") ax1.set_xlabel('Time') ax1.set_ylabel('Load (% of a core)') ax1.plot_date(times, sysloads, '-', label='system load', |