forked from open-telemetry/opentelemetry-demo
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy path.env.override
More file actions
36 lines (30 loc) · 1.1 KB
/
.env.override
File metadata and controls
36 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# DO NOT PUSH CHANGES OF THIS FILE TO opentelemetry/opentelemetry-demo
# PLACE YOUR .env ENVIRONMENT VARIABLES OVERRIDES IN THIS FILE
# Demo Elastic App version
IMAGE_VERSION=2.2.1
IMAGE_NAME=ghcr.io/elastic/opentelemetry-demo
# *********************
# Elastic Demo Services
# *********************
AD_DOCKERFILE=./src/ad/Dockerfile.elastic
FRAUD_DOCKERFILE=./src/fraud-detection/Dockerfile.elastic
KAFKA_DOCKERFILE=./src/kafka/Dockerfile.elastic
# *********************
# Elastic Collector
# *********************
ELASTIC_AGENT_OTEL=true
COLLECTOR_CONTRIB_IMAGE="docker.elastic.co/elastic-agent/elastic-agent:9.2.0"
OTEL_COLLECTOR_CONFIG="./src/otel-collector/otelcol-elastic-config.yaml"
ELASTIC_OTLP_ENDPOINT="YOUR_ENDPOINT"
ELASTIC_OTLP_API_KEY="YOUR_API_KEY"
# *********************
# Bashunit Tests
# *********************
BASHUNIT_BOOTSTRAP=test/elastic/bootstrap.sh
# To use a real OpenAI API-compatible LLM,
# set the appropriate values for the target LLM
# Required permissions:
# [Models and Model capabilities]
#LLM_BASE_URL=https://api.openai.com/v1
#LLM_MODEL=gpt-4o-mini
#OPENAI_API_KEY=<replace with API key>