~ubuntu-branches/ubuntu/wily/python-ceilometerclient/wily

« back to all changes in this revision

Viewing changes to ceilometerclient/v2/statistics.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-03-01 12:47:39 UTC
  • Revision ID: package-import@ubuntu.com-20130301124739-0in66psacnqpksch
Tags: upstream-0.1~dde86a3
ImportĀ upstreamĀ versionĀ 0.1~dde86a3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2012 OpenStack LLC.
 
2
# All Rights Reserved.
 
3
#
 
4
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 
5
#    not use this file except in compliance with the License. You may obtain
 
6
#    a copy of the License at
 
7
#
 
8
#         http://www.apache.org/licenses/LICENSE-2.0
 
9
#
 
10
#    Unless required by applicable law or agreed to in writing, software
 
11
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
12
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
13
#    License for the specific language governing permissions and limitations
 
14
#    under the License.
 
15
 
 
16
from ceilometerclient.v2 import samples
 
17
from ceilometerclient.common import base
 
18
 
 
19
 
 
20
class Statistics(base.Resource):
 
21
    def __repr__(self):
 
22
        return "<Statistics %s>" % self._info
 
23
 
 
24
 
 
25
class StatisticsManager(samples.SampleManager):
 
26
    resource_class = Statistics
 
27
 
 
28
    def list(self, meter_name, q=None):
 
29
        return self._list(self.build_url(
 
30
            '/v2/meters/' + meter_name + '/statistics',
 
31
            q))