forked from deviantony/docker-elk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
78 lines (52 loc) · 1.22 KB
/
.env
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
76
77
78
# === Versions to use ===
# Version of Elastic products
ELASTIC_STACK_VERSION=8.11.4
# === Users password (at least 6 characters) ===
ELASTIC_PASSWORD=changeme
KIBANA_SYSTEM_PASSWORD=changeme
LOGSTASH_SYSTEM_PASSWORD=changeme
BEATS_SYSTEM_PASSWORD=changeme
REMOTE_MONITORING_USER_PASSWORD=changeme
# === Elasticsearch ===
# Set the cluster name
ES_CLUSTER_NAME=docker-elk
# Set to 'basic' or 'trial' to automatically start the 30-day trial
ES_LICENSE=basic
# Ports to expose
ES_PORT_01=9200
ES_PORT_02=9201
ES_PORT_03=9202
# Memory limit
ES_MEM_LIMIT=2048m
# === Kibana ===
# Ports to expose
KIBANA_PORT=5601
# Memory limit
KBN_MEM_LIMIT=1024m
# === Beats ===
# Memory limit
BEATS_MEM_LIMIT=512m
# === Fleet server ===
# Ports to expose
FLEET_SERVER_PORT=8220
# Memory limit
FLEET_SERVER_MEM_LIMIT=512m
# === APM server ===
# Ports to expose
APM_SERVER_PORT=8200
# Memory limit
APM_SERVER_MEM_LIMIT=512m
# === Enterprise search ===
# Ports to expose
ENT_SEARCH_PORT=3002
# Memory limit
ENT_SEARCH_MEM_LIMIT=1024m
# === Logstash ===
# Ports to expose
LS_API_PORT=127.0.0.1:9600
LS_TCP_INPUT_PORT=127.0.0.1:5000
LS_BEATS_INPUT_PORT=127.0.0.1:5044
# Memory limit
LS_MEM_LIMIT=1024m
# Heap size
LS_JAVA_OPTS=-Xmx512m -Xms512m