Refactoring: Changed all check parameters starting with a 'p' to the new rulespec...
[check_mk.git] / livestatus / src / HostServiceState.cc
blob42d0c2118b5f766f5097c41a814b693f0a122b26
1 // +------------------------------------------------------------------+
2 // | ____ _ _ __ __ _ __ |
3 // | / ___| |__ ___ ___| | __ | \/ | |/ / |
4 // | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
5 // | | |___| | | | __/ (__| < | | | | . \ |
6 // | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
7 // | |
8 // | Copyright Mathias Kettner 2014 mk@mathias-kettner.de |
9 // +------------------------------------------------------------------+
11 // This file is part of Check_MK.
12 // The official homepage is at http://mathias-kettner.de/check_mk.
14 // check_mk is free software; you can redistribute it and/or modify it
15 // under the terms of the GNU General Public License as published by
16 // the Free Software Foundation in version 2. check_mk is distributed
17 // in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
18 // out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
19 // PARTICULAR PURPOSE. See the GNU General Public License for more de-
20 // tails. You should have received a copy of the GNU General Public
21 // License along with GNU Make; see the file COPYING. If not, write
22 // to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23 // Boston, MA 02110-1301 USA.
25 #include "HostServiceState.h"
27 HostServiceState::HostServiceState()
28 : _is_host(false)
29 , _time(0)
30 , _lineno(0)
31 , _from(0)
32 , _until(0)
33 , _duration(0)
34 , _duration_part(0)
35 , _duration_unmonitored(0)
36 , _duration_part_unmonitored(0)
37 , _duration_ok(0)
38 , _duration_part_ok(0)
39 , _duration_warning(0)
40 , _duration_part_warning(0)
41 , _duration_critical(0)
42 , _duration_part_critical(0)
43 , _duration_unknown(0)
44 , _duration_part_unknown(0)
45 , _host_down(0)
46 , _state(0)
47 , _in_notification_period(0)
48 , _in_service_period(0)
49 , _in_downtime(0)
50 , _in_host_downtime(0)
51 , _is_flapping(0)
52 , _may_no_longer_exist(false)
53 , _has_vanished(false)
54 , _last_known_time(0)
55 , _host(nullptr)
56 , _service(nullptr) {}
58 #ifdef CMC
59 void HostServiceState::computePerStateDurations() {
60 _duration_unmonitored = 0;
61 _duration_part_unmonitored = 0;
62 _duration_ok = 0;
63 _duration_part_ok = 0;
64 _duration_warning = 0;
65 _duration_part_warning = 0;
66 _duration_critical = 0;
67 _duration_part_critical = 0;
68 _duration_unknown = 0;
69 _duration_part_unknown = 0;
71 switch (_state) {
72 case -1:
73 _duration_unmonitored = _duration;
74 _duration_part_unmonitored = _duration_part;
75 break;
76 case 0:
77 _duration_ok = _duration;
78 _duration_part_ok = _duration_part;
79 break;
80 case 1:
81 _duration_warning = _duration;
82 _duration_part_warning = _duration_part;
83 break;
84 case 2:
85 _duration_critical = _duration;
86 _duration_part_critical = _duration_part;
87 break;
88 case 3:
89 _duration_unknown = _duration;
90 _duration_part_unknown = _duration_part;
91 break;
94 #endif