File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
ChatQnA/docker_compose/intel/cpu/xeon Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,14 @@ To set up environment variables for deploying ChatQnA services, follow these ste
4444docker compose up -d
4545```
4646
47+ To enable Open Telemetry Tracing, compose_telemetry.yaml file need to be merged along with default compose.yaml file.
48+ CPU example with Open Telemetry feature:
49+
50+ ``` bash
51+ cd GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/
52+ docker compose -f compose.yaml -f compose_telemetry.yaml up -d
53+ ```
54+
4755It will automatically download the docker image on ` docker hub ` :
4856
4957``` bash
@@ -263,12 +271,16 @@ If use vLLM as the LLM serving backend.
263271docker compose -f compose.yaml up -d
264272# Start ChatQnA without Rerank Pipeline
265273docker compose -f compose_without_rerank.yaml up -d
274+ # Start ChatQnA with Rerank Pipeline and Open Telemetry Tracing
275+ docker compose -f compose.yaml -f compose_telemetry.yaml up -d
266276` ` `
267277
268278If use TGI as the LLM serving backend.
269279
270280` ` ` bash
271281docker compose -f compose_tgi.yaml up -d
282+ # Start ChatQnA with Rerank Pipeline and Open Telemetry Tracing
283+ docker compose -f compose_tgi.yaml -f compose_tgi_telemetry.yaml up -d
272284` ` `
273285
274286# ## Validate Microservices
You can’t perform that action at this time.
0 commit comments