Skip to content

Commit fbdd574

Browse files
authored
Merge branch 'main' into markdown
2 parents a3fa6a4 + eb666e2 commit fbdd574

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

docs/settings/fleet-settings.asciidoc

+12-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ Refer to {fleet-guide}/air-gapped.html[Air-gapped environments] for details.
3838

3939
`xpack.fleet.agents.fleet_server.hosts`::
4040
Hostnames used by {agent} for accessing {fleet-server}.
41+
+
42+
If configured in your `kibana.yml`, this setting is grayed out and unavailable
43+
in the {fleet} UI. To make this setting editable in the UI, do not configure it
44+
in the configuration file.
4145

4246
`xpack.fleet.agents.elasticsearch.hosts`::
4347
Hostnames used by {agent} for accessing {es}.
@@ -52,6 +56,9 @@ Hash pin used for certificate verification. The pin is a base64-encoded string o
5256
Use these settings to pre-define integrations and agent policies that you
5357
want {fleet} to load up by default.
5458

59+
NOTE: These settings are not supported to pre-configure the Endpoint and Cloud
60+
Security integration.
61+
5562
`xpack.fleet.packages`::
5663
List of integrations that are installed when the {fleet} app starts up for the first time.
5764
+
@@ -126,7 +133,11 @@ List of agent policies that are configured when the {fleet} app starts.
126133
=====
127134

128135
`xpack.fleet.outputs`::
129-
List of outputs that are configured when the {fleet} app starts.
136+
List of outputs that are configured when the {fleet} app starts.
137+
+
138+
If configured in your `kibana.yml`, output settings are grayed out and
139+
unavailable in the {fleet} UI. To make these settings editable in the UI, do not
140+
configure them in the configuration file.
130141
+
131142
.Required properties of `xpack.fleet.outputs`
132143
[%collapsible%open]

docs/user/production-considerations/production.asciidoc

+3-8
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,11 @@ you can configure {kib} to use a list of {es} hosts.
2727
To serve multiple {kib} installations behind a load balancer, you must change the configuration.
2828
See {kibana-ref}/settings.html[Configuring {kib}] for details on each setting.
2929

30-
Settings unique across each {kib} instance:
30+
These settings must be unique across each {kib} instance:
3131
[source,js]
3232
--------
33-
server.uuid
33+
server.uuid // if not provided, this is autogenerated
3434
server.name
35-
--------
36-
37-
Settings unique across each host (for example, running multiple installations on the same virtual machine):
38-
[source,js]
39-
--------
4035
path.data
4136
pid.file
4237
server.port
@@ -106,7 +101,7 @@ These can be used to automatically update the list of hosts as a cluster is resi
106101
[[memory]]
107102
=== Memory
108103

109-
Kibana has a default memory limit that scales based on total memory available. In some scenarios, such as large reporting jobs,
104+
Kibana has a default memory limit that scales based on total memory available. In some scenarios, such as large reporting jobs,
110105
it may make sense to tweak limits to meet more specific requirements.
111106

112107
A limit can be defined by setting `--max-old-space-size` in the `node.options` config file found inside the `kibana/config` folder or any other folder configured with the environment variable `KBN_PATH_CONF`. For example, in the Debian-based system, the folder is `/etc/kibana`.

x-pack/plugins/ml/public/application/jobs/jobs_list/components/datafeed_chart_flyout/datafeed_chart_flyout.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ export const DatafeedChartFlyout: FC<DatafeedChartFlyoutProps> = ({
510510
key={'source-results'}
511511
color={euiTheme.euiColorPrimary}
512512
id={i18n.translate('xpack.ml.jobsList.datafeedChart.sourceSeriesId', {
513-
defaultMessage: 'Source indices',
513+
defaultMessage: 'Source indices document count',
514514
})}
515515
xScaleType={ScaleType.Time}
516516
yScaleType={ScaleType.Linear}
@@ -523,7 +523,7 @@ export const DatafeedChartFlyout: FC<DatafeedChartFlyoutProps> = ({
523523
key={'job-results'}
524524
color={euiTheme.euiColorAccentText}
525525
id={i18n.translate('xpack.ml.jobsList.datafeedChart.bucketSeriesId', {
526-
defaultMessage: 'Job results',
526+
defaultMessage: 'Datafeed document count',
527527
})}
528528
xScaleType={ScaleType.Time}
529529
yScaleType={ScaleType.Linear}

0 commit comments

Comments
 (0)