mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
* [Reporting] Add contextual documentation for CSV Max Bytes setting * Update reporting-settings.asciidoc * updates per feedback
This commit is contained in:
parent
7934ccc11d
commit
bf90405fdd
1 changed files with 19 additions and 1 deletions
|
@ -10,6 +10,7 @@ You can configure `xpack.reporting` settings in your `kibana.yml` to:
|
|||
* <<reporting-kibana-server-settings,Control how the {report-features} communicate with the {kib} server>>
|
||||
* <<reporting-job-queue-settings,Manage background jobs>>
|
||||
* <<reporting-capture-settings,Capture screenshots>>
|
||||
* <<reporting-csv-settings,Increase the byte limit for CSV exports>>
|
||||
|
||||
[float]
|
||||
[[general-reporting-settings]]
|
||||
|
@ -65,7 +66,7 @@ proxy host requires that the {kib} server has network access to the proxy.
|
|||
|
||||
[NOTE]
|
||||
============
|
||||
Reporting authenticates requests on the Kibana page only when the hostname matches the
|
||||
Reporting authenticates requests on the {kib} page only when the hostname matches the
|
||||
<<xpack-kibanaServer-hostname, `xpack.reporting.kibanaServer.hostname`>> setting. Therefore Reporting would fail if the
|
||||
set value redirects to another server. For that reason, `"0"` is an invalid setting
|
||||
because, in the Reporting browser, it becomes an automatic redirect to `"0.0.0.0"`.
|
||||
|
@ -214,6 +215,23 @@ a| `xpack.reporting.capture.browser`
|
|||
| The maximum {ref}/common-options.html#byte-units[byte size] of a CSV file before being truncated. This setting exists to
|
||||
prevent large exports from causing performance and storage issues. Can be specified as number of bytes.
|
||||
Defaults to `10mb`.
|
||||
|===
|
||||
|
||||
[NOTE]
|
||||
============
|
||||
Setting `xpack.reporting.csv.maxSizeBytes` much larger than the default 10 MB limit has the potential to negatively affect the
|
||||
performance of {kib} and your {es} cluster. There is no enforced maximum for this setting, but a reasonable maximum value depends
|
||||
on multiple factors:
|
||||
|
||||
* The `http.max_content_length` setting in {es}.
|
||||
* Network proxies, which are often configured by default to block large requests with a 413 error.
|
||||
* The amount of memory available to the {kib} server, which limits the size of CSV data that must be held temporarily.
|
||||
|
||||
For information about {kib} memory limits, see <<production, using {kib} in a production environment>>.
|
||||
============
|
||||
|
||||
[cols="2*<"]
|
||||
|===
|
||||
|
||||
| `xpack.reporting.csv.scroll.size`
|
||||
| Number of documents retrieved from {es} for each scroll iteration during a CSV
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue