glances_statsd.py 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# -*- coding: utf-8 -*-
#
# This file is part of Glances.
#
# Copyright (C) 2015 Nicolargo <nicolas@nicolargo.com>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Glances is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

"""Statsd interface class."""

import sys
A
Alessio Sergi 已提交
23
from numbers import Number
24

25 26
from glances.compat import NoOptionError, NoSectionError, range
from glances.logger import logger
27 28
from glances.exports.glances_export import GlancesExport

A
Alessio Sergi 已提交
29 30
from statsd import StatsClient

31 32 33 34 35 36 37

class Export(GlancesExport):

    """This class manages the Statsd export module."""

    def __init__(self, config=None, args=None):
        """Init the Statsd export IF."""
A
Alessio Sergi 已提交
38
        super(Export, self).__init__(config=config, args=args)
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

        # Load the InfluxDB configuration file
        self.host = None
        self.port = None
        self.prefix = None
        self.export_enable = self.load_conf()
        if not self.export_enable:
            sys.exit(2)

        # Default prefix for stats is 'glances'
        if self.prefix is None:
            self.prefix = 'glances'

        # Init the Statsd client
        self.client = StatsClient(self.host,
                                  int(self.port),
                                  prefix=self.prefix)

    def load_conf(self, section="statsd"):
A
PEP 257  
Alessio Sergi 已提交
58
        """Load the Statsd configuration in the Glances configuration file."""
59 60 61
        if self.config is None:
            return False
        try:
62 63
            self.host = self.config.get_value(section, 'host')
            self.port = self.config.get_value(section, 'port')
64 65 66 67 68 69 70 71 72 73
        except NoSectionError:
            logger.critical("No Statsd configuration found")
            return False
        except NoOptionError as e:
            logger.critical("Error in the Statsd configuration (%s)" % e)
            return False
        else:
            logger.debug("Load Statsd from the Glances configuration file")
        # Prefix is optional
        try:
74
            self.prefix = self.config.get_value(section, 'prefix')
A
Alessio Sergi 已提交
75
        except NoOptionError:
76 77 78 79
            pass
        return True

    def init(self, prefix='glances'):
A
PEP 257  
Alessio Sergi 已提交
80
        """Init the connection to the Statsd server."""
81 82 83 84 85 86
        if not self.export_enable:
            return None
        return StatsClient(self.host,
                           self.port,
                           prefix=prefix)

N
Nicolargo 已提交
87
    def export(self, name, columns, points):
A
PEP 257  
Alessio Sergi 已提交
88
        """Export the stats to the Statsd server."""
A
Alessio Sergi 已提交
89
        for i in range(len(columns)):
90 91 92 93 94 95 96
            if not isinstance(points[i], Number):
                continue
            stat_name = '{0}.{1}'.format(name, columns[i])
            stat_value = points[i]
            try:
                self.client.gauge(stat_name, stat_value)
            except Exception as e:
N
Nicolargo 已提交
97
                logger.error("Can not export stats to Statsd (%s)" % e)
98
        logger.debug("Export {0} stats to Statsd".format(name))