35
35
# Setting for an optimized healthcheck that only uses the local OpenSearch node to do Dashboards healthcheck.
36
36
# This settings should be used for large clusters or for clusters with ingest heavy nodes.
37
37
# It allows Dashboards to only healthcheck using the local OpenSearch node rather than fan out requests across all nodes.
38
- #
38
+ #
39
39
# It requires the user to create an OpenSearch node attribute with the same name as the value used in the setting
40
40
# This node attribute should assign all nodes of the same cluster an integer value that increments with each new cluster that is spun up
41
- # e.g. in opensearch.yml file you would set the value to a setting using node.attr.cluster_id:
41
+ # e.g. in opensearch.yml file you would set the value to a setting using node.attr.cluster_id:
42
42
# Should only be enabled if there is a corresponding node attribute created in your OpenSearch config that matches the value here
43
43
# opensearch.optimizedHealthcheckId: "cluster_id"
44
44
85
85
# For reference, the `threshold of memoryCircuitBreaker` = `max-old-space-size of NodeJS` * `opensearch.memoryCircuitBreaker.maxPercentage`
86
86
# opensearch.memoryCircuitBreaker.maxPercentage: 1.0
87
87
88
+ # DEPRECATED: Use opensearch.requestHeadersAllowlist
88
89
# List of OpenSearch Dashboards client-side headers to send to OpenSearch. To send *no* client-side
89
90
# headers, set this value to [] (an empty list).
90
91
# opensearch.requestHeadersWhitelist: [ authorization ]
91
92
93
+ # List of OpenSearch Dashboards client-side headers to send to OpenSearch. To send *no* client-side
94
+ # headers, set this value to [] (an empty list).
95
+ # opensearch.requestHeadersAllowlist: [ authorization ]
96
+
92
97
# Header names and values that are sent to OpenSearch. Any custom headers cannot be overwritten
93
- # by client-side headers, regardless of the opensearch.requestHeadersWhitelist configuration.
98
+ # by client-side headers, regardless of the opensearch.requestHeadersAllowlist configuration.
94
99
# opensearch.customHeaders: {}
95
100
96
101
# Time in milliseconds for OpenSearch to wait for responses from shards. Set to 0 to disable.
126
131
# Set the allowlist to check input graphite Url. Allowlist is the default check list.
127
132
# vis_type_timeline.graphiteAllowedUrls: ['https://www.hostedgraphite.com/UID/ACCESS_KEY/graphite']
128
133
129
- # Set the blocklist to check input graphite Url. Blocklist is an IP list.
130
- # Below is an example for reference
134
+ # Set the blocklist to check input graphite Url. Blocklist is an IP list.
135
+ # Below is an example for reference
131
136
# vis_type_timeline.graphiteBlockedIPs: [
132
137
# //Loopback
133
138
# '127.0.0.0/8',
159
164
# vis_type_timeline.graphiteBlockedIPs: []
160
165
161
166
# opensearchDashboards.branding:
162
- # logo:
163
- # defaultUrl: ""
164
- # darkModeUrl: ""
165
- # mark:
166
- # defaultUrl: ""
167
- # darkModeUrl: ""
168
- # loadingLogo:
169
- # defaultUrl: ""
170
- # darkModeUrl: ""
171
- # faviconUrl: ""
172
- # applicationTitle: ""
173
-
174
- # Set the value of this setting to true to capture region blocked warnings and errors
167
+ # logo:
168
+ # defaultUrl: ""
169
+ # darkModeUrl: ""
170
+ # mark:
171
+ # defaultUrl: ""
172
+ # darkModeUrl: ""
173
+ # loadingLogo:
174
+ # defaultUrl: ""
175
+ # darkModeUrl: ""
176
+ # faviconUrl: ""
177
+ # applicationTitle: ""
178
+
179
+ # Set the value of this setting to true to capture region blocked warnings and errors
175
180
# for your map rendering services.
176
181
# map.showRegionBlockedWarning: false
177
182
178
183
# Set the value of this setting to false to suppress search usage telemetry
179
184
# for reducing the load of OpenSearch cluster.
180
- # data.search.usageTelemetry.enabled: false
185
+ # data.search.usageTelemetry.enabled: false
0 commit comments