This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function tab1_gen_report(){ | |
var team = $('#ms_team_tab1').val(), | |
granularity = $('#ms_granularity_tab1').val(); | |
gen_chart('stacked_column', 'get_case_volume_by_ttc', 'chart_case_volume_by_ttc', team, granularity, start_date, end_date); | |
gen_chart('stacked_column', 'get_case_volume_by_ttc_sev_5_1', 'chart_case_volume_by_ttc_sev_5_1', team, granularity, start_date, end_date); | |
gen_chart('stacked_column', 'get_case_volume_by_ttc_sev_2_3_4', 'chart_case_volume_by_ttc_sev_2_3_4', team, granularity, start_date, end_date); | |
gen_chart('spline', 'get_avg_ttc', 'chart_avg_ttc', team, granularity, start_date, end_date); | |
gen_chart('spline', 'get_avg_ttc_by_severity', 'chart_avg_ttc_by_severity', team, granularity, start_date, end_date); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from boto import vpc | |
connvpc = vpc.connect_to_region('cn-north-1') | |
vpcs = connvpc.get_all_vpcs() | |
subnets = connvpc.get_all_subnets() | |
print vpcs | |
print subnets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.info-section{ | |
background-color: #fff; | |
padding: 30px 60px; | |
} | |
.info-section header{ | |
text-align: center; | |
} | |
.info-section header h2 { |