https://github.com/elastic/elasticsearch

sort by:
Revision Author Date Message Commit Date
5ca8591 Handle the existence of system data streams in Get Aliases API (#73254) This commit adjusts the behavior of the Get Aliases API to more thoroughly prevent errors and warnings from being emitted unnecessarily from the Get Aliases API by retrieving all indices including system ones and only warning in the post processing of the action. Additionally, the IndexAbstractionResolver has been updated to properly handle system data streams when evaluating visibility. Closes #73218 Co-authored-by: Gordon Brown <gordon.brown@elastic.co> 19 May 2021, 20:15:03 UTC
7358bb8 Use plugin canonical name instead of rest wrapper canonical name (#73245) (#73249) * Use plugin canonical name for the 3rd party Security plugin detection instead of rest wrapper canonical name Resolve: #73227 19 May 2021, 17:39:46 UTC
3856d5a Restore global state does not merge (#73226) Today the docs indicate that restoring a snapshot with `include_global_state` set will merge the ingest pipelines, ILM policies, settings etc in the snapshot with those already in the cluster. This isn't the case, we simply replace all the things. This commit corrects the docs. 19 May 2021, 15:17:19 UTC
21a0a64 [DOCS] Fix reindex API intro (#73188) (#73241) The destination doesn't need to pre-exist. 19 May 2021, 13:54:50 UTC
97c1ccb [DOCS] Remove `_all` examples from 'Fix common cluster issues' (#73217) (#73235) We plan to deprecate the `_all` wildcard pattern. This removes several `_all` examples from the 'Fix common cluster issues' guide. 19 May 2021, 12:54:13 UTC
fa6ea32 [DOCS] Fix typo 19 May 2021, 12:51:18 UTC
d9697e4 Disable watcher debug logging in full cluster restart qa tests, maybe enabling it again when investigating watcher full cluster restart qa tests (#48381) 19 May 2021, 12:20:50 UTC
7a060b2 SQL: Refactor Tableau connector to make use of the connection properties (#69169) * Refactor to make use of the connection propreties This refactors the way the connection URL is being built, to make use of frameworks' ability to construct the URL based on a set of connection propreties. This also ensures that the URI attributes are properly escaped. (cherry picked from commit 3c1e0a94b1838601cc3b18ff874714751bd70b56) 18 May 2021, 19:43:09 UTC
5276ec8 [7.13] Limit stats values in tests to prevent long overflow (#73216) 18 May 2021, 19:11:03 UTC
d977e96 Deprecate shared and index data path settings (#73178) (#73198) This commit adds deprecation warnings for use of the path.shared_data setting as well as the index setting index.data_path. relates #73168 18 May 2021, 16:59:56 UTC
018ac3b Fix typo in Rectangle() error message (#73124) (#73212) Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> Co-authored-by: Marten <mhogeweg@esri.com> 18 May 2021, 15:48:51 UTC
c66c277 [ML] fix empty body on post issue for datafeed _preview (#73205) (#73210) It is common practice to pass an empty body on a `POST` call. Consequently, a `POST _ml/datafeed/<ID>/_preview` could fail if the body is empty as we try to parse it while IGNORING the ID in the URL. This commit fixes that bug. closes #73206 18 May 2021, 15:12:11 UTC
02e4da0 Service Accounts - Ensure valid random service token name (#73098) (#73204) The random token name is a base64 UUID. It can sometimes vilolate the validation rules. The base64 UUID is now prefixed with a string token_ to ensure the name is always valid. 18 May 2021, 14:24:01 UTC
790c162 Searchable snapshots mounted in the 'hot' phase should be pinned to hot nodes (#72696) (#73184) (#73187) 18 May 2021, 10:25:00 UTC
bf852d9 [DOCS] Use query parameters in search API example (#73158) (#73174) The current search API documentation doesn't include any examples of query parameter usage. This updates the docs to include a simple syntax example using the `from` and `size` query parameters. 17 May 2021, 16:29:03 UTC
eb64fb4 [DOCS] Clarify when SLM deletes expired snapshots (#73155) (#73160) Changes: * Removes an error in the create SLM policy API's `schedule` parameter def. `schedule` is not used to delete expired snapshots. * Updates the `expire_after` parameter def to mention the `slm.retention_schedule` cluster setting. 17 May 2021, 14:35:04 UTC
0035053 [DOCS] Fix typo (#73137) (#73152) Co-authored-by: Ernesto Reig <ernesto.reig@gmail.com> 17 May 2021, 13:49:57 UTC
49f06a8 Test for final pipelines when target index is changed (#69457) (#73123) 17 May 2021, 13:42:23 UTC
3a9ce5c SQL: Disallow non-collapsable subselects with ORDER BY (#72991) (#73096) Ordering an already pre-ordered and limited subselect is not allowed, as such queries cannot be collapsed and translated into query DSL, but the require an extra ordering step on top of the results returned internally by the search/agg query. Fixes: #71158 (cherry picked from commit a5a20ae510f9e8352c43f46ebd12add275aa1141) 14 May 2021, 18:22:54 UTC
6e54e42 Add LinkageError to the errors we catch as part of the Painless sandbox (#73116) This changes the Painless sandbox to be more encompassing of possible compiler bugs including JVM bugs. This prevents any single script from crashing a node under a wider array of circumstances that in theory should be recoverable with possible changes to a user-defined script. 14 May 2021, 18:00:56 UTC
dd0b55c [DOCS] Update anchor for alias write index (#73108) (#73113) Updates the anchor for our alias write index content. Changes are no-op, but this helps prepare for future work on alias docs. 14 May 2021, 16:44:50 UTC
d86cf51 [DOCS] Consolidate `routing` parameter definitions (#73107) (#73110) Combines duplicate definitions for the `routing` parameter. 14 May 2021, 16:37:19 UTC
ff70827 [DOCS] Update single index APIs reference (#73103) (#73105) Many single index APIs, such as the index document API, can now target data streams. This updates updates references to single index APIs. 14 May 2021, 16:06:18 UTC
92a96f1 [DOCS] Rename `Bulk index alias` API to `Aliases` API (#73077) (#73085) In 7.14, the API supports both index and data stream aliases. 14 May 2021, 12:21:07 UTC
3043dae SQL: Add Verification for HAVING on TopHits with subquery (#72967) (#73054) Previously, when a TopHits aggregation function was used (FIRST/LAST, or MIN/MAX on keyword field) in a subquery and on an outer query this aggregation was filtered (with WHERE/HAVING) the Verification was passed successfully and the query was planned and translated resulting into an unsupported query DSL - since bucket selector on a TopHits agg is not currently supported, and the user received a weird error msg. Verify this case of subselects with TopHits aggs and throw an appropriate error message to the user. Closes: #71441 (cherry picked from commit 464dc365a453c465e68aad9ae0f4da30eadb6d86) 14 May 2021, 12:05:21 UTC
3f86f5f [DOCS] [7.x] Add field contexts Painless (#73059) (#73061) * [DOCS] [7.x] Add runtime fields contexts to Painless execute API docs (#72131) * add runtime fields contexts to execute docs * Changes for formatting throughout * Add missing context and context_setup * Updating runtime field context * Moving parameters and adopting a more standard API layout * Update several examples * Update more examples for runtime context * Fix links * Add boolean_field example and remove extraneous headings * Add example for date_time context * Remove extra space in TEST * Updating date_time example * Incorporating review feedback * Adding cross links * Tweaking some language based on feedback Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Adam Locke <adam.locke@elastic.co> * [DOCS] Add missing anchor for script contexts (#73056) * Remove include for Painless ingest file Co-authored-by: Jack Conradson <osjdconrad@gmail.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> Co-authored-by: Jack Conradson <osjdconrad@gmail.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> 13 May 2021, 18:06:28 UTC
2d68ffc Service Accounts - add beta version documentation (#71729) (#73039) * wip * Service Accounts - add beta documentation * consistent names * fix test * Update service accounts overview and token creation files. * Rename get service tokens to get service credentials * fix tests * Changes for create and get service tokens. * Changes for get token creds, delete token, clear token cache, and token auth. * add manage_service_account privilege to list * List service accounts APIs * Move xpack setting to Security API page, plus other cleanup. * Shorten secret tokens in examples, add cross links, plus other cleanup. * Clarifying parameter descriptions. * Clarify language for authenticating with a token. * Tweaks * Typo fix * Adding redirects to work around CI build checks * Revert "Adding redirects to work around CI build checks" This reverts commit 20a1b53591fee9cf80d352818572f47f8c637cd7. * Remove redirects that were implemented to satisfy CI checks in master branch * Move note about not supporting basic auth * Clarify what service accounts are specifically for * Apply suggestions from code review Co-authored-by: Tim Vernum <tim@adjective.org> * Addressing review feedback * tweak * Improve doc tests * fix test Co-authored-by: Adam Locke <adam.locke@elastic.co> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Tim Vernum <tim@adjective.org> Co-authored-by: Yang Wang <yang.wang@elastic.co> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Tim Vernum <tim@adjective.org> 13 May 2021, 18:06:02 UTC
1b740d9 [DOCS] Change field alias anchor (#73043) (#73048) 13 May 2021, 14:24:22 UTC
2e77a8b [DOCS] Fix typo in SLM docs (#73025) (#73042) Co-authored-by: Daisuke Harada <1519063+dharada@users.noreply.github.com> 13 May 2021, 12:36:24 UTC
588fcda Add missing word in data streams checkpoints docs (#73005) (#73032) Co-authored-by: Felix Barnsteiner <felixbarny@users.noreply.github.com> 13 May 2021, 07:50:29 UTC
80dd6fa Service Accounts - Fix delete token status code (#73021) (#73030) The delete token response now returns status code 404 instead of 200 when the token does not exist. 13 May 2021, 07:23:57 UTC
cd35945 Service Accounts - rename service account realm (#73024) (#73028) Add a leading underscore for both realm type and nane since they are synthetic. 13 May 2021, 07:23:34 UTC
10b8c40 [DOCS] Mark `filter` param as optional 12 May 2021, 20:26:26 UTC
b5d1cfb [DOCS] Update allowed operations on data stream write index (#72994) (#73009) With #70908, you can now close a write index in 7.12.1 and later versions. This removes an outdated reference from the data stream overview docs. 12 May 2021, 19:19:26 UTC
aa19f56 [DOCS] Add missing SSL settings for Metricbeat (#72987) (#72999) 12 May 2021, 17:54:01 UTC
c3b67b8 [DOCS] EQL: Note CCS is not supported (#72975) (#72980) 12 May 2021, 14:22:37 UTC
d5c97b7 [DOCS] Clarify the type of Azure storage for snapshots (#72826) (#72978) Azure Storage accounts offer several storage services including Blob Storage, Table Storage, File Storage, and Storage Queues. The intro page for this plugin should specify which type is used for elasticsearch snapshots. This info is necessary for pricing at very least. Co-authored-by: joshschmitter <45405518+joshschmitter@users.noreply.github.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> 12 May 2021, 14:20:45 UTC
515ef3f [DOCS] Add xrefs to script APIs (#72954) (#72973) 12 May 2021, 12:42:06 UTC
bc31e73 [7.13][DOCS] Fixes indentation error in Transform examples. (#72941) Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> 12 May 2021, 09:55:21 UTC
c36f138 [7.x] Make JOB_BRANCH environment variable in CI optional (#72955) (#72960) 11 May 2021, 22:37:19 UTC
7ac7ab5 [ML] Revert model snapshot now waits for annotations index (#72948) Reverting a model snapshot with the delete_intervening_results option deletes system-generated annotations that are more recent than the model snapshot. Doing this relies on the annotations index being available, so the revert model snapshot action now waits for this. This problem is more likely to be seen in recent releases, as we now revert to the most recent model snapshot when a job relocates from one node to another, so we are more likely to be reverting a model snapshot at a time when there has been cluster disruption and this could also be causing the annotations index to be temporarily unavailable. Backport of #72926 11 May 2021, 19:22:08 UTC
6ce7d8e [DOCS] recommend dedicated frozen tier (#72882) Using a dedicated frozen tier is recommended. 11 May 2021, 18:43:19 UTC
a5cb7fe Add assertions to aid troubleshooting Hot Threads test failures (#72837) Sometimes generating hot threads will fail due to attempting to create a TimeValue with a negative duration. This commit adds asserts at the time we get the duration that will be used to create the TimeValue to aid the debugging process. 11 May 2021, 18:42:51 UTC
3e64e47 [7.13] Deprecate single-tier allocation filtering settings (#72835) (#72943) * Deprecate single-tier allocation filtering settings `(index|cluster).routing.allocation.(include|exclude|require)._tier` settings are now deprecated in favor of using `index.routing.allocation.include._tier_preference`. * Update deprecation message 11 May 2021, 16:53:09 UTC
77ff223 [DOCS] Use same certificate on every node (#72900) (#72937) * [DOCS] Use same certificate on every node * Incorporate review feedback Co-authored-by: Tim Vernum <tim@adjective.org> Co-authored-by: Tim Vernum <tim@adjective.org> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Tim Vernum <tim@adjective.org> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> 11 May 2021, 16:17:58 UTC
4d171fb Grant cancel_task privilege on node level action (#72840) The cancel_task privilege added in 7.12 does not grant the broadcast of the cancel action to other nodes. This commit fixes this bug. 11 May 2021, 13:38:43 UTC
9684978 Upgrade Gradle wrapper to 7.0.1 (#72898) (#72902) 11 May 2021, 00:29:03 UTC
2b65d7a Remove outdated TODO around point-in-time response 10 May 2021, 23:47:05 UTC
3b1ddd9 Fix broken precompiled script plugin 10 May 2021, 17:45:39 UTC
0347a24 Use updated environment variable for branch build scan metadata (cherry picked from commit b761e000c8460eb3e224d52cbf05c94b768ead52) (cherry picked from commit f5d58aa621d439479469872c140d3b6ada4bd789) 10 May 2021, 17:40:02 UTC
94df330 Validate forced awareness allocation setting (#72810) Today any setting under `cluster.routing.allocation.awareness.force.**` is accepted, but only those matching `...force.*.values` are actually valid. Accepting other things means that we cannot apply the resulting cluster state, which is disastrous. This commit adds settings validation to enforce the expected structure of these settings. Closes #72524 10 May 2021, 16:27:32 UTC
f1be000 Add job branch environment variable 10 May 2021, 16:21:32 UTC
1afc644 [DOCS] Include link to ES_TMPDIR with docs on jna.tmpdir (#72845) (#72891) 10 May 2021, 16:07:40 UTC
86273a7 Recommend cluster scope for Metricbeat (#70865) Today we mention Metricbeat's `scope` parameter but offer no guidance about how it should be used. This commit adds guidance to use `scope: cluster`, especially on clusters with dedicated master-eligible nodes. 10 May 2021, 13:25:34 UTC
b3af420 Disable GeoIP downloader (#72716) (#72880) Due to problems discovered in #72572 we have to disable geoip downloader for now. We use ingest.geoip.downloader.enabled.default as feature flag. This change also reverts changes to docs. 10 May 2021, 12:19:22 UTC
03e2736 [DOCS] Revises required privileges info in Transforms API docs (#72803) (#72813) 10 May 2021, 10:01:38 UTC
b958bcd Fix PreallocatedCircuitBreakerService leak (#72846) (#72869) when overflowing the preallocated buffer, adjust the underlaying breaker before allocating the preallocated bytes 10 May 2021, 06:14:22 UTC
b8679b2 Add missing env var for unix platform tests 07 May 2021, 16:34:56 UTC
69ac535 Deprecate bootstrap.system_call_filter (#72834) We are going to require system call filters. This commit is the first step in that journey, which is to deprecate the setting that allows disabling system call filters. 07 May 2021, 12:59:55 UTC
1dcfb19 [7.13] Change data tier preference of snapshot blob cache index to data_content,data_hot (#72844) .snapshot-blob-cache index is created today with a data tier preference set to data_cold,data_warm,data_hot. This does not works well with autoscaling and clusters that only have a hot and a frozen tier: in such cases autoscaling adds a cold tier just to host this system index. This commit changes the tier preference to data_content,data_hot. Backport of #72817 07 May 2021, 09:41:17 UTC
47eae8c Ensure PR builds checkout the correct commit 07 May 2021, 07:47:26 UTC
4bc3e30 Add missing environment vars for release tests 07 May 2021, 06:53:02 UTC
6e5d264 Fix SCM configuration for pull request jobs 07 May 2021, 06:47:27 UTC
14fdaa0 Introduce specific matrix config for FIPS testing 07 May 2021, 06:13:44 UTC
6012574 Temporarily disable packaging upgrade 07 May 2021, 06:04:38 UTC
0e66c03 Add Java 11 home to EAR CI job 07 May 2021, 05:58:42 UTC
c5ebf33 Configure runtime java for ARM CI builds 07 May 2021, 00:37:38 UTC
a2d0338 Add Java 11 home for building BWC distributions on Windows 07 May 2021, 00:17:15 UTC
9a5a681 Remove rest compat tests from platform support matrix job 07 May 2021, 00:11:39 UTC
7a557c9 Move CI job configuration to elasticsearch repository 06 May 2021, 23:55:42 UTC
9f08dce Update docs for `filter` agg (backport of #72508) (#72828) (#72829) The docs for the `filter` agg seemed to suggest that it was the preferred way to filter results for aggs but its really mostly for when you need to filter things under another bucketing agg. Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> 06 May 2021, 19:33:08 UTC
1ea8139 [DOCS] EQL: Update tiebreaker docs for implicit tiebreaker (#72808) (#72825) 06 May 2021, 18:59:44 UTC
9ef30a0 [DOCS] Adds more ML and transform PRs to release notes (#72767) (#72819) 06 May 2021, 16:51:49 UTC
613aaa9 Remove GeoIPv2 mentions from 7.13 release notes (#72743) 06 May 2021, 15:18:14 UTC
0e978fc [7.13][DOCS] Adds ML-related release highlights to What's new in 7.13 (#72799) 06 May 2021, 09:54:15 UTC
59759d1 Fix early termination of search request with sort optimization (#72683) (#72795) The query phase applies an optimization when sorting by a numeric field. This optimization doesn't handle early termination correctly when `timeout` and/or `terminate_after` are used. An IAE exception is thrown at the shard level when the timeout is reached. This commit fixes the bug, early terminated exceptions are correctly caught and the result is computed from the documents that the shard was able to collect before the termination. Closes #72661 06 May 2021, 09:37:41 UTC
989ed9b [7.13] Apply spotless formatting to :x-pack:plugin:voting-only-node (#72759) 06 May 2021, 09:24:44 UTC
fcdbbd6 [DOCS] Adds max_trees hyperparameter to GET TM API docs (#72298) (#72790) 06 May 2021, 08:50:02 UTC
223c93f [Test] mute another test affected by JDK-8266279 Issue is tracked at #72639 06 May 2021, 05:33:29 UTC
c6ed64c Mute FullClusterRestartIT#testRecovery 06 May 2021, 01:34:58 UTC
eedf75b [DOCS] Update 'shared_cache' references for searchable snapshots (#72775) (#72778) 05 May 2021, 22:00:34 UTC
c3375d3 [DOCS] Rename mount types for searchable snapshots (#72699) (#72774) Changes: * Renames 'full copy searchable snapshot' to 'fully mounted index.' * Renames 'shared cache searchable snapshot' to 'partially mounted index.' * Removes some unneeded cache setup instructions for the frozen tier. We added a default cache size with #71844. 05 May 2021, 20:52:49 UTC
d699f0b Breaking changes note for frozen and MDP (#72109) Relates #71896 05 May 2021, 20:02:39 UTC
8769d44 [DOCS] Fix `<repository>` param 05 May 2021, 19:57:12 UTC
98f159c [DOCS] Clarify remote_cluster_client is required to run ML (#72569) (#72730) Co-authored-by: Luca Belluccini <luca.belluccini@elastic.co> 05 May 2021, 16:10:05 UTC
235b0f8 Fix Edge Case Datastream Snapshot Create Bug (#72747) (#72749) We always clean up the list of datastreams depending on the indices acutally in the snapshot. Even for non-partial snapshots datastream indices could be excluded from the snapshot by index exlusions that remove all the datastream's indices from the snapshot. 05 May 2021, 15:02:32 UTC
f92320a Add permissions for apm_user for datastreams (#72739) Based on recent conversations around data streams for APM, there is no final decision yet that apm data streams will be created per instrumented Service. If datastreams are not created per service, the current pattern for the apm_user permissions need to be adapted to not only support <type>-apm.* but also <type>-apm-*. fixes #72737 05 May 2021, 11:53:00 UTC
7aefb45 [DOCS] Fix term for partially mounted indices 05 May 2021, 11:38:45 UTC
3356d7b [DOCS] Refactor script processor docs (#72691) (#72720) 04 May 2021, 22:39:53 UTC
893f484 [DOCS] Fix formatting 04 May 2021, 16:29:50 UTC
bfd227a [DOCS] Document missing script APIs (#72175) (#72705) Documents the following APIs: * [Delete stored script][0] * [Get stored script][1] * [Get script contexts][2] * [Get script languages][3] [0]: https://github.com/elastic/elasticsearch/blob/master/rest-api-spec/src/main/resources/rest-api-spec/api/delete_script.json [1]: https://github.com/elastic/elasticsearch/blob/master/rest-api-spec/src/main/resources/rest-api-spec/api/get_script.json [2]: https://github.com/elastic/elasticsearch/blob/master/rest-api-spec/src/main/resources/rest-api-spec/api/get_script_context.json [3]: https://github.com/elastic/elasticsearch/blob/master/rest-api-spec/src/main/resources/rest-api-spec/api/get_script_languages.json 04 May 2021, 15:23:51 UTC
3ea44a8 [DOCS] Fix bulk API xref (#72685) (#72708) 04 May 2021, 15:23:17 UTC
8e19a01 [DOCS] Revise partially mounted searchable snapshot highlight 04 May 2021, 14:05:28 UTC
7c2ea96 [TEST] Updated smoke test JDK's trusted certs (#72594) The list of trusted CAs in the latest OpenJDK builds has changed: https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8243559 This PR updates the default jdk trust config smoke test. Closes #71717 04 May 2021, 14:03:19 UTC
c853af5 [DOCS] Clarify location of custom JVM options files (#72656) (#72681) Clarify the files to be modified are in the `jvm.options.d/` folder Co-authored-by: Leaf-Lin <39002973+Leaf-Lin@users.noreply.github.com> 04 May 2021, 12:37:02 UTC
111e248 [7.13][Transform] Fix rolling upgrade regression introduced in #72533 (#72671) #72533 introduced a regression, causing transforms to timeout/fail. With this change transform only waits for 1 active shard(primary) as waiting for all can block during rolling upgrade fixes #72617 relates #72533 04 May 2021, 12:25:41 UTC
48a9c2b [ML] Use appropriate master timeouts for master actions (#72664) Master node actions have a master timeout. One thing this does is define how long the transport layer waits for a master node to be elected if no master node exists at the time the master node request is made. When a persistent task invokes a master node action it makes sense for the master node timeout to be high. We do not want persistent tasks to fail because of a master timeout while a cluster is upgraded. For a request sent by an end user a master timeout of the order of 30 seconds makes sense, and the user can make a decision of whether to try again, but for a persistent task if the task fails due to a master timeout then it will never try again until somebody restarts the task. Since the user will not be expecting persistent tasks to fail during upgrade the tasks may not get restarted for a very long time, which is unacceptable. Therefore, this change increases the master timeout for master actions invoked by persistent tasks to 1 year. This means that the tasks will tolerate much longer than normal periods without a master node during upgrades, which should stop them spuriously failing. Backport of #72492 04 May 2021, 09:18:37 UTC
2d22d3c [DOCS] Remove frozen tier restriction for ESS (#72624) (#72655) * Remove frozen tier restriction for ESS * Remove section from 'Use ES for time series data' Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> Co-authored-by: David Kilfoyle <41695641+kilfoyle@users.noreply.github.com> Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com> 03 May 2021, 23:58:40 UTC
5b1e31f [DOCS] [7.13] Add field extraction use cases to scripting docs (#71596) (#72647) * [DOCS] Add field extraction use cases to scripting docs (#71596) * [DOCS] Add field extraction use cases to scripting docs * Adding file * Remove extra space * Add dissect pattern to split and retrieve data * Fix list spacing * Incorporating review feedback * Adding type to console results 03 May 2021, 21:08:14 UTC
b9118df Document signature for runtime fields (bckport of #72630) (#72651) This documents the different signatures of the `emit` method for runtime fields. For fields like `long` the signature is fairly obvious - `emit(long)`. But for `date`, `ip`, and `geo_point` its not obvious from the name what the signature of the method will be. Co-authored-by: Adam Locke <adam.locke@elastic.co> 03 May 2021, 20:49:42 UTC
back to top