Source code for keystone.contrib.stats.core

# Copyright 2012 OpenStack Foundation
#
# 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.

from keystone.common import extension
from keystone.common import manager
from keystone.common import wsgi
from keystone import config
from keystone import exception
from keystone.openstack.common import log
from keystone.openstack.common import versionutils


CONF = config.CONF
LOG = log.getLogger(__name__)

extension_data = {
    'name': 'OpenStack Keystone Stats API',
    'namespace': 'http://docs.openstack.org/identity/api/ext/'
                 'OS-STATS/v1.0',
    'alias': 'OS-STATS',
    'updated': '2013-07-07T12:00:0-00:00',
    'description': 'OpenStack Keystone Stats API.',
    'links': [
        {
            'rel': 'describedby',
            # TODO(ayoung): needs a description
            'type': 'text/html',
            'href': 'https://github.com/openstack/identity-api',
        }
    ]}
extension.register_admin_extension(extension_data['alias'], extension_data)


[docs]class Manager(manager.Manager): """Default pivot point for the Stats backend. See :mod:`keystone.common.manager.Manager` for more details on how this dynamically calls the backend. """ def __init__(self): super(Manager, self).__init__(CONF.stats.driver)
[docs]class Driver(object): """Interface description for a Stats driver."""
[docs] def get_stats(self, api): """Retrieve all previously-captured statistics for an interface.""" raise exception.NotImplemented()
[docs] def set_stats(self, api, stats_ref): """Update statistics for an interface.""" raise exception.NotImplemented()
[docs] def increment_stat(self, api, category, value): """Increment the counter for an individual statistic.""" raise exception.NotImplemented()
[docs]class StatsExtension(wsgi.ExtensionRouter): """Reports on previously-collected request/response statistics."""
[docs] def add_routes(self, mapper): stats_controller = StatsController() mapper.connect( '/OS-STATS/stats', controller=stats_controller, action='get_stats', conditions=dict(method=['GET'])) mapper.connect( '/OS-STATS/stats', controller=stats_controller, action='reset_stats', conditions=dict(method=['DELETE']))
[docs]class StatsController(wsgi.Application): def __init__(self): self.stats_api = Manager() super(StatsController, self).__init__()
[docs] def get_stats(self, context): self.assert_admin(context) return { 'OS-STATS:stats': [ { 'type': 'identity', 'api': 'admin', 'extra': self.stats_api.get_stats('admin'), }, { 'type': 'identity', 'api': 'public', 'extra': self.stats_api.get_stats('public'), }, ] }
[docs] def reset_stats(self, context): self.assert_admin(context) self.stats_api.set_stats('public', dict()) self.stats_api.set_stats('admin', dict())
[docs]class StatsMiddleware(wsgi.Middleware): """Monitors various request/response attribute statistics.""" request_attributes = ['application_url', 'method', 'path', 'path_qs', 'remote_addr'] response_attributes = ['status_int'] @versionutils.deprecated( what='keystone.contrib.stats.core.StatsMiddleware', as_of=versionutils.deprecated.ICEHOUSE, in_favor_of='external tooling', remove_in=+2) def __init__(self, *args, **kwargs): self.stats_api = Manager() return super(StatsMiddleware, self).__init__(*args, **kwargs) def _resolve_api(self, host): if host.endswith(':%s' % (CONF.admin_port)): return 'admin' elif host.endswith(':%s' % (CONF.public_port)): return 'public' else: return host
[docs] def capture_stats(self, host, obj, attributes): """Collect each attribute from the given object.""" for attribute in attributes: self.stats_api.increment_stat( self._resolve_api(host), attribute, getattr(obj, attribute))
[docs] def process_request(self, request): """Monitor incoming request attributes.""" self.capture_stats(request.host, request, self.request_attributes)
[docs] def process_response(self, request, response): """Monitor outgoing response attributes.""" self.capture_stats(request.host, response, self.response_attributes) return response