Merge "Align kafka properties with VESHV_MAX_PAYLOAD_SIZE"
[dcaegen2/collectors/hv-ves.git] / development / bin / dcae-msgs.sh
1 #!/usr/bin/env bash
2 # ============LICENSE_START=======================================================
3 # dcaegen2-collectors-veshv
4 # ================================================================================
5 # Copyright (C) 2018 NOKIA
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=========================================================
19
20 set -euo pipefail
21
22 usage() {
23     echo "Return current amount of consumed messages by dcae-app-simulator"
24     echo "Usage: $0 [-h|--help] [-v|--verbose]"
25     exit 1
26 }
27
28 optspec=":vh-:" # catch v, h and -
29 while getopts "$optspec" arg; do
30     case "${arg}" in
31         -) # handle longopts
32             case "${OPTARG}" in
33                 verbose)
34                     VERBOSE=True
35                     ;;
36                 help)
37                     usage
38                     ;;
39                 *)
40                     echo "Unknown option --${OPTARG}" >&2
41                     usage
42                     ;;
43              esac
44              ;;
45         v)
46             VERBOSE=True
47             ;;
48         h)
49             usage
50             ;;
51         *)
52             echo "Unknown option -${OPTARG}" >&2
53             usage
54             ;;
55     esac
56 done
57 shift $((OPTIND-1))
58
59 DEVELOPMENT_BIN_DIRECTORY=$(realpath $(dirname "$0"))
60 source ${DEVELOPMENT_BIN_DIRECTORY}/constants.sh
61
62 if [ -n "${VERBOSE+x}" ]; then
63     echo "All messages count currently consumed by dcae app simulator: "
64 fi
65
66 curl --request GET ${DCAE_APP_ADDRESS}/messages/all/count
67 echo