Skip to content

Commit 65dfa12

Browse files
committed
Add elk on backend-javascript
1 parent 0360cba commit 65dfa12

File tree

6 files changed

+1517
-216
lines changed

6 files changed

+1517
-216
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: '3.8'
2+
3+
services:
4+
5+
elasticsearch:
6+
image: docker.elastic.co/elasticsearch/elasticsearch:8.14.0
7+
container_name: elasticsearch
8+
environment:
9+
- discovery.type=single-node
10+
- xpack.security.enabled=false
11+
ports:
12+
- "9200:9200"
13+
14+
kibana:
15+
image: docker.elastic.co/kibana/kibana:8.14.0
16+
container_name: kibana
17+
environment:
18+
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
19+
ports:
20+
- "5601:5601"
21+
22+
prometheus:
23+
image: prom/prometheus
24+
container_name: prometheus
25+
volumes:
26+
- ./prometheus.yml:/etc/prometheus/prometheus.yml
27+
ports:
28+
- "9090:9090"
29+
30+
grafana:
31+
image: grafana/grafana
32+
container_name: grafana
33+
ports:
34+
- "3000:3000"

0 commit comments

Comments
 (0)