CI: Add SonarCloud scan GHA workflow
[nonrtric/plt/ranpm.git] / docker-proj / scripts / push-to-ves-collector.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2023 Nordix Foundation. All rights reserved.
5 #  ========================================================================
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #  ============LICENSE_END=================================================
18 #
19
20 SD=$(dirname -- "$0")
21 echo "script-home: "$SD
22 cd $SD
23 CWD=$PWD
24
25 NODE_COUNT=$1
26 EVT_COUNT=$2
27 NODE_NAME_BASE=$3
28 FILE_EXT=$4
29 SRV_COUNT=$5
30
31 HTTPS_PORT=443
32
33 print_usage() {
34     echo "Usage: push-to-ves-collector.sh <node-count> <num-of-events> <node-name-base> <file-extension> <num-servers>"
35     exit 1
36 }
37 echo $@
38 if [ $# -lt 5 ]; then
39     print_usage
40 fi
41
42 rm .out.json
43 touch .out.json
44
45 BEGINTIME=$(date +%s -d '1 hour ago')
46 TIMEZONE="+0100"
47 CURTIME=$BEGINTIME
48 COLLECTIONTIME=$(date +%a,%d%m%Y%H:%M:%S%Z)
49
50 for (( i=0; i<$EVT_COUNT; i++)); do
51
52     echo "EVENT BATCH: $i of $EVT_COUNT events for $NODE_COUNT NODES - 1 FILE PER EVENT"
53     echo '{"eventList": [' > .out.json
54     first=0
55
56     let STTIMEMS=$CURTIME*1000000
57     ST=$(date -d @$CURTIME +'%Y%m%d.%H%M')
58     let CURTIME=CURTIME+900
59     let CURTIMEMS=$CURTIME*1000000
60     ET=$(date -d @$CURTIME +'%H%M')
61
62     for (( j=0; j<$NODE_COUNT; j++)); do
63
64             NO="$NODE_NAME_BASE-$j"
65             #FN="A20000626.2315+0200-2330+0200_$NO-$i.$FILE_EXT"
66             FN="A$ST+0200-$ET+0200_$NO-$i.$FILE_EXT"
67             let SRV_ID=$j%$SRV_COUNT
68             let SRV_ID=SRV_ID+1
69             echo "FILENAME "$FN
70             SRV="pm-https-server-$SRV_ID"
71             echo "HTTP SERVER "$SRV
72             URL="https://$SRV:$HTTPS_PORT/generatedfiles/$FN"
73             EVT='{"commonEventHeader":{"startEpochMicrosec":'$STTIMEMS',"eventId":"FileReady_1797490e-10ae-4d48-9ea7-3d7d790b25e1","timeZoneOffset":"UTC'$TIMEZONE'","internalHeaderFields":{"collectorTimeStamp":"'$COLLECTIONTIME'"},"priority":"Normal","version":"4.0.1","reportingEntityName":"'$NO'","sequence":0,"domain":"notification","lastEpochMicrosec":'$CURTIMEMS',"eventName":"Notification_gnb-Ericsson_FileReady","vesEventListenerVersion":"7.0.1","sourceName":"'$NO'"},"notificationFields":{"notificationFieldsVersion":"2.0","changeType":"FileReady","changeIdentifier":"PM_MEAS_FILES","arrayOfNamedHashMap":[{"name":"'$FN'","hashMap":{"location":"'$URL'","fileFormatType":"org.3GPP.32.435#measCollec","fileFormatVersion":"V10","compression":"gzip"}}]}}'
74             if [ $first -ne 0 ]; then
75                 echo "," >> .out.json
76             fi
77             first=1
78             echo "$EVT" >> .out.json
79     done
80     echo ']}' >> .out.json
81     RES=$(curl -s -X POST 'localhost:8080/eventListener/v7/eventBatch' --header 'Content-Type: application/json' --data-binary @.out.json)
82     echo $RES
83 done
84