Hi!
We run Kibana 7.11 with docker compose and we tried the "Generate CSV" feature which gives us service unavailable error.
The Docker compose file is:
version: '3.5'
services:
kibana01:
restart: always
image: docker.elastic.co/kibana/kibana:7.11.1
container_name: kibana01
environment:
ELASTICSEARCH_URL: http://elasticsearch-address:9200
ELASTICSEARCH_HOSTS: http://elasticsearch-address:9200
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
ports:
- 5601:5601
We do not find a log file inside the docker container and docker logs only show status code 503 for endpoint /api/reporting/generate:
{"type":"response","@timestamp":"2023-05-31T05:32:20+00:00","tags":,"pid":6,"method":"post","statusCode":503,"req":{"url":"/api/reporting/generate/csv","method":"post","headers":{"host":"
Anyone that has ideea about this?