95a31b2394
This patch adds a new method in API to get API statistics information. Change-Id: I7a0b0f6a9e306653ed5d231a5bfaae79f9ff8d27 Partly-Implements: blueprint api-request-stats
105 lines
3.4 KiB
Python
105 lines
3.4 KiB
Python
# Copyright (c) 2013 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import time
|
|
|
|
from muranoapi.api import v1
|
|
from muranoapi.db.services import stats
|
|
from muranoapi.openstack.common import log as logging
|
|
from muranoapi.openstack.common import wsgi
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class RequestStatisticsCollection(object):
|
|
request_count = 0
|
|
error_count = 0
|
|
average_time = 0.0
|
|
|
|
requests_per_tenant = {}
|
|
errors_per_tenant = {}
|
|
|
|
def add_api_request(self, tenant, ex_time):
|
|
self.average_time = (self.average_time * self.request_count +
|
|
ex_time) / (self.request_count + 1)
|
|
if tenant:
|
|
tenant_count = self.requests_per_tenant.get(tenant, 0)
|
|
tenant_count += 1
|
|
self.requests_per_tenant[tenant] = tenant_count
|
|
|
|
def add_api_error(self, tenant, ex_time):
|
|
self.average_time = (self.average_time * self.request_count +
|
|
ex_time) / (self.request_count + 1)
|
|
if tenant:
|
|
tenant_count = self.errors_per_tenant.get(tenant, 0)
|
|
tenant_count += 1
|
|
self.errors_per_tenant[tenant] = tenant_count
|
|
|
|
|
|
def stats_count(api, method):
|
|
def wrapper(func):
|
|
def wrap(*args, **kwargs):
|
|
try:
|
|
ts = time.time()
|
|
result = func(*args, **kwargs)
|
|
te = time.time()
|
|
tenant = args[1].context.tenant
|
|
update_count(api, method, te - ts,
|
|
tenant)
|
|
return result
|
|
except Exception:
|
|
te = time.time()
|
|
tenant = args[1].context.tenant
|
|
update_error_count(api, method, te - te, tenant)
|
|
raise
|
|
return wrap
|
|
|
|
return wrapper
|
|
|
|
|
|
def update_count(api, method, ex_time, tenant=None):
|
|
LOG.debug("Updating count stats for %s, %s on object %s" % (api,
|
|
method,
|
|
v1.stats))
|
|
v1.stats.add_api_request(tenant, ex_time)
|
|
v1.stats.request_count += 1
|
|
|
|
|
|
def update_error_count(api, method, ex_time, tenant=None):
|
|
LOG.debug("Updating count stats for %s, %s on object %s" % (api,
|
|
method,
|
|
v1.stats))
|
|
v1.stats.add_api_error(tenant, ex_time)
|
|
v1.stats.error_count += 1
|
|
v1.stats.request_count += 1
|
|
|
|
|
|
def init_stats():
|
|
if not v1.stats:
|
|
v1.stats = RequestStatisticsCollection()
|
|
|
|
|
|
class Controller(object):
|
|
def get(self, request):
|
|
model = stats.Statistics()
|
|
entries = model.get_all()
|
|
ent_list = []
|
|
for entry in entries:
|
|
ent_list.append(entry.to_dict())
|
|
return ent_list
|
|
|
|
|
|
def create_resource():
|
|
return wsgi.Resource(Controller())
|