We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b334a8b commit 8934675Copy full SHA for 8934675
code.js
@@ -82,7 +82,7 @@ function removeField(button) {
82
const total_duration = data?.['data']?.['[RUNTIME]']?.['data']?.['phase_time_syscall_system']?.['data']?.['?.[SYSTEM]']?.['data']?.[uuid]?.['mean'];
83
const network_transfer = data?.['data']?.['[RUNTIME]']?.['data']?.['network_io_cgroup_container']?.['data']?.['gmt-playwright-nodejs']?.['data']?.[uuid]?.['mean'];
84
85
- cpu_power = (cpu_energy/total_duration).toFixed(2);
+ const cpu_power = (cpu_energy/total_duration).toFixed(2);
86
const network_carbon = (((network_transfer / 1e9) * 0.06)*300*10000).toFixed(2);
87
88
0 commit comments