Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / vigiboard / controllers / plugins / occurrences.py @ 25892058

History | View | Annotate | Download (1.6 KB)

1
# -*- coding: utf-8 -*-
2
# vim:set expandtab tabstop=4 shiftwidth=4:
3
################################################################################
4
#
5
# Copyright (C) 2007-2013 CS-SI
6
#
7
# This program is free software; you can redistribute it and/or modify
8
# it under the terms of the GNU General Public License version 2 as
9
# published by the Free Software Foundation.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
################################################################################
20

    
21
"""
22
Un plugin pour VigiBoard qui ajoute une colonne avec le nombre
23
d'occurrences d'un événement corrélé donné.
24
"""
25
from vigilo.models.tables import StateName
26
from vigiboard.controllers.plugins import VigiboardRequestPlugin
27

    
28
class PluginOccurrences(VigiboardRequestPlugin):
29
    """
30
    Ce plugin affiche le nombre d'occurrences d'un événement corrélé.
31
    Ce compteur d'occurrences est mis à jour automatiquement par le
32
    corrélateur chaque fois qu'un événement brut survient sur la cause
33
    de l'événement corrélé.
34
    """
35
    def get_data(self, event):
36
        state = StateName.value_to_statename(event[0].cause.current_state)
37
        return {
38
            'state': state,
39
            'occurrences': event[0].occurrence,
40
        }