Add to_directory method to relevant object classes
[oam.git] / code / client-scripts-ves-v7 / sendVesHeartbeat.py
1 #!/usr/bin/env python
2 ################################################################################
3 # Copyright 2021 highstreet technologies GmbH
4 #
5 # Licensed under the Apache License, Version 2.0 (the 'License');
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     https://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an 'AS IS' BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 ################################################################################
19 # Send a VES event for domain 'heartbeat'
20
21 # importing the datetime, json, requests, os socket and yaml library
22 from globalVesEventEmitter import getInitData, saveExample, sendVesEvent
23
24 # Globals
25 domain = 'heartbeat'
26 initData = getInitData(domain)
27 print('################################################################################')
28 print('# send SDN-Controller ' + domain)
29
30 initData['body']['event']['commonEventHeader']['domain'] = initData['domain']
31 initData['body']['event']['commonEventHeader']['eventId'] = initData['fqdn'] + '_' + initData['eventTime']
32 initData['body']['event']['commonEventHeader']['eventName'] = initData['domain'] + '_' + initData['config']['settings']['eventType']
33 initData['body']['event']['commonEventHeader']['eventType'] = initData['config']['settings']['eventType']
34 initData['body']['event']['commonEventHeader']['sequence'] = initData['config']['settings']['sequence']
35 initData['body']['event']['commonEventHeader']['reportingEntityName'] = initData['fqdn']
36 initData['body']['event']['commonEventHeader']['sourceName'] =initData['fqdn']
37 initData['body']['event']['commonEventHeader']['startEpochMicrosec'] = initData['timestamp']
38 initData['body']['event']['commonEventHeader']['lastEpochMicrosec'] = initData['timestamp']
39 initData['body']['event']['commonEventHeader']['nfNamingCode'] = 'SDN-Controller'
40 initData['body']['event']['commonEventHeader']['nfVendorName'] = 'O-RAN-SC OAM'
41
42 initData['body']['event']['heartbeatFields']['additionalFields']['eventTime'] = initData['eventTime']
43
44 # Save example body
45 saveExample(initData)
46
47 # Send VES Event
48 sendVesEvent(initData)