The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/devenv/docker/blocks/elasticstack/docker-compose.yaml

34 lines
1.1 KiB

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:${elastic_version}
environment:
- "discovery.type=single-node"
- "xpack.license.self_generated.type=basic"
- "xpack.security.enabled=false"
- 'ES_JAVA_OPTS=-XX:UseSVE=0'
- 'CLI_JAVA_OPTS=-XX:UseSVE=0'
ports:
- 9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:${elastic_version}
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- 5601:5601
metricbeat-host:
image: docker.elastic.co/beats/metricbeat-oss:${elastic_version}
command: metricbeat -e -strict.perms=false
user: root
volumes:
- ./docker/blocks/elasticstack/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
filebeat-host:
image: docker.elastic.co/beats/filebeat-oss:${elastic_version}
command: filebeat -e -strict.perms=false
volumes:
- ./docker/blocks/elasticstack/filebeat.yml:/usr/share/filebeat/filebeat.yml:ro
# - /var/log:/var/log:ro
- ../data/log:/var/log/grafana:ro