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
the transformation of the responseTimes section of the summary.xml does not work, because the resulting data do not contain the percentiles for example. This is due to the fact you miss to detect the different percentiles identified by nth probably:
Still to check, because empty:container_properties, host_properties, trial_ram, trial_cpu_core, exp_ram, exp_cpu_core, trial_cpu, exp_cpu
Fix to container_properties: add labels, NetworkSettings, aufs in log driver is wrong, it is the volumes driver, image should be read from the config block
Remove cpu_avg from trial_cpu_core, because we have cpu_mean
Testing:
Faban when the execution happens on multiple hosts
The text was updated successfully, but these errors were encountered:
I don't know why network_interface_data is only 0s, it takes what's given by Docker, and if not that what nethogs reports.
exp_byte_size contains the metrics computed over the database sizes of the trials of that experiment.
Currently we don't compute metrics over the network data
Status is also written in the summary file, if it's null it's because it's not reported somehow.
I had no idea that was even a possibility, and frankly there is no way to take all possibilities into account when they are this unpredictable. It's either we have these well defined or not, or else it becomes difficult to manage.
Those tables ended up empty because properties failed, and thus ram and cpu scripts failed to find the properties data (cpu core counts, max memory) they needed.
Just check for the right structure for the percentiles. if the entity <percentile> has the <nth> attribute, you also need to take it into account to differentiate when you generate the name of the metric to store the value in the cassandra table. Otherwise you overwrite it.
Yes, fine. This is a note for me, I'm going to check them after a new run
Resulting data in the tables (refer to the
BenchFlow.wfmsTest.1.1
run):network_interface_data
has only zeroswhat isexp_byte_size
?where the metrics computed using the network data are stored?faban_run_info
: the status is null (you forgot theresultinfo
file as described in Description of Faban data #52)the transformation of the:responseTimes
section of thesummary.xml
does not work, because the resulting data do not contain the percentiles for example. This is due to the fact you miss to detect the different percentiles identified bynth
probablyStill to check, because empty:container_properties,host_properties,trial_ram,trial_cpu_core,exp_ram,exp_cpu_core,trial_cpu,exp_cpuRemove cpu_avg from trial_cpu_core, because we have cpu_meanTesting:Faban when the execution happens on multiple hostsThe text was updated successfully, but these errors were encountered: