aboutsummaryrefslogtreecommitdiffstats
path: root/miss_htbt_service/db_monitoring.py
blob: 6113be26e55ffb9fad231ad9edefe775f04eb737 (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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/usr/bin/env python3
# Copyright 2018 AT&T Intellectual Property, Inc. All rights reserved.
#
# 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.
# 
#  Author  Prakash Hosangady(ph553f)
#    DB Monitoring
#    Tracks Heartbeat messages on each of the VNFs stored in postgres DB
#    and generates Missing Heartbeat signal for Policy Engine

import requests
import math
import sched, datetime, time
import json
import string
import sys
import os
import socket
import requests
import htbtworker as pm
import misshtbtd as db
import logging
import get_logger

_logger = get_logger.get_logger(__name__)

def db_monitoring(current_pid,json_file,user_name,password,ip_address,port_num,db_name):
    while(True):
        time.sleep(20)
        with open(json_file, 'r') as outfile:
             cfg = json.load(outfile)
        pol_url = str(cfg['streams_publishes']['ves_heartbeat']['dmaap_info']['topic_url'])

        hbc_pid, hbc_state, hbc_srcName, hbc_time = db.read_hb_common(user_name,password,ip_address,port_num,db_name)
        source_name = socket.gethostname()
        source_name = source_name + "-" + str(os.getenv('SERVICE_NAME'))
        envPytest = os.getenv('pytest', "")
        if (envPytest == 'test'):
           break
        connection_db = pm.postgres_db_open(user_name,password,ip_address,port_num,db_name)
        cur = connection_db.cursor()
        if(int(current_pid)==int(hbc_pid) and source_name==hbc_srcName and hbc_state == "RUNNING"):
            _logger.info("DBM: Active DB Monitoring Instance")
            db_query = "Select event_name from vnf_table_1"
            cur.execute(db_query)
            vnf_list = [item[0] for item in cur.fetchall()]
            for event_name in vnf_list:
                query_value = "SELECT current_state FROM hb_common;"
                cur.execute(query_value)
                rows = cur.fetchall()
                hbc_state = rows[0][0]
                if( hbc_state == "RECONFIGURATION"):
                    _logger.info("DBM:Waiting for hb_common state to become RUNNING")
                    break

                db_query = "Select validity_flag,source_name_count,heartbeat_interval,heartbeat_missed_count,closed_control_loop_name,policy_version, policy_name,policy_scope, target_type,target,version from vnf_table_1 where event_name= '%s'" %(event_name)
                cur.execute(db_query)
                rows = cur.fetchall()
                validity_flag = rows[0][0]
                source_name_count = rows[0][1]
                heartbeat_interval = rows[0][2]
                heartbeat_missed_count = rows[0][3]
                closed_control_loop_name = rows[0][4]
                policy_version = rows[0][5]
                policy_name = rows[0][6]
                policy_scope = rows[0][7]
                target_type = rows[0][8]
                target = rows[0][9]
                version = rows[0][10]
                comparision_time = (heartbeat_interval*heartbeat_missed_count)*1000
                if (validity_flag ==1):
                    for source_name_key in range(source_name_count):
                        epoc_time = int(round(time.time()*1000))
                        epoc_query = "Select last_epo_time,source_name,cl_flag from vnf_table_2 where event_name= '%s' and source_name_key=%d" %(event_name,(source_name_key+1))
                        cur.execute(epoc_query)
                        row = cur.fetchall()
                        if (len(row)==0):
                            continue
                        epoc_time_sec = row[0][0]
                        srcName = row[0][1]
                        cl_flag = row[0][2]
                        vnfName = event_name
                        if((epoc_time-epoc_time_sec)>comparision_time and cl_flag ==0):
                            msg="DBM:Time to raise Control Loop Event for target type - ", target_type
                            _logger.info(msg)
                            if(target_type == "VNF"):
                                 json_object = json.dumps({ 
                                          "closedLoopEventClient": "DCAE_Heartbeat_MS",
                                          "policyVersion": policy_version,
                                          "policyName": policy_name,
                                          "policyScope": policy_scope,
                                          "target_type": target_type,
                                          "AAI": { "generic-vnf.vnf-name": srcName} ,
                                          "closedLoopAlarmStart": epoc_time,
                                          "closedLoopEventStatus": "ONSET",
                                          "closedLoopControlName": closed_control_loop_name,
                                          "version": version,
                                          "target": target,
                                          "requestID": "8c1b8bd8-06f7-493f-8ed7-daaa4cc481bc",
                                          "from": "DCAE"
                                          });
                            elif(target_type == "VM"):
                                 json_object = json.dumps({
                                          "closedLoopEventClient": "DCAE_Heartbeat_MS",
                                          "policyVersion": policy_version,
                                          "policyName": policy_name,
                                          "policyScope": policy_scope,
                                          "target_type": target_type,
                                          "AAI": { "vserver.vserver-name": srcName} ,
                                          "closedLoopAlarmStart": epoc_time,
                                          "closedLoopEventStatus": "ONSET",
                                          "closedLoopControlName": closed_control_loop_name,
                                          "version": version,
                                          "target": target,
                                          "requestID": "8c1b8bd8-06f7-493f-8ed7-daaa4cc481bc",
                                          "from": "DCAE"
                                          });
                            else:
                                 continue
                            payload = json_object
                            msg="DBM: CL Json object is", json_object
                            _logger.info(msg)
                            #psend_url = pol_url+'DefaultGroup/1?timeout=15000'
                            psend_url = pol_url
                            msg="DBM:",psend_url
                            _logger.info(msg)
                            msg="DBM:DB monitoring raising alarm event "+psend_url
                            _logger.info(msg)
                            #Send response for policy on output topic
                            r = requests.post(psend_url, data=payload)
                            msg="DBM:",r.status_code, r.reason
                            _logger.info(msg)
                            ret = r.status_code
                            msg="DBM:Status code after raising the control loop event is",ret
                            _logger.info(msg)
                            cl_flag = 1
                            update_query = "UPDATE vnf_table_2 SET CL_FLAG=%d where EVENT_NAME ='%s' and source_name_key=%d" %(cl_flag,event_name,(source_name_key+1))
                            cur.execute(update_query)
                            connection_db.commit()
                        elif((epoc_time - epoc_time_sec) < comparision_time and cl_flag ==1):
                            msg="DBM:Time to clear Control Loop Event for target type - ", target_type
                            _logger.info(msg)
                            epoc_time = int(round(time.time()))
                            #last_date_time = datetime.datetime.now()
                            if(target_type == "VNF"):
                                 json_object = json.dumps({ 
                                          "closedLoopEventClient": "DCAE_Heartbeat_MS",
                                          "policyVersion": policy_version,
                                          "policyName": policy_name,
                                          "policyScope": policy_scope,
                                          "target_type": target_type,
                                          "AAI": { "generic-vnf.vnf-name": srcName} ,
                                          "closedLoopAlarmStart": epoc_time,
                                          "closedLoopEventStatus": "ABATED",
                                          "closedLoopControlName": closed_control_loop_name,
                                          "version": version,
                                          "target": target,
                                          "requestID": "8c1b8bd8-06f7-493f-8ed7-daaa4cc481bc",
                                          "from": "DCAE"
                                          });
                            elif(target_type == "VM"):
                                 json_object = json.dumps({
                                          "closedLoopEventClient": "DCAE_Heartbeat_MS",
                                          "policyVersion": policy_version,
                                          "policyName": policy_name,
                                          "policyScope": policy_scope,
                                          "target_type": target_type,
                                          "AAI": { "vserver.vserver-name": srcName} ,
                                          "closedLoopAlarmStart": epoc_time,
                                          "closedLoopEventStatus": "ABATED",
                                          "closedLoopControlName": closed_control_loop_name,
                                          "version": version,
                                          "target": target,
                                          "requestID": "8c1b8bd8-06f7-493f-8ed7-daaa4cc481bc",
                                          "from": "DCAE"
                                          });
                            else:
                                 continue
                            payload = json_object
                            msg="DBM: CL Json object is", json_object
                            _logger.info(msg)
                            #psend_url = pol_url+'DefaultGroup/1?timeout=15000'
                            psend_url = pol_url
                            msg="DBM:",psend_url
                            _logger.info(msg)
                            msg="DBM:Heartbeat Dead raising alarm event "+psend_url
                            _logger.info(msg)
                            #Send response for policy on output topic
                            r = requests.post(psend_url, data=payload)
                            msg="DBM:",r.status_code, r.reason
                            _logger.info(msg)
                            ret = r.status_code
                            msg="DBM:Status code after raising the control loop event is",ret
                            _logger.info(msg)
                            cl_flag = 0
                            update_query = "UPDATE vnf_table_2 SET CL_FLAG=%d where EVENT_NAME ='%s' and source_name_key=%d" %(cl_flag,event_name,(source_name_key+1))
                            cur.execute(update_query)
                            connection_db.commit()
                                
                else:
                    msg="DBM:DB Monitoring is ignored for %s since validity flag is 0" %(event_name)
                    _logger.info(msg)
                    
                    for source_name_key in range(source_name_count):
                        delete_query_table2 = "DELETE FROM vnf_table_2 WHERE EVENT_NAME = '%s' and source_name_key=%d;" %(event_name,source_name_key)
                        cur.execute(delete_query_table2)
                    delete_query = "DELETE FROM vnf_table_1 WHERE EVENT_NAME = '%s';" %(event_name)
                    cur.execute(delete_query)
                    connection_db.commit()
                    """
                    Delete the VNF entry in table1 and delete all the source ids related to vnfs in table2
                    """
        else:
            msg="DBM:Inactive instance or hb_common state is not RUNNING"
            _logger.info(msg)
        pm.commit_and_close_db(connection_db)
        cur.close()
        break;
            
if __name__ == "__main__":
    _logger.info("DBM: DBM Process started")
    ip_address, port_num, user_name, password, db_name, cbs_polling_required, cbs_polling_interval = db.read_hb_properties()
    current_pid = sys.argv[1]
    jsfile = sys.argv[2]
    msg="DBM:Parent process ID and json file name",current_pid, jsfile
    _logger.info(msg)
    while (True):
        db_monitoring(current_pid,jsfile,user_name,password,ip_address,port_num,db_name)