-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathdocker-compose.yaml
188 lines (184 loc) · 4.49 KB
/
docker-compose.yaml
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
version: '3.7'
services:
########################################################## RabbitMQ
rabbitmq:
hostname: rabbitmq
image: enterpriseapplicationlog_rabbitmq
build:
context: ./rabbitmq
volumes:
- rabbitmq_data:/var/lib/rabbitmq/mnesia
ports:
- "15672:15672" #management
- "15692:15692" #prometheus
- "5672:5672" #amqp
healthcheck:
test:
[
"CMD-SHELL",
"curl -I -s -L http://localhost:15672 || exit 1"
]
interval: 30s
timeout: 20s
retries: 5
environment:
RABBITMQ_DEFAULT_USER: logUser
RABBITMQ_DEFAULT_PASS: logPwd
RABBITMQ_DEFAULT_VHOST: EnterpriseLog
networks:
- log
########################################################## Elastic
elasticsearch:
hostname: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:7.13.0-amd64
environment:
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- http.host=0.0.0.0
- transport.host=127.0.0.1
- network.host=0.0.0.0
- cluster.name="elastic_stack_logging"
- node.name="elastic_stack_logging_data"
- discovery.zen.minimum_master_nodes=1
- http.cors.enabled=true
- http.cors.allow-origin="*"
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
ports:
- "9200:9200"
- "9300:9300"
healthcheck:
test:
[
"CMD-SHELL",
"curl -I -s -L http://localhost:9200 || exit 1"
]
interval: 30s
timeout: 20s
retries: 5
networks:
- log
########################################################## Kibana
kibana:
# container_name: Kibana
hostname: kibana
image: docker.elastic.co/kibana/kibana:7.13.0-amd64
environment:
- server.name=kibana
- server.host="0"
- elasticsearch.url=http://elasticsearch:9200
ports:
- "5601:5601"
healthcheck:
test:
[
"CMD-SHELL",
"curl -I -s -L http://localhost:5601/ || exit 1"
]
interval: 30s
timeout: 20s
retries: 5
depends_on:
elasticsearch:
condition: service_healthy
networks:
- log
########################################################## LogStash
logstash:
hostname: logstash
image: enterpriseapplicationlog_logstash
build:
context: ./logstash
command: logstash -f /config/logstash.conf
depends_on:
elasticsearch:
condition: service_healthy
rabbitmq:
condition: service_healthy
networks:
- log
########################################################## MetricBeat
metricbeat:
hostname: metricbeat
image: enterpriseapplicationlog_metricbeat
user: root
build:
context: ./beat/metricbeat
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: on-failure
depends_on:
elasticsearch:
condition: service_healthy
kibana:
condition: service_healthy
rabbitmq:
condition: service_healthy
networks:
- log
########################################################## HeartBeat
heartbeat:
#container_name: HeartBeat
hostname: heartbeat
image: enterpriseapplicationlog_heartbeat
build:
context: ./beat/heartbeat
restart: on-failure
depends_on:
elasticsearch:
condition: service_healthy
kibana:
condition: service_healthy
networks:
- log
########################################################## APM
apm:
hostname: apm
image: enterpriseapplicationlog_apm
build:
context: ./apm
depends_on:
- elasticsearch
- kibana
ports:
- "8200:8200"
healthcheck:
test:
[
"CMD-SHELL",
"curl -I -s -L http://localhost:8200 || exit 1"
]
interval: 30s
timeout: 20s
retries: 5
restart: on-failure
networks:
- log
########################################################## ElasticHQ
elastichq:
hostname: elastichq
image: enterpriseapplicationlog_elastichq
build:
context: ./elastichq
depends_on:
- elasticsearch
ports:
- "5000:5000"
healthcheck:
test:
[
"CMD-SHELL",
"curl -I -s -L http://localhost:5000 || exit 1"
]
interval: 30s
timeout: 20s
retries: 5
restart: on-failure
networks:
- log
volumes:
rabbitmq_data:
elasticsearch_data:
networks:
log:
driver: bridge