CC-4661: Listener Statistics

-backend part working
This commit is contained in:
Martin Konecny 2012-11-02 17:50:43 -04:00
parent 8b70136dd6
commit 6438b54a5f
7 changed files with 238 additions and 1 deletions

View file

@ -120,3 +120,6 @@ notify_webstream_data = 'notify-webstream-data/api_key/%%api_key%%/media_id/%%me
notify_liquidsoap_started = 'rabbitmq-do-push/api_key/%%api_key%%/format/json'
get_stream_parameters = 'get-stream-parameters/api_key/%%api_key%%/format/json'
push_stream_stats = 'push-stream-stats/api_key/%%api_key%%/format/json'

View file

@ -737,3 +737,35 @@ class AirtimeApiClient(object):
self.logger.info(self.get_response_from_server(request, attempts = 5))
except Exception, e:
self.logger.error("Exception: %s", e)
def get_stream_parameters(self):
response = None
try:
url = "http://%(base_url)s:%(base_port)s/%(api_base)s/%(get_stream_parameters)s/" % (self.config)
url = url.replace("%%api_key%%", self.config["api_key"])
self.logger.debug(url)
request = urllib2.Request(url)
response = self.get_response_from_server(request, attempts = 5)
self.logger.debug(response)
response = json.loads(response)
except Exception, e:
self.logger.error("Exception: %s", e)
return response
def push_stream_stats(self, data):
try:
url = "http://%(base_url)s:%(base_port)s/%(api_base)s/%(push_stream_stats)s/" \
% (self.config)
url = url.replace("%%api_key%%", self.config["api_key"])
json_data = json.dumps(data)
encoded_data = urllib.urlencode({'data': json_data})
request = urllib2.Request(url, encoded_data)
print self.get_response_from_server(request)
except Exception, e:
self.logger.error("Exception: %s", e)