-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into alerting/webhook-basic-auth-optional
- Loading branch information
Showing
431 changed files
with
18,510 additions
and
15,438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
name: Assign a PR to project based on label | ||
steps: | ||
- name: Assign to project | ||
uses: elastic/github-actions/[email protected].1 | ||
uses: elastic/github-actions/[email protected].2 | ||
id: project_assigner | ||
with: | ||
issue-mappings: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
name: Assign issue or PR to project based on label | ||
steps: | ||
- name: Assign to project | ||
uses: elastic/github-actions/[email protected].1 | ||
uses: elastic/github-actions/[email protected].2 | ||
id: project_assigner | ||
with: | ||
issue-mappings: '[{"label": "Team:AppArch", "projectName": "kibana-app-arch", "columnId": 6173895}, {"label": "Feature:Lens", "projectName": "Lens", "columnId": 6219363}, {"label": "Team:Canvas", "projectName": "canvas", "columnId": 6187593}]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 19 additions & 19 deletions
38
docs/management/index-lifecycle-policies/intro-to-lifecycle-policies.asciidoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
[role="xpack"] | ||
[[index-lifecycle-policies]] | ||
== Index lifecycle policies | ||
== Index Lifecycle Policies | ||
|
||
If you're working with time series data, you don't want to continually dump | ||
everything into a single index. Instead, you might periodically roll over the | ||
data to a new index to keep it from growing so big it's slow and expensive. | ||
As the index ages and you query it less frequently, you’ll likely move it to | ||
If you're working with time series data, you don't want to continually dump | ||
everything into a single index. Instead, you might periodically roll over the | ||
data to a new index to keep it from growing so big it's slow and expensive. | ||
As the index ages and you query it less frequently, you’ll likely move it to | ||
less expensive hardware and reduce the number of shards and replicas. | ||
|
||
To automatically move an index through its lifecycle, you can create a policy | ||
to define actions to perform on the index as it ages. Index lifecycle policies | ||
are especially useful when working with {beats-ref}/beats-reference.html[Beats] | ||
data shippers, which continually | ||
send operational data, such as metrics and logs, to Elasticsearch. You can | ||
automate a rollover to a new index when the existing index reaches a specified | ||
size or age. This ensures that all indices have a similar size instead of having | ||
daily indices where size can vary based on the number of Beats and the number | ||
To automatically move an index through its lifecycle, you can create a policy | ||
to define actions to perform on the index as it ages. Index lifecycle policies | ||
are especially useful when working with {beats-ref}/beats-reference.html[Beats] | ||
data shippers, which continually | ||
send operational data, such as metrics and logs, to Elasticsearch. You can | ||
automate a rollover to a new index when the existing index reaches a specified | ||
size or age. This ensures that all indices have a similar size instead of having | ||
daily indices where size can vary based on the number of Beats and the number | ||
of events sent. | ||
|
||
{kib}’s *Index Lifecycle Policies* walks you through the process for creating | ||
and configuring a policy. Before using this feature, you should be familiar | ||
{kib}’s *Index Lifecycle Policies* walks you through the process for creating | ||
and configuring a policy. Before using this feature, you should be familiar | ||
with index lifecycle management: | ||
|
||
* For an introduction, see | ||
{ref}/getting-started-index-lifecycle-management.html[Getting started with index | ||
lifecycle management]. | ||
* To dig into the concepts and technical details, see | ||
* For an introduction, refer to | ||
{ref}/getting-started-index-lifecycle-management.html[Getting started with index | ||
lifecycle management]. | ||
* To dig into the concepts and technical details, see | ||
{ref}/index-lifecycle-management.html[Managing the index lifecycle]. | ||
* To check out the APIs, see {ref}/index-lifecycle-management-api.html[Index lifecycle management API]. |
Oops, something went wrong.