Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beats Management plugin: migrate server-side code #70930

Merged
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c51112b
move all the legacy codebase to KP plugin
pgayvallet Jul 6, 2020
7ea9273
fix imports
pgayvallet Jul 6, 2020
c7dc6a7
add empty handler context & rename routes folder
pgayvallet Jul 6, 2020
dfb3dc6
start migrating routes
pgayvallet Jul 7, 2020
8222306
migrate rest of the routes
pgayvallet Jul 7, 2020
82f59b8
migrate adapters
pgayvallet Jul 7, 2020
283cb08
remove beats from legacy xpack plugin
pgayvallet Jul 7, 2020
e1b333f
use nullable + replace response.custom
pgayvallet Jul 7, 2020
5c1c6c4
Merge remote-tracking branch 'upstream/master' into kbn-67980-beats-m…
pgayvallet Jul 7, 2020
fd158be
fix wrapRouteWithSecurity, remove incorrect header validation
pgayvallet Jul 7, 2020
a7f7eeb
remove comment
pgayvallet Jul 7, 2020
2faba13
Merge remote-tracking branch 'upstream/master' into kbn-67980-beats-m…
pgayvallet Jul 13, 2020
6842a6b
Merge remote-tracking branch 'upstream/master' into kbn-67980-beats-m…
pgayvallet Jul 20, 2020
9025c5f
updating generated plugin list
pgayvallet Jul 20, 2020
543df15
Merge remote-tracking branch 'upstream/master' into kbn-67980-beats-m…
pgayvallet Jul 23, 2020
fbfdf3a
Merge remote-tracking branch 'upstream/master' into kbn-67980-beats-m…
joshdover Aug 10, 2020
c0fe0b8
Merge remote-tracking branch 'upstream/master' into kbn-67980-beats-m…
pgayvallet Aug 17, 2020
8221a63
fix typos in doc
pgayvallet Aug 17, 2020
f9ed333
adapt readme too.
pgayvallet Aug 17, 2020
9a71840
remove old commented routes from route files
pgayvallet Aug 17, 2020
bf0df27
remove eslint disabling
pgayvallet Aug 17, 2020
def77dd
Merge remote-tracking branch 'upstream/master' into kbn-67980-beats-m…
pgayvallet Aug 17, 2020
f444fac
use camel case for plugin id
pgayvallet Aug 17, 2020
c4c984c
update generated doc
pgayvallet Aug 17, 2020
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
5 changes: 3 additions & 2 deletions docs/developer/architecture/code-exploration.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,10 @@ To access an elasticsearch instance that has live data you have two options:
WARNING: Missing README.


- {kib-repo}blob/{branch}/x-pack/plugins/beats_management[beats_management]
- {kib-repo}blob/{branch}/x-pack/plugins/beats_management/readme.md[beats_management]

WARNING: Missing README.
Notes:
Falure to have auth enabled in Kibana will make for a broken UI. UI based errors not yet in place
pgayvallet marked this conversation as resolved.
Show resolved Hide resolved


- {kib-repo}blob/{branch}/x-pack/plugins/canvas/README.md[canvas]
Expand Down
3 changes: 1 addition & 2 deletions x-pack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
import { xpackMain } from './legacy/plugins/xpack_main';
import { monitoring } from './legacy/plugins/monitoring';
import { security } from './legacy/plugins/security';
import { beats } from './legacy/plugins/beats_management';
import { spaces } from './legacy/plugins/spaces';

module.exports = function (kibana) {
return [xpackMain(kibana), monitoring(kibana), spaces(kibana), security(kibana), beats(kibana)];
return [xpackMain(kibana), monitoring(kibana), spaces(kibana), security(kibana)];
};
35 changes: 0 additions & 35 deletions x-pack/legacy/plugins/beats_management/index.ts

This file was deleted.

This file was deleted.

Loading