From 97693405aa89d19619f1b1c49184bf33ce4fe9bd Mon Sep 17 00:00:00 2001 From: Arvind Date: Sat, 15 Feb 2014 12:40:46 +0530 Subject: [PATCH] Changing channel values. FIXME, these values should be read from a config file, not hard coded in to the report script --- report.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/report.py b/report.py index 47ae1d0..d0af604 100644 --- a/report.py +++ b/report.py @@ -24,9 +24,9 @@ postings = query.Query('lb_postings') callDetails = query.Query('cdr') average_call_length = callDetails.average(startDate, endDate) audio_minutes = callDetails.sum(startDate, endDate) -channel1_minutes = callDetails.load('SIP/10.0.0.20', startDate, endDate) -channel2_minutes = callDetails.load('SIP/10.0.0.21', startDate, endDate) -channel3_minutes = callDetails.load('SIP/10.0.0.22', startDate, endDate) +channel1_minutes = callDetails.load('SIP/10.0.0.30', startDate, endDate) +channel2_minutes = callDetails.load('SIP/10.0.0.31', startDate, endDate) +channel3_minutes = callDetails.load('SIP/10.0.0.33', startDate, endDate) mobilink_load = callDetails.call_distribution(startDate, endDate, 'mobilink') mobilink_tata_load = callDetails.call_distribution(startDate, endDate, 'mobilinktata') -- 1.7.10.4