demx8as6 | 562a65a | 2021-03-30 10:56:02 +0200 | [diff] [blame] | 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 | # |
demx8as6 | 86b92e8 | 2021-05-08 15:58:54 +0200 | [diff] [blame] | 9 | # https://www.apache.org/licenses/LICENSE-2.0 |
demx8as6 | 562a65a | 2021-03-30 10:56:02 +0200 | [diff] [blame] | 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 |
demx8as6 | 731fccb | 2021-04-17 14:55:54 +0200 | [diff] [blame] | 22 | from globalVesEventEmitter import getInitData, saveExample, sendVesEvent |
demx8as6 | 562a65a | 2021-03-30 10:56:02 +0200 | [diff] [blame] | 23 | |
| 24 | # Globals |
| 25 | domain = 'heartbeat' |
| 26 | initData = getInitData(domain) |
demx8as6 | 562a65a | 2021-03-30 10:56:02 +0200 | [diff] [blame] | 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 |
demx8as6 | f9e11bb | 2021-04-02 13:37:33 +0200 | [diff] [blame] | 45 | saveExample(initData) |
demx8as6 | 562a65a | 2021-03-30 10:56:02 +0200 | [diff] [blame] | 46 | |
| 47 | # Send VES Event |
demx8as6 | 731fccb | 2021-04-17 14:55:54 +0200 | [diff] [blame] | 48 | sendVesEvent(initData) |