Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions elastic/logs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ The following parameters are available:
* `force_merge_max_num_segments` (default: unset): An integer specifying the max amount of segments the force-merge operation should use. Only supported in `logging-querying` track.
* `include_non_serverless_index_settings` (default: true for non-serverless clusters, false for serverless clusters): Whether to include non-serverless index settings.
* `codec` (default: unset): Configured the `index.codec` index setting, which controls how stored fields get stored / compressed.
* `index_disabled_by_default` (default: unset): Whether fields should not be indexed by default. This happens via `index.mapping.index_disabled_by_default` index setting.

### Querying parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
{%- endif %}
{%- endif %}
{#- non-serverless-index-settings-marker-end #}
{%- if index_disabled_by_default -%},
"mapping.index_disabled_by_default": {{ index_disabled_by_default | tojson }}
{%- endif %}
}
}
}
Expand Down
1 change: 1 addition & 0 deletions elastic/security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ The following parameters are available:
* `recovery_poll_timeout` (default: `1m`) - The maximum time to wait for additional translog operations before returning an empty result.
* `recovery_max_batch_size` (default: `32MB`) - The maximum estimated size for the batch of translog operations to return.
* `recovery_max_operations_count` (default: `1048576`) - The maximum number of translog operations to return in a single batch.
* `index_disabled_by_default` (default: unset): Whether fields should not be indexed by default. This happens via `index.mapping.index_disabled_by_default` index setting.

### Data Generation Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"sort.field": [ "host.id", "@timestamp" ],
"sort.order": [ "asc", "desc" ],
"sort.missing": ["_first", "_last"]
{%- if index_disabled_by_default -%},
"mapping.index_disabled_by_default": {{ index_disabled_by_default | tojson }}
{%- endif %}
}
{% endif %}
}
Expand Down