diff options
author | mpriyank <priyank.maheshwari@est.tech> | 2023-10-25 12:23:10 +0100 |
---|---|---|
committer | Priyank Maheshwari <priyank.maheshwari@est.tech> | 2023-11-06 12:42:19 +0000 |
commit | 02b2d2ab93fdbe8c8465c1d3ea2a39cd4daea2c0 (patch) | |
tree | 1e27e277f98036f248eb8c4a1d04a6d81b42f54a /test-tools | |
parent | 4fb19b0a6b3b2a17ffb78ef51091ea87ca9bc2e3 (diff) |
[BUG] CPS NCMP management endpoints update
- CPS and NCMP management endpoint updated from /manage to /actuator now
- The management port is same as application port now
- CSIT test cases update
- Update in Security params to allow the changed URL.
- Admin guid update
- Release notes updated
- Local docker-compose and prometheus updated
Issue-ID: CPS-1923
Change-Id: I013d35fd96d393dec8cf067bbeae0f92b6b8d8db
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
Diffstat (limited to 'test-tools')
-rwxr-xr-x | test-tools/generate-metrics-report.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-tools/generate-metrics-report.sh b/test-tools/generate-metrics-report.sh index f1eac14719..7d94e5b49f 100755 --- a/test-tools/generate-metrics-report.sh +++ b/test-tools/generate-metrics-report.sh @@ -25,7 +25,7 @@ function script_usage() { Usage: -h|--help Displays this help -u|--metrics-url=URL URL to Prometheus metrics - Default: http://localhost:8887/manage/prometheus + Default: http://localhost:8883/actuator/prometheus -o|--output=FILE Path to output file Default: metrics-reports/metrics-[timestamp].tsv EOF @@ -33,7 +33,7 @@ EOF function parse_params() { # Set parameter defaults - METRICS_URL="http://localhost:8887/manage/prometheus" + METRICS_URL="http://localhost:8883/actuator/prometheus" OUTFILE="metrics-reports/metrics-$(date --iso-8601=seconds).tsv" TEMP_DIR="/tmp/cps-metrics" |