summaryrefslogtreecommitdiffstats
path: root/plugins/network.py
blob: c7405145d8ae8c6fcd49221d45ed4891f38dcbd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/python
# Copyright (C) 2014 Red Hat Inc
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#

import sys
import argparse
import ethtool
import logging

import sadf
from glusternagios import utils

_description = "Network plugin for Nagios provides status and performance " \
               "data of network interfaces.  By default, it provides " \
               "details of all the interfaces having IP addresses"
_sadfNetCommand = ["sadf", "-x", "--", "-n", "DEV"]
_defaultExcludeList = ['lo']


class InterfaceStatus:
    UP = 'UP'
    DOWN = 'DOWN'


def parse_cmdargs():
    parser = argparse.ArgumentParser(description=_description)
    sadf.add_common_args(parser)

    group = parser.add_mutually_exclusive_group()
    group.add_argument("-e", "--exclude", action="append",
                       help="exclude given interface")
    group.add_argument("-i", "--include", action="append",
                       help="add given interface for monitoring")
    group.add_argument("-a", "--all", action="store_true", default=False,
                       help="get status of all interfaces")

    args = parser.parse_args()
    return args


def _getNetworkInterfaces(interfaces=()):
    if interfaces:
        devices = interfaces
    else:
        devices = ethtool.get_active_devices()

    info = {}
    for dev in devices:
        try:
            info[dev] = {'ipaddr': ethtool.get_ipaddr(dev),
                         'flags': ethtool.get_flags(dev)}
        except IOError as e:
            logging.error("unable to get ipaddr/flags for %s: %s" % (dev, e))
            info[dev] = {'ipaddr': None,
                         'flags': None}

    return info


def _getStatMessage(stat, all=False, includes=(), excludes=()):
    excludeList = _defaultExcludeList
    if excludes:
        excludeList += excludes

    rc = utils.PluginStatus.OK
    interfaces = _getNetworkInterfaces()
    devNames = []
    perfLines = []

    for info in stat['network']['net-dev']:
        ipaddr = interfaces.get(info['iface'], {}).get('ipaddr')
        flags = interfaces.get(info['iface'], {}).get('flags')
        if flags and (flags & ethtool.IFF_UP):
            status = InterfaceStatus.UP
        else:
            status = InterfaceStatus.DOWN

        if includes:
            if info['iface'] not in includes:
                continue
        elif not all:
            if not ipaddr:
                continue
            elif info['iface'] in excludeList:
                continue

        if includes and (status == InterfaceStatus.DOWN):
            rc = utils.PluginStatus.WARNING

        devNames.append("%s:%s" % (info['iface'], status))
        perfLines.append("%s.rxpck=%s %s.txpck=%s %s.rxkB=%s %s.txkB=%s"
                         % (info['iface'], info['rxpck'],
                            info['iface'], info['txpck'],
                            info['iface'], info['rxkB'],
                            info['iface'], info['txkB']))

    return (getattr(utils.PluginStatusCode, rc),
            "%s: %s |%s" % (rc,
                            ",".join(devNames),
                            " ".join(perfLines)))


def main():
    args = parse_cmdargs()

    try:
        stat = sadf.getLatestStat(sadf.sadfExecCmd(_sadfNetCommand),
                                  args.interval)
        (rc, msg) = _getStatMessage(stat, all=args.all,
                                    includes=args.include,
                                    excludes=args.exclude)
        print msg
        sys.exit(rc)
    except (sadf.SadfCmdExecFailedException,
            sadf.SadfXmlErrorException,
            KeyError) as e:
        logging.error("unable to get network status: %s" % e)
        print "UNKNOWN"
        sys.exit(utils.PluginStatusCode.UNKNOWN)


if __name__ == '__main__':
    main()