Commit graph

2296 commits

Author SHA1 Message Date
Josh Dover
5ea8281627
[7.x] Add server.publicBaseUrl config (#85075) (#85361) 2020-12-09 16:10:16 -07:00
Poff Poffenberger
a6e71edbf0
[Time to Visualize] Add visualizations to dashboard from save modal (#83140) (#85345)
Co-authored-by: Ryan Keairns <contactryank@gmail.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
# Conflicts:
#	packages/kbn-optimizer/limits.yml
2020-12-09 10:37:25 -06:00
Kaarina Tungseth
3f53ab8454
[7.x] [DOCS] 7.10.1 Release Notes (#84663) (#85353)
* [DOCS] 7.10.1 Release Notes

* Update docs/CHANGELOG.asciidoc

Co-authored-by: Lisa Cawley <lcawley@elastic.co>

* Review comment

* [DOCS] Adds PR#84605 to release notes

Co-authored-by: Lisa Cawley <lcawley@elastic.co>
2020-12-09 09:00:29 -06:00
Aleh Zasypkin
393d1e44a7
[7.x][Docs] Document Anonymous authentication provider. (#85324) 2020-12-09 08:06:51 +01:00
Stacey Gammon
e648af4fb9
Convert a README to mdx to get it slurped up by the new docs system (#84834) (#85335)
* Convert readme to mdx so it can get slurped into the new docs system

* Adjust plugin list doc generation so it accounts for mdx readmes

* fix eslint of discover_plugin file

* Fix link to readme in plugin list

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-08 20:46:03 -05:00
Lisa Cawley
039ffbc53c
[ML] Add machine learning pages to doc_links_service.ts (#85181) (#85316) 2020-12-08 13:20:12 -08:00
Kaarina Tungseth
9173018dd1
[DOCS] Adds Lens redirect link (#84000) (#85296)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-08 10:27:39 -06:00
Larry Gregory
a7437b7861
[7.x] fixed path to config file (#85257) (#85259)
Co-authored-by: Vincent Fuchs <vincent.fuchs@gmail.com>
2020-12-08 08:47:07 -05:00
Vadim Dalecky
f4b79d327c
HTTP CRUD+ API for Index Patterns (#83576) (#85237)
* refactor: 💡 extract out createIndexPatternsService() method

* feat: 🎸 add create index pattern route

* feat: 🎸 add index patterns http context

* feat: 🎸 add schema for index pattern create method

* refactor: 💡 compose schema out of variables

* feat: 🎸 allow to not make the new index pattern a default one

* feat: 🎸 implement index pattern create endpoint

* docs: ✏️ add index pattern create endpoint docs

* fix: 🐛 add error handling wrapper

* feat: 🎸 add index pattern GET route

* docs: ✏️ add index pattern GET mention to docs

* feat: 🎸 add higher order route handler to check for context

* feat: 🎸 add index pattern deletion endpoint

* docs: ✏️ add delete endpoint docs entry

* feat: 🎸 add index pattern update route

* feat: 🎸 add ability to update timeFieldName

* feat: 🎸 add ability to edit intervalName, sourceFilters, fields

* feat: 🎸 allow updating index pattern type and typeMeta

* feat: 🎸 add ability to update index_pattern fields

* docs: ✏️ add index pattern update endpoint docs

* docs: ✏️ fix typo

* feat: 🎸 disable XSRF and add Content-Type

* fix: 🐛 enable xsrf

* feat: 🎸 send 404 status code when index pattern is not found

* fix: 🐛 correctly report empty change set error

* feat: 🎸 fields API add route for adding field to IP

* docs: ✏️ add index pattern field create route

* fix: 🐛 throw on creating an existing index pattern field

* feat: 🎸 add field upsert route

* feat: 🎸 add field get api endpoint

* feat: 🎸 add field delete endpoint

* refactor: 💡 improve 404 error handling

* refactor: 💡 improve index pattern 404 error class

* feat: 🎸 add field update api endpoint

* docs: ✏️ typo

* refactor: 💡 rename ski_field_refresh to refresh_fields in creat

* refactor: 💡 rename to refresh_fields param in update call

* refactor: 💡 rename parameter to refresh_fields in fields api

* feat: 🎸 allow creating and deleting only scripted fields

* style: 💄 fix TypeScript/Prettier error

* test: 💍 add index pattern creation negative tests

* test: 💍 add index pattern create method tests

* feat: 🎸 remove make_default flag

* docs: ✏️ update docs

* test: 💍 add index patter api get tests

* test: 💍 add delete index pattern tests

* fix: 🐛 fix TypeScript error after refactor

* docs: ✏️ update autogenerated docs

* docs: ✏️ update autogenerated docs

* refactor: 💡 change Fields API to Scripted Fields API

* feat: 🎸 allow only scripted fields in Scripted Fields API

* test: 💍 add index patter api update tests

* test: 💍 add scripted field create api tests

* test: 💍 add scripted field delete api tests

* test: 💍 add scripted fields fetch api tests

* test: 💍 add scripted field field put api tests

* test: 💍 add scripted field update api test

* feat: 🎸 add index pattern field update endpoint

* feat: 🎸 improve index patterns fields api

* test: 💍 fix test

* docs: ✏️ update docs README

* test: 💍 add field metadata deletion teests

* docs: ✏️ improve index pattern api readme

* fix: 🐛 fix TypeScript errors

* test: 💍 update jest tests

* docs: ✏️ update auto-generated docs

* feat: 🎸 remove intervalName from index pattern create API

* test: 💍 fix integration tests

* fix: 🐛 make refresh_fields default to false

* chore: 🤖 remove searchable and aggregatable from public API

* chore: 🤖 remove various field properties

* chore: 🤖 remove "index" attribute from public field schema

* docs: ✏️ update docs to match API

* chore: 🤖 fix TypeScript errors

* test: 💍 try fixing functional tests

* docs: ✏️ update auto-generated docs

* chore: 🤖 check if this fixes security tests

* fix: 🐛 create index patterns context only if user is authc

* fix: 🐛 assert on index patterns service

* test: 💍 try fixing integration tests

* fix: 🐛 try fixing integration tests

* chore: 🤖 update auto-generated docs

* refactor: 💡 directly inject index pattern provider into create

* refactor: 💡 create index pattern service directly in each route

* refactor: 💡 remove index pattern route context provider

* chore: 🤖 remove unused code

* chore: 🤖 remove refresh_fields from scripted fields

* style: 💄 change template param names

* refactor: 💡 make field.count always be an integer

* docs: ✏️ update auto-generated docs

* refactor: 💡 inject index patterns using getStartServices

* docs: ✏️ update autogenerated docs

* docs: ✏️ update docs
2020-12-08 12:16:00 +01:00
Christiane (Tina) Heiligers
787e76a0b2
[7.x] [Docs] Adds docs on how to run Kibana with the APM agent locally (#84700) (#85200)
Co-authored-by: Vignesh Shanmugam <vignesh.shanmugam22@gmail.com>

Co-authored-by: Vignesh Shanmugam <vignesh.shanmugam22@gmail.com>
2020-12-07 14:54:20 -07:00
DeDe Morton
a513fdf619
Change link text to say Fleet (#85083) (#85194) 2020-12-07 13:06:46 -08:00
Lukas Olson
a821cff791
[data.search] Move background session service to data enhanced plugin (#84837) (#85152)
* [data.search] Move search method inside session service and add tests

* Move background session service to data_enhanced plugin

* Fix types

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-07 13:34:13 -07:00
Pierre Gayvallet
315721c640
[7.x] Add bulk assign action to tag management (#84177) (#85119)
* Add `bulk assign` action to tag management (#84177)

* initial draft

* move components to their own files

* create services folder and move tags package

* add assignment service

* fix some types

* prepare assign tag route

* move server-side tag client under the `services` folder

* add security check, move a lot of stuff.

* design improvements

* display tags in flyout

* improve button and add notification on save

* add action on tag rows

* fix types

* fix mock import paths

* add lens to the list of assignable types

* update generated doc

* add base functional tests

* move api to internal

* add api/security test suites

* add / use get_assignable_types API

* fix feature control tests

* fix assignable types propagation

* rename actions folder to bulk_actions

* extract actions to their own module

* add common / server unit tests

* add client-side assign tests

* add some tests and tsdoc

* typo

* add getActions test

* revert width change

* fix typo in API

* various minor improvements

* typo

* tsdoc on flyout page object

* close flyout when leaving the page

* fix bug when redirecting to SO management with a tag having whitespaces in its name

* check for dupes in toAdd and toRemove

* add lazy load to assign modal opener

* add lazy load to edit/create modals

* check if at least one assign or unassign tag id is specified

* grammar

* add explicit type existence check

* fix mappings for 7.x
2020-12-07 15:44:50 +01:00
Matthew Kime
d76f825ffd
Query string input - load index patterns instead of saved objects (#84457) (#85104)
* load index patterns instead of saved objects
* remove getFromSavedObject
* add test
2020-12-06 21:44:34 -06:00
Thom Heymann
9ef4d22cf3
ECS audit events for alerting (#84113) (#85093)
* ECS audit events for alerts plugin

* added api changes

* fixed linting and testing errors

* fix test

* Fixed linting errors after prettier update

* Revert "Allow predefined ids for encrypted saved objects (#83482)"

This reverts commit 7d929fe903.

* Added suggestions from code review

* Fixed unit tests

* Added suggestions from code review

* Changed names of alert events

* Changed naming as suggested in code review

* Added suggestions from PR

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-05 12:05:46 +00:00
Ahmad Bamieh
7824e075a3
[7.x] [Telemetry] Introduce UI Counters (#84224) (#85038)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-04 19:55:54 +02:00
Tiago Costa
ff03b5b30d
chore(NA): removes auto install of pre-commit hook (#83566) (#85026)
* chore(NA): remove kibana pre-commit hook installation from bootstrap

* chore(NA): add support for git ref flag on run precommit hook script

* chore(NA): integrate quick commit checks within the CI

* chore(NA): introduce logging trap to warn about quick commit checks failure and how to reproduce it

* chore(NA): update quick commit checks message

* fix(NA): quick commit checks function def

* chore(NA): fix quick commit checks message quotes

* chore(NA): fix functional call

* chore(NA): fix script to run

* chore(NA): add unexpected debugger statement to test quick commit checks

* chore(NA): update message to log before quick commit checks

* chore(NA): remove extra debugger statement

* chore(NA): add echo message inline with script execution

* chore(NA): add unexpected debugger statement to test quick commit checks

* chore(NA): remove extra usage of debug statement

* chore(NA): wrapping quick commit checks in a func

* chore(NA): export function to use later

* chore(NA): export function to use later

* chore(NA): use child bash script on github checks reporter

* chore(NA): define dir context for commit_check_runner.sh

* fix(NA): permissions for commit_check_runner.sh

* fix(NA): permissions for commit.sh

* chore(NA): format message to log

* chore(NA): add unexpected debugger statement to test quick commit checks

* chore(NA): remove extra usage of debug statement

* chore(NA): format runner message

* chore(NA): replace log.info by log.warning

* docs(NA): include docs for removing the pre-commit hook auto installation

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-04 17:52:14 +00:00
Luke Elmers
4b65a4dfd6
[data.search][data.indexPatterns] Expose esaggs + indexPatternLoad on the server. (#84590) (#84916) 2020-12-03 12:58:22 -07:00
Luke Elmers
85533fca96
[data.search.searchSource] Update SearchSource to use Fields API. (#82383) (#84915) 2020-12-03 12:57:56 -07:00
Joe Portner
039dc67153
Disable checking for conflicts when copying saved objects (#83575) (#84922) 2020-12-03 13:32:43 -05:00
Brandon Kobel
6be10bda5d
Deprecate reporting.index setting (#84005) (#84909)
* Deprecating `xpack.reporting.index` setting

* Adding unit test

* Now with more standard deprecation messages

* Updating the xpack.reporting.index docs

* Fixing tests

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-03 09:56:39 -08:00
gchaps
c9810a1fee
[DOCS] Adds entry for server-side sessions (#84702)
* [DOCS] Adds entry for server-side sessions

* [DOCS] Minor edits
2020-12-03 08:52:28 -08:00
Marco Liberati
896187eab8
[7.x] [Embeddable] Export CSV action for Lens embeddables in dashboard (#83654) (#84885)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-03 16:45:18 +01:00
Mikhail Shustov
645eae82b7
[7.x] Rename server.xsrf.whitelist to server.xsrf.allowlist (#84791) (#84861)
* Rename server.xsrf.whitelist to server.xsrf.allowlist (#84791)

* rename xsrd.whitelist to xsrf.allowlist

* update docs

* update telemetry schema

* update kbn-config tests
# Conflicts:
#	src/core/server/config/deprecation/core_deprecations.ts

* Update core_deprecations.ts

* miss import
2020-12-03 15:51:44 +01:00
Tyler Smalley
f9fd733a12
Jest multi-project configuration (#77894) (#84826)
Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
# Conflicts:
#	src/dev/code_coverage/ingest_coverage/integration_tests/team_assignment.test.js
#	src/plugins/console/jest.config.js
#	x-pack/plugins/canvas/scripts/jest.js
2020-12-02 14:02:21 -08:00
Larry Gregory
718622e122
[7.x] Deprecate disabling the spaces plugin (#83984) (#84795)
Co-authored-by: Aleh Zasypkin <aleh.zasypkin@gmail.com>

Co-authored-by: Aleh Zasypkin <aleh.zasypkin@gmail.com>
2020-12-02 13:52:39 -05:00
gchaps
c5db7ce64e
[7.x] Update create.asciidoc (#84046) (#84671)
* Update create.asciidoc (#84046)

The url templates provided for call of the API with space information was missing the /api/ section in it.

(cherry picked from commit 35f1cc16eaa29666d7212402f57ab17858ebc96d)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

* [DOCS] Fixes requests

Co-authored-by: Olivier V <vandamo.be@gmail.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-01 10:47:10 -08:00
Bill McConaghy
0b7ec8b36e
adding documentation of use of NODE_EXTRA_CA_CERTS env var (#84578) (#84636) 2020-12-01 10:23:48 -05:00
Kaarina Tungseth
3289e0c6b7
[DOCS] Adds redirect to known plugins page (#84001) (#84547) 2020-12-01 09:08:12 -06:00
Anton Dosov
b59c6529ab
[Search] Integrate "Send to background" UI with session service (#83073) (#84635) 2020-12-01 16:03:25 +01:00
Josh Dover
6a76c1ccfe
[7.x] Add application deep links to global search (#83380) (#84591) 2020-12-01 08:00:43 -07:00
Rudolf Meijering
c2bdd1d015
SavedObjectsRepository.incrementCounter supports array of fields (#84326) (#84613)
* SavedObjectsRepository.incrementCounter supports array of fields

* Fix TS errors

* Fix failing test

* Ensure all the remarks make it into our documentation

* SavedObjectsRepository.incrementCounter initialize option

* Move usage collection-specific docs out of repository into usage collection plugins readme

* Update api docs

* Polish generated docs
2020-12-01 13:45:52 +01:00
Tiago Costa
60e03fcfc1
chore(NA): tool to find plugins circular dependencies between plugins (#82867) (#84588)
* chore(NA): update gitignore to include first changes from moving into a single package.json

* chore(NA): update gitignore

* chore(NA): move all the dependencies into the single package.json and apply changes to bootstrap

* chore(NA): fix types problems after the single package json

* chore(NA): include code to find the dependencies used across the code

* chore(NA): introduce pure lockfile for install dependencies on build

* chore(NA): update clean task to not delete anything from xpack node_modules

* chore(NA): update gitignore to remove development temporary rules

* chore(NA): update notice file

* chore(NA): update jest snapshots

* chore(NA): fix whitelisted licenses to include a new specify form of an already included one

* chore(NA): remove check lockfile symlinks from child projects

* chore(NA): fix eslint and add missing declared deps on single pkg json

* chore(NA): correctly update notice

* chore(NA): fix failing jest test for storyshots.test.tsx

* chore(NA): fix cypress multi reporter path

* chore(NA): fix Project tests check

* chore(NA): fix problem with logic to detect used dependes on oss build

* chore(NA): include correct x-pack plugins dep discovery

* chore(NA): discover entries under dynamic requires on vis_type_timelion

* chore(NA): remove canvas

* chore(NA): add initial code to find circular deps

* chore(NA): ground work to integrate the circular deps scripts

* chore(NA): add correct filtering to find circular dependenices feature

* chore(NA): add ci mode flag into circular deps script

* chore(NA): feature complete circular dependencies detect script

* chore(NA): merge and solve conflicts with master

* chore(NA): remove unwanted changes

* chore(NA): remove unwanted changes on kbn storybook

* chore(NA): hook find circular deps tool into ci

* chore(NA): remove previous find plugin circular deps script

* chore(NA): add type for circular dep list

* chore(NA): add type for circular dep list for allowed list

* chore(NA): allow CI to fail check

* chore(NA): update deps allowed list

* chore(NA): run search circular deps script over examples too

* docs(NA): adds cli description

* chore(NA): use plugin search paths to build entries to find circular deps

* chore(NA): update allowed list

* chore(NA): snapshot update for kbn optimizer test

* chore(NA): update dpdm version

* chore(NA): remove thirdParty flag

* chore(NA): update docs to include info about the new tool

* docs(NA): update to link PR instead of the issue

* chore(NA): update debug logs to always output allowedList

* fix(NA): correctly list found differences number

* chore(NA): remove quiet flag

* fix(NA): correctly fail the CI if circular deps are found

* chore(NA): complete list of found circular deps

* chore(NA): used named capturing group into the regex

* docs(NA): update typescript best practices docs and styleguide

* chore(NA): introduce quick filter option flag

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-12-01 00:08:07 +00:00
Mikhail Shustov
9a6acb4ee5
[Core] mark legacy ES client methods deprecated (#84358) (#84569)
* mark context ES client & ES client methods deprecated

* update docs

* improve comment
2020-11-30 23:30:43 +01:00
Bill McConaghy
550a294625
[DOCS] better explanation of backup/key rotation for encryption key (#84529) (#84565)
* better explanation of backup/key rotation for encryption key

* clarifying failure reason in lost key scenario

* fixing typo
2020-11-30 14:35:30 -05:00
Nathan Reese
5a9c647b66
Update IndexPatternSelect to get fields from indexPatternService instead of savedObject attributes (#84376) (#84546)
* Update indexPatternSelect to get fields from indexPatternService instead of savedObject attributes

* keep original search implemenation

* import from public

* remove unused code

* API updates

* review feedback
2020-11-30 11:27:46 -07:00
Kaarina Tungseth
03cdd863e0
[DOCS] Redirects for drilldown links (#83846) (#84540)
* Fixes lGo to URL links

* Fixes links pt 2

* Added redirects

* Added Lens and reformatted redirects

* Removed lens and fixed broken links

* Fixes to URL drilldowns link

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-11-30 10:52:10 -06:00
Bill McConaghy
6c3d92374f
removing beta callouts (#84510) (#84518) 2020-11-30 10:23:24 -05:00
Marco Liberati
a5974ac33d
[7.x] [Lens] CSV Export for Lens (#83430) (#84474)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2020-11-30 12:59:06 +01:00
Alejandro Fernández Haro
5c7a300ae6
[7.x] [Elasticsearch Migration] Update docs re UsageCollection (#84322) (#84487) 2020-11-30 11:44:34 +00:00
Mikhail Shustov
13e75b85c2
fix identation in list (#84301) (#84401) 2020-11-26 12:18:58 +01:00
Liza Katz
f30e0e2919
[Search] Search batching using bfetch (again) (#84043) (#84334)
Re-merging after cypress fixes
2020-11-25 18:23:44 +02:00
Brandon Kobel
599074caba
Deprecate kibana.index setting (#83988) (#84276)
* Deprecating `kibana.index` setting

* Using ela.st service so this can be changed to the blog in the future

* Adding unit tests

* Revising deprecation log message

* Changing the deprecation log message to be more consistent with others

* Updating kibana.index docs also

* Using rename deprecation as the "standard" for the deprecation messages

* /s/'/`
2020-11-25 06:35:54 -08:00
Liza Katz
bd236212e5
[7.x] [data.search] Simplify poll logic and improve types (#82545) (#84292)
* [data.search] Simplify poll logic and improve types (#82545)

* [Search] Add request context and asScoped pattern

* Update docs

* Unify interface for getting search client

* Update examples/search_examples/server/my_strategy.ts

Co-authored-by: Anton Dosov <dosantappdev@gmail.com>

* Review feedback

* Fix checks

* Fix CI

* Fix security search

* Fix test

* Fix test for reals

* Fix types

* [data.search] Refactor search polling and improve types

* Fix & update tests & types

* eql totals

* doc

* Revert "eql totals"

This reverts commit 01e8a06847.

* lint

* response type

* shim inside strategies

* shim for security

* fix eql params

Co-authored-by: Anton Dosov <dosantappdev@gmail.com>
Co-authored-by: Liza K <liza.katz@elastic.co>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
# Conflicts:
#	src/plugins/data/server/index.ts
#	src/plugins/data/server/server.api.md

* doc

Co-authored-by: Lukas Olson <olson.lukas@gmail.com>
2020-11-25 13:59:52 +02:00
Matthias Wilhelm
bbb53a9e80
[Discover] Refactor discover.js controller topnav code (#79062) (#84309)
* Move discover.js functions to helper functions in separate files

* Convert to TypeScript

* Add unit tests

* Add removeField function to SearchSource
2020-11-25 12:55:40 +01:00
Diana Derevyankina
669b61c391
[Vega] Tutorials should be updated to include new inspector (#83797) (#84211)
* [Vega] Tutorials should be updated to include new inspector

* Revert unnecessary changes

* Add titles to the screenshots. paste the link to vega inspector and remove experimental caption

* Update some captions

* Update docs/user/dashboard/tutorials.asciidoc

Co-authored-by: Wylie Conlon <wylieconlon@gmail.com>

Co-authored-by: Wylie Conlon <wylieconlon@gmail.com>

Co-authored-by: Wylie Conlon <wylieconlon@gmail.com>
2020-11-25 14:27:45 +03:00
Joe Reuter
79fa876ffe
Expression: Add render mode and use it for canvas interactivity (#83559) (#84259) 2020-11-25 09:37:26 +01:00
Alexey Antonov
8e0b99ac09
TSVB should use "histogram:maxBars" and "histogram:barTarget" settings for auto instead of a default 100 buckets (#83628) (#84250)
* TSVB needs a "tsvb:max_buckets" target setting for auto instead of a default 120 buckets

Closes: #54012

* remove calculate_auto

* max bars -> Level of detail

* rename allowLevelofDetail

* fix PR comment

* Update constants.ts

* Update src/plugins/vis_type_timeseries/public/application/components/index_pattern.js

Co-authored-by: Wylie Conlon <wylieconlon@gmail.com>

* create LEVEL_OF_DETAIL_MIN_BUCKETS constant

* calcAutoIntervalLessThan -> search.aggs.calcAutoIntervalLessThan

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Wylie Conlon <wylieconlon@gmail.com>
# Conflicts:
#	src/plugins/data/server/server.api.md
2020-11-25 10:13:25 +03:00
Thomas Watson
659ee3322f
Update example docs with correct version of Boom (#84271) (#84275) 2020-11-24 22:15:14 +01:00
gchaps
05b7fd7ef5
[DOCS] Adds Elastic Contributor Program link (#83561) (#84240)
Co-authored-by: Kaarina Tungseth <kaarina.tungseth@elastic.co>
2020-11-24 10:28:02 -08:00