edgecloudsim/scripts/birbnetes/matlab/plotTaskFailureReason.m

15 lines
974 B
Mathematica
Raw Permalink Normal View History

2021-04-05 20:54:58 +02:00
function [] = plotTaskFailureReason()
plotGenericResult(1, 10, 'Failed Task due to VM Capacity (%)', 'ALL_APPS', 'percentage_for_failed');
2021-05-12 23:03:44 +02:00
plotGenericResult(1, 10, {'Failed Task due to VM Capacity';'for Birbnetes App (%)'}, 'BIRBNETES', 'percentage_for_failed');
2021-04-05 20:54:58 +02:00
plotGenericResult(1, 11, 'Failed Task due to Mobility (%)', 'ALL_APPS', 'percentage_for_failed');
2021-05-12 23:03:44 +02:00
plotGenericResult(1, 11, {'Failed Task due to Mobility';'for Birbnetes App (%)'}, 'BIRBNETES', 'percentage_for_failed');
2021-04-05 20:54:58 +02:00
plotGenericResult(5, 5, 'Failed Tasks due to WLAN failure (%)', 'ALL_APPS', 'percentage_for_failed');
2021-05-12 23:03:44 +02:00
plotGenericResult(5, 5, {'Failed Tasks due to WLAN failure';'for Birbnetes App (%)'}, 'BIRBNETES', 'percentage_for_failed');
2021-04-05 20:54:58 +02:00
plotGenericResult(5, 7, 'Failed Tasks due to WAN failure (%)', 'ALL_APPS', 'percentage_for_failed');
2021-05-12 23:03:44 +02:00
plotGenericResult(5, 7, {'Failed Tasks due to WAN failure';'for Birbnetes App (%)'}, 'BIRBNETES', 'percentage_for_failed');
2021-04-05 20:54:58 +02:00
end