-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
75 lines (55 loc) · 1.74 KB
/
.env.example
File metadata and controls
75 lines (55 loc) · 1.74 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Simian Forge Docker Environment Configuration
# Copy this file to .env and customize as needed
# ==========================================
# Simian Forge Configuration
# ==========================================
# Data generation interval (e.g., 10s, 1m, 5m)
INTERVAL=10s
# Backfill duration (e.g., now-5m, now-1h, now-1d)
BACKFILL=now-5m
# Number of entities to generate
COUNT=10
# Dataset type: hosts, weather
DATASET=hosts
# Output format (for hosts dataset): otel, elastic, both
FORMAT=both
# ==========================================
# Elasticsearch Configuration
# ==========================================
# Elasticsearch URL
ELASTICSEARCH_URL=http://elasticsearch:9200
# Elasticsearch authentication (username:password)
ELASTICSEARCH_AUTH=elastic:changeme
# Elasticsearch port (for external access)
ELASTICSEARCH_PORT=9200
# ==========================================
# OpenTelemetry Collector Configuration
# ==========================================
# Collector endpoint
COLLECTOR=http://otel-collector:4318
# Collector ports
OTEL_GRPC_PORT=4317
OTEL_HTTP_PORT=4318
OTEL_METRICS_PORT=8889
# ==========================================
# Kibana Configuration
# ==========================================
# Kibana port (for external access)
KIBANA_PORT=5601
# ==========================================
# Example Configurations
# ==========================================
# Generate host metrics every 30 seconds with 20 hosts
# INTERVAL=30s
# COUNT=20
# DATASET=hosts
# FORMAT=both
# Generate weather data every 2 minutes with 5 stations
# INTERVAL=2m
# COUNT=5
# DATASET=weather
# Backfill 2 hours of data
# BACKFILL=now-2h
# Use external Elasticsearch
# ELASTICSEARCH_URL=http://my-elasticsearch:9200
# ELASTICSEARCH_AUTH=myuser:mypassword