Update documentation
[oam.git] / solution / dev / ves-test-collector / client-scripts-ves-v7 / sendHeartbeat.sh
1 #!/bin/bash
2 ################################################################################
3 #
4 # Copyright 2019 highstreet technologies GmbH and others
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
18 ################################################################################
19 # Script to send an VES Message Event to DCAE
20
21 . config;
22 domain=heartbeat;
23
24 declare -A mapping=(
25     [domain]=$domain
26     [controllerName]=$(hostname --fqdn)
27     [vendor]="sdn"
28     [type]="sdn controller"
29     [eventId]="$(hostname --fqdn)_${eventTime}"
30     [eventType]="Controller"
31     [timestamp]=${timestamp}
32     [eventTime]=${eventTime}
33 )
34
35 echo "################################################################################";
36 echo "# send SDN-R heartbeat";
37 echo;
38 for key in "${!mapping[@]}"
39 do
40   #label=${${"$spaces$i"}:(-14)};
41   label=$spaces$key;
42   label=${label:(-16)};
43   echo "$label: ${mapping[$key]}";
44   if [ $key = "timestamp" ]; then
45       sequence="$sequence s/\"@$key@\"/${mapping[$key]}/g; "
46   else
47       sequence="$sequence s/@$key@/${mapping[$key]}/g; "
48   fi  
49 done
50 echo;
51
52 body=./json/examples/${domain}.json
53 sed -e "$sequence" ./json/templates/$domain.json > $body;
54
55 curl -i -k -u $basicAuthVes -d @${body} --header "Content-Type: application/json" $urlVes