You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def run
cpu = fetch_process_cpu_usage
memory = fetch_process_memory_usage
disk = fetch_disk_usage
store_data({cpu:, memory:, disk:})
end
store_data({cpu:, memory:, disk:}) result in syntax error.
change to this is working
def run
cpu = fetch_process_cpu_usage
memory = fetch_process_memory_usage
disk = fetch_disk_usage
store_data({cpu: cpu, memory: memory, disk: disk})
end
The text was updated successfully, but these errors were encountered:
store_data({cpu:, memory:, disk:}) result in syntax error.
change to this is working
The text was updated successfully, but these errors were encountered: