ktimoney | 91f16aa | 2023-08-18 09:08:04 +0100 | [diff] [blame] | 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 | #. scripts/kube_get_controlplane_host.sh |
| 21 | |
| 22 | # Generic error printout function |
| 23 | # args: <numeric-response-code> <descriptive-string> |
| 24 | check_error() { |
| 25 | if [ $1 -ne 0 ]; then |
| 26 | echo "Failed: $2" |
| 27 | echo "Exiting..." |
| 28 | exit 1 |
| 29 | fi |
| 30 | } |
| 31 | |
| 32 | . scripts/update_ics_job.sh |
| 33 | |
| 34 | echo "Installation of pm to influx job" |
| 35 | |
| 36 | . scripts/populate_keycloak.sh |
| 37 | |
| 38 | cid="console-setup" |
| 39 | TOKEN=$(get_client_token nonrtric-realm $cid) |
| 40 | |
| 41 | JOB='{ |
| 42 | "info_type_id": "PmData", |
| 43 | "job_owner": "console", |
| 44 | "job_definition": { |
| 45 | "filter": { |
| 46 | "sourceNames": ["node2-1"], |
| 47 | "measObjInstIds": [], |
| 48 | "measTypeSpecs": [ |
| 49 | { |
| 50 | "measuredObjClass": "NRCellDU", |
| 51 | "measTypes": [ |
| 52 | "pmCounterNumber102" |
| 53 | ] |
| 54 | } |
| 55 | ], |
| 56 | "measuredEntityDns": [] |
| 57 | }, |
| 58 | "deliveryInfo": { |
| 59 | "topic": "pmreports", |
| 60 | "bootStrapServers": "kafka-1:9097" |
| 61 | } |
| 62 | } |
| 63 | }' |
| 64 | echo $JOB > .job.json |
| 65 | update_ics_job pmlog $TOKEN |
| 66 | |
| 67 | echo "done" |
| 68 | |