Files
monasca-api/monasca_api/api/metrics_api_v2.py
Roland Hochmuth 89731de2a6 Updated for Falcon 0.2 and clean-up
Upgraded to Falcon 0.2
Converted from stevedore to simport
Converted from monasca to monasca_api
Removed events. Events api is in monasca-events-api
Removed references to elastic search
Removed support for message format translations
Removed unused and dead code
Removed author tags

Change-Id: I5034ea256372d22b9f824e301c379da81f82b4e2
2015-06-06 21:47:03 -06:00

58 lines
1.7 KiB
Python

# Copyright 2014 IBM Corp
# Copyright 2014 Hewlett-Packard
#
# 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 monasca_api.openstack.common import log
LOG = log.getLogger(__name__)
class MetricsV2API(object):
def __init__(self):
super(MetricsV2API, self).__init__()
LOG.info('Initializing MetricsV2API!')
def on_get(self, req, res):
res.status = '501 Not Implemented'
def on_post(self, req, res):
res.status = '501 Not Implemented'
class MetricsMeasurementsV2API(object):
def __init__(self):
super(MetricsMeasurementsV2API, self).__init__()
LOG.info('Initializing MetricsMeasurementsV2API!')
def on_get(self, req, res):
res.status = '501 Not Implemented'
class MetricsStatisticsV2API(object):
def __init__(self):
super(MetricsStatisticsV2API, self).__init__()
LOG.info('Initializing MetricsStatisticsV2API!')
def on_get(self, req, res):
res.status = '501 Not Implemented'
class MetricsNamesV2API(object):
def __init__(self):
super(MetricsNamesV2API, self).__init__()
LOG.info('Initializing MetricsNamesV2API!')
def on_get(self, req, res):
res.status = '501 Not Implemented'