File: alarm.py

package info (click to toggle)
python-vitrageclient 5.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 648 kB
  • sloc: python: 1,807; makefile: 26; sh: 2
file content (169 lines) | stat: -rwxr-xr-x 6,229 bytes parent folder | download | duplicates (5)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# 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 cliff import lister
from cliff import show

from vitrageclient.common import utils
from vitrageclient import exceptions as exc


class AlarmList(lister.Lister):
    """List all alarms"""

    def get_parser(self, prog_name):
        parser = super(AlarmList, self).get_parser(prog_name)
        parser.add_argument("vitrage_id",
                            default='all',
                            nargs='?',
                            metavar="<vitrage id>",
                            help="Vitrage id of the affected resource")

        parser.add_argument('--all-tenants',
                            default=False,
                            dest='all_tenants',
                            action='store_true',
                            help='Shows alarms of all the tenants in the '
                                 'entity graph')

        parser.add_argument('--limit',
                            dest='limit',
                            help='Maximal number of alarms to show. Default '
                                 'is 1000')

        parser.add_argument('--marker',
                            dest='marker',
                            help='Marker for the next page')

        return parser

    def take_action(self, parsed_args):
        vitrage_id = parsed_args.vitrage_id
        all_tenants = parsed_args.all_tenants
        limit = parsed_args.limit
        marker = parsed_args.marker

        alarms = utils.get_client(self).alarm.list(vitrage_id=vitrage_id,
                                                   limit=limit,
                                                   marker=marker,
                                                   all_tenants=all_tenants)
        return utils.list2cols_with_rename(
            (
                ('ID', 'vitrage_id'),
                ('Type', 'vitrage_type'),
                ('Name', 'name'),
                ('Resource Type', 'vitrage_resource_type'),
                ('Resource ID', 'vitrage_resource_id'),
                ('Severity', 'vitrage_operational_severity'),
                ('Update Time', 'update_timestamp'),
            ), alarms)


class AlarmHistory(lister.Lister):
    """List the alarm history"""

    def get_parser(self, prog_name):
        parser = super(AlarmHistory, self).get_parser(prog_name)
        parser.add_argument('--all-tenants',
                            default=False,
                            dest='all_tenants',
                            action='store_true',
                            help='Shows alarms of all the tenants in the '
                                 'entity graph')

        parser.add_argument('--limit',
                            dest='limit',
                            help='Maximal number of alarms to show. Default '
                                 'is 1000')

        parser.add_argument('--marker',
                            dest='marker',
                            help='Marker for the next page')

        parser.add_argument('--start',
                            dest='start',
                            help='list alarm from this date')

        parser.add_argument('--end',
                            dest='end',
                            help='list alarm until this date')

        return parser

    def take_action(self, parsed_args):
        all_tenants = parsed_args.all_tenants
        limit = parsed_args.limit
        marker = parsed_args.marker
        start = parsed_args.start
        end = parsed_args.end

        if end and not start:
            raise exc.CommandError("--end argument must be used with --start")

        alarms = utils.get_client(self).alarm.history(limit=limit,
                                                      marker=marker,
                                                      start=start,
                                                      end=end,
                                                      all_tenants=all_tenants)
        return utils.list2cols_with_rename(
            (
                ('ID', 'vitrage_id'),
                ('Type', 'vitrage_type'),
                ('Name', 'name'),
                ('Resource Type', 'vitrage_resource_type'),
                ('Resource ID', 'vitrage_resource_id'),
                ('Severity', 'vitrage_operational_severity'),
                ('Start Time', 'start_timestamp'),
                ('End Time', 'end_timestamp'),
            ), alarms)


class AlarmShow(show.ShowOne):
    """Show an alarm"""

    def get_parser(self, prog_name):
        parser = super(AlarmShow, self).get_parser(prog_name)
        parser.add_argument("vitrage_id", help="Vitrage id of the alarm")
        return parser

    def take_action(self, parsed_args):
        vitrage_id = parsed_args.vitrage_id
        alarm = utils.get_client(self).alarm.get(vitrage_id=vitrage_id)
        return self.dict2columns(alarm)


# noinspection PyAbstractClass
class AlarmCount(show.ShowOne):
    """Show a count of all alarms"""

    def get_parser(self, prog_name):
        parser = super(AlarmCount, self).get_parser(prog_name)
        parser.add_argument('--all-tenants',
                            default=False,
                            dest='all_tenants',
                            action='store_true',
                            help='Shows counts for alarms of all '
                                 'the tenants')

        return parser

    @property
    def formatter_default(self):
        return 'json'

    def take_action(self, parsed_args):
        all_tenants = parsed_args.all_tenants

        counts = utils.get_client(self).alarm.count(
            all_tenants=all_tenants)

        return self.dict2columns(counts)