istio.io/archive/v1.23/docs/tasks/observability/metrics/customize-metrics/test.sh

71 lines
2.0 KiB
Bash

#!/usr/bin/env bash
# shellcheck disable=SC1090,SC2154,SC2155,SC2034
# Copyright Istio Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
set -u
set -o pipefail
source "tests/util/samples.sh"
# @setup profile=none
istioctl install --set tag="$TAG" --set hub="$HUB" -y
## Setting up application
# Set to known setting of sidecar injection
kubectl label namespace default istio-injection=enabled --overwrite
# Install Bookinfo application
startup_bookinfo_sample
## Before patching configuration
# First make sure that the metric dimensions we are going to add as
# part of this task don't exist yet
function send_productpage_requests() {
_set_ingress_environment_variables
local GATEWAY_URL="$INGRESS_HOST:$INGRESS_PORT"
for _ in {1..100}; do
snip_verify_the_results_1 > /dev/null
done
}
send_productpage_requests
_verify_not_contains snip_verify_the_results_2 "destination_port"
_verify_not_contains snip_verify_the_results_2 "request_host"
snip_enable_custom_metrics_1
# TODO: remove this delay once we can reliably detect the stats extension configuration update
# has been applied.
sleep 60s
## Verify if patching works correctly
send_productpage_requests
_verify_lines snip_verify_the_results_2 "
+ destination_port
+ request_host
"
# @cleanup
cleanup_bookinfo_sample
# Clean up Istio. NOTE: Don't wipe out CRDs as doing
# so would take a lot of time for the test to finish
# TODO: find out why?
echo y | istioctl uninstall --revision=default
kubectl delete ns istio-system
kubectl label namespace default istio-injection-