- Kibana Guide: other versions:
- What is Kibana?
- What’s new in 7.13
- Kibana concepts
- Quick start
- Set up
- Install Kibana
- Configure Kibana
- Alerting and action settings
- APM settings
- Banners settings
- Development tools settings
- Graph settings
- Fleet settings
- i18n settings
- Logging settings
- Logs settings
- Metrics settings
- Machine learning settings
- Monitoring settings
- Reporting settings
- Secure settings
- Search sessions settings
- Security settings
- Spaces settings
- Task Manager settings
- Telemetry settings
- URL drilldown settings
- Start and stop Kibana
- Access Kibana
- Securing access to Kibana
- Add data
- Upgrade Kibana
- Embed Kibana content in a web page
- Configure monitoring
- Configure security
- Production considerations
- Discover
- Dashboard
- Canvas
- Maps
- Machine learning
- Graph
- Alerting
- Observability
- APM
- Security
- Dev Tools
- Stack Monitoring
- Stack Management
- Fleet
- Reporting
- REST API
- Kibana plugins
- Accessibility
- Release notes
- Developer guide
Kibana Monorepo Packages
editKibana Monorepo Packages
editCurrently Kibana works as a monorepo composed by a core, plugins and packages.
The latest are located in a folder called packages
and are pieces of software that
composes a set of features that can be isolated and reused across the entire repository.
They are also supposed to be able to imported just like any other node_module
.
Previously we relied solely on @kbn/pm
to manage the development tools of those packages, but we are
now in the middle of migrating those responsibilities into Bazel. Every package already migrated
will contain in its root folder a BUILD.bazel
file and other build
and watching
strategies should be used.
Remember that any time you need to make sure the monorepo is ready to be used just run:
yarn kbn bootstrap
Building Non Bazel Packages
editNon Bazel packages can be built independently with
yarn kbn run build -i PACKAGE_NAME
Watching Non Bazel Packages
editNon Bazel packages can be watched independently with
yarn kbn watch -i PACKAGE_NAME
Building Bazel Packages
editBazel packages are built as a whole for now. You can use:
yarn kbn build-bazel
Watching Bazel Packages
editBazel packages are watched as a whole for now. You can use:
yarn kbn watch-bazel
List of Already Migrated Packages to Bazel
edit- @elastic/datemath
- @kbn/apm-utils
- @kbn/babel-preset
- @kbn/config-schema
- @kbn/tinymath
- @kbn/utility-types
On this page