kibana容器服务

This commit is contained in:
wandoubaba 2024-05-01 11:44:47 +08:00
commit 0551a93e5c
3 changed files with 34 additions and 0 deletions

11
config/kibana.yml Normal file
View File

@ -0,0 +1,11 @@
#
# ** THIS IS AN AUTO-GENERATED FILE **
#
# Default Kibana configuration for docker target
server.host: "0.0.0.0"
server.shutdownTimeout: "5s"
elasticsearch.hosts: [ "http://localhost:9200" ]
monitoring.ui.container.elasticsearch.enabled: true
elasticsearch.username: "kibana"
elasticsearch.password: "elastic"

15
config/node.options Normal file
View File

@ -0,0 +1,15 @@
## Node command line options
## See `node --help` and `node --v8-options` for available options
## Please note you should specify one option per line
## max size of old space in megabytes
#--max-old-space-size=4096
## do not terminate process on unhandled promise rejection
--unhandled-rejections=warn
## restore < Node 16 default DNS lookup behavior
--dns-result-order=ipv4first
## enable OpenSSL 3 legacy provider
--openssl-legacy-provider

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
services:
kibana:
image: docker.elastic.co/kibana/kibana:7.17.18
container_name: kibana
volumes:
- ./config:/usr/share/kibana/config
ports:
- 5601:5601