Skip to content

Commit 47069ac

Browse files
authored
fix a test script issue due to name change for telemetry yaml files (#1516)
Signed-off-by: Tsai, Louie <louie.tsai@intel.com>
1 parent 6ce7730 commit 47069ac

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

ChatQnA/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ OPEA microservice deployment can easily be monitored through Grafana dashboards
368368

369369
## Tracing Services with OpenTelemetry Tracing and Jaeger
370370

371-
> NOTE: This feature is disabled by default. Please check the Deploy ChatQnA sessions for how to enable this feature with compose_telemetry.yaml file.
371+
> NOTE: This feature is disabled by default. Please check the Deploy ChatQnA sessions for how to enable this feature with compose.telemetry.yaml file.
372372
373373
OPEA microservice and TGI/TEI serving can easily be traced through Jaeger dashboards in conjunction with OpenTelemetry Tracing feature. Follow the [README](https://github.com/opea-project/GenAIComps/tree/main/comps/cores/telemetry#tracing) to trace additional functions if needed.
374374

ChatQnA/tests/test_compose_on_gaudi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function start_services() {
5454
export TELEMETRY_ENDPOINT=http://$JAEGER_IP:4318/v1/traces
5555

5656
# Start Docker Containers
57-
docker compose -f compose.yaml -f compose_telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
57+
docker compose -f compose.yaml -f compose.telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
5858
n=0
5959
until [[ "$n" -ge 160 ]]; do
6060
echo "n=$n"
@@ -175,7 +175,7 @@ function validate_frontend() {
175175

176176
function stop_docker() {
177177
cd $WORKPATH/docker_compose/intel/hpu/gaudi
178-
docker compose -f compose.yaml -f compose_telemetry.yaml down
178+
docker compose -f compose.yaml -f compose.telemetry.yaml down
179179
}
180180

181181
function main() {

ChatQnA/tests/test_compose_on_xeon.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function start_services() {
5454
export TELEMETRY_ENDPOINT=http://$JAEGER_IP:4318/v1/traces
5555

5656
# Start Docker Containers
57-
docker compose -f compose.yaml -f compose_telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
57+
docker compose -f compose.yaml -f compose.telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
5858
n=0
5959
until [[ "$n" -ge 100 ]]; do
6060
docker logs vllm-service > ${LOG_PATH}/vllm_service_start.log 2>&1
@@ -175,7 +175,7 @@ function validate_frontend() {
175175

176176
function stop_docker() {
177177
cd $WORKPATH/docker_compose/intel/cpu/xeon
178-
docker compose -f compose.yaml -f compose_telemetry.yaml down
178+
docker compose -f compose.yaml -f compose.telemetry.yaml down
179179
}
180180

181181
function main() {

ChatQnA/tests/test_compose_tgi_on_gaudi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function start_services() {
5454
export TELEMETRY_ENDPOINT=http://$JAEGER_IP:4318/v1/traces
5555

5656
# Start Docker Containers
57-
docker compose -f compose_tgi.yaml -f compose_tgi_telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
57+
docker compose -f compose_tgi.yaml -f compose_tgi.telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
5858

5959
n=0
6060
until [[ "$n" -ge 500 ]]; do
@@ -218,7 +218,7 @@ function validate_frontend() {
218218

219219
function stop_docker() {
220220
cd $WORKPATH/docker_compose/intel/hpu/gaudi
221-
docker compose -f compose_tgi.yaml -f compose_tgi_telemetry.yaml down
221+
docker compose -f compose_tgi.yaml -f compose_tgi.telemetry.yaml down
222222
}
223223

224224
function main() {

ChatQnA/tests/test_compose_tgi_on_xeon.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function start_services() {
5353
export TELEMETRY_ENDPOINT=http://$JAEGER_IP:4318/v1/traces
5454

5555
# Start Docker Containers
56-
docker compose -f compose_tgi.yaml -f compose_tgi_telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
56+
docker compose -f compose_tgi.yaml -f compose_tgi.telemetry.yaml up -d > ${LOG_PATH}/start_services_with_compose.log
5757

5858
n=0
5959
until [[ "$n" -ge 100 ]]; do
@@ -219,7 +219,7 @@ function validate_frontend() {
219219

220220
function stop_docker() {
221221
cd $WORKPATH/docker_compose/intel/cpu/xeon
222-
docker compose -f compose_tgi.yaml -f compose_tgi_telemetry.yaml down
222+
docker compose -f compose_tgi.yaml -f compose_tgi.telemetry.yaml down
223223
}
224224

225225
function main() {

0 commit comments

Comments
 (0)