Kibana /api/reporting/generate/csv gets response 503

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?

Welcome to our community! :smiley:

Please note that version is EOL and no longer supported, you should be looking to upgrade as a matter of urgency.

Does docker logs kibana01 show anything?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.