Hi @yzaritskyi,
Welcome back. There is a 10MB limit by default for exporting from Kibana. It can be configured via the xpack.reporting.csv.maxSizeBytes
setting in kibana.yml for your cluster as per this thread . But I would tread carefully there as it can impact performance if set too high.
This thread gives a couple of options that you could try, including:
- Writing a script using a language client and a CSV utility, such as Python. There is a StackOverflow thread here that shares that example.
- Using Logstash with an Elasticsearch filter processor and the CSV output plugin .
- Split your query into multiple to export the records across multiple CSV files.
Let us know if any of those options work for you.