~nataliabidart/magicicada-server/bump-client-new-namespace

« back to all changes in this revision

Viewing changes to magicicada/metrics/services.py

  • Committer: Magicicada Bot
  • Author(s): Natalia
  • Date: 2018-04-13 12:21:46 UTC
  • mfrom: (84.2.8 use-venv-dependencies)
  • Revision ID: magicicada_bot-20180413122146-0fd05gi5r0boges8
[r=facundo] - Use devel and non-devel dependencies from a virtualenv.
- Clean former usage of revno from versioninfo.
- Provide travis and docker files so tests can be run in Travis using a xenial image.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2008-2015 Canonical
2
 
# Copyright 2015-2018 Chicharreros (https://launchpad.net/~chicharreros)
3
 
#
4
 
# This program is free software: you can redistribute it and/or modify
5
 
# it under the terms of the GNU Affero General Public License as
6
 
# published by the Free Software Foundation, either version 3 of the
7
 
# License, or (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU Affero General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU Affero General Public License
15
 
# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
 
#
17
 
# For further info, check  http://launchpad.net/magicicada-server
18
 
 
19
 
"""Metric services."""
20
 
 
21
 
from __future__ import unicode_literals
22
 
 
23
 
from metrics import get_meter
24
 
try:
25
 
    from versioninfo import version_info
26
 
except ImportError:
27
 
    version_info = {'revno': 'Undefined'}
28
 
 
29
 
meter = get_meter('service')
30
 
 
31
 
 
32
 
def revno():
33
 
    """Trigger a service revision number update."""
34
 
    meter.gauge('revno', version_info['revno'])