Skip to content

Commit

Permalink
Fix memory stats graph
Browse files Browse the repository at this point in the history
  • Loading branch information
marxin committed Feb 8, 2024
1 parent 0ebfbdc commit c65b970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usage-wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def generate_graph(time_range):
timestamps.append(ts)
cpu_data.append(cpu_stats.value(i))
load_data.append(load_stats.value(i))
memory_data.append(cpu_stats.value(i))
memory_data.append(mem_stats.value(i))
process_usage.append(global_process_usage[i])
disk_read_usage.append(global_disk_read_data[i])
disk_write_usage.append(global_disk_write_data[i])
Expand Down

0 comments on commit c65b970

Please sign in to comment.