Migrate docs from AsciiDoc to Markdown. The preview can be built after #212557 is merged. @florent-leborgne please tag reviewers, add the appropriate label(s), and take this out of draft when you're ready. Note: More files are deleted than added here because the content from some files was moved to [elastic/docs-content](https://github.com/elastic/docs-content). **What has moved to [elastic/docs-content](https://github.com/elastic/docs-content)?** Public-facing narrative and conceptual docs have moved. Most can now be found under the following directories in the new docs: - explore-analyze: Discover, Dashboards, Visualizations, Reporting, Alerting, dev tools... - deploy-manage: Stack management (Spaces, user management, remote clusters...) - troubleshooting: .... troubleshooting pages **What is staying in the Kibana repo?** - Reference content (= anything that is or could be auto-generated): Settings, syntax references - Release notes - Developer guide --------- Co-authored-by: Florent Le Borgne <florent.leborgne@elastic.co>
6.5 KiB
Best practices [development-best-practices]
Consider these best practices, whether developing code directly to the {{kib}} repo or building your own plugins. They are intended to support our {{kib}} development principles.
Performance [_performance]
Are you planning with scalability in mind?
-
Consider data with many fields
-
Consider data with high cardinality fields
-
Consider large data sets, that span a long time range
-
Are you loading a minimal amount of JS code in the browser?
- See Keep {{kib}} fast for more guidance.
-
Do you make lots of requests to the server?
- If so, have you considered using the streaming bfetch service?
Accessibility [_accessibility]
Did you know {{kib}} makes a public statement about our commitment to creating an accessible product for people with disabilities? We do! It’s very important all of our apps are accessible.
- Learn how EUI tackles accessibility
- If you don’t use EUI, follow the same EUI accessibility standards
Localization [kibana-localization-best-practices]
{{kib}} is translated into other languages. Use our i18n utilities to ensure your public facing strings will be translated to ensure all {{kib}} apps are localized.
- Read and adhere to our i18n guidelines
Conventions [_conventions]
- Become familiar with our styleguide (use Typescript!)
- Write all new code on the platform, and following conventions.
- Always use the
SavedObjectClient
for reading and writing Saved Objects. - Add
README
s to all your plugins and services. - Make your public APIs as small as possible. You will have to maintain them, and consider backward compatibility when making any changes to them.
- Use EUI for all your basic UI components to create a consistent UI experience.
Re-inventing the wheel [_re_inventing_the_wheel]
Over-refactoring can be a problem in it’s own right, but it’s still important to be aware of the existing services that are out there and use them when it makes sense. We have service oriented teams dedicated to providing our solution developers the tools needed to iterate faster. They take care of the nitty gritty so you can focus on creative solutions to your particular problem sphere. Some examples of common services you should consider:
-
-
- Use the
esSearchStrategy
to make raw queries to ES that will support async searching and partial results, as well as injecting the right advanced settings like whether to include frozen indices or not.
- Use the
-
-
- Rendering maps, visualizations, dashboards in your application
- Register new widgets that will can be added to a dashboard or Canvas workpad, or rendered in another plugin.
-
- Let other plugins inject functionality into your application
- Inject custom functionality into other plugins
-
Stateless helper utilities
-
state syncing and
-
state container utilities provided by
-
kibana_utils if you want to sync your application state to the URL?
- kibana_react for react specific helpers
Re-using these services will help create a consistent experience across {{kib}} from every solution.
Backward compatibility [_backward_compatibility]
Eventually we want to guarantee to our plugin developers that their plugins will not break from minor to minor.
Any time you create or change a public API, keep this in mind, and consider potential backward compatibility issues. While we have a formal saved object migration system and are working on adding a formal state migration system, introducing state changes and migrations in a minor always comes with a risk. Consider this before making huge and risky changes in minors, especially to saved objects.
- Are you persisting state from registries? Consider what will happen if the author of the implementation changed their interfaces.
- Are you adding implementations to registries? Consider that someone may be persisting your data, and that making changes to your public interfaces can break their code.
Be very careful when changing the shape of saved objects or persistable data.
Saved object exported from past {{kib}} versions should continue to work. In addition, if users are relying on state stored in your app’s URL as part of your public contract, keep in mind that you may also need to provide backwards compatibility for bookmarked URLs.
Routing, Navigation and URL [_routing_navigation_and_url]
The {{kib}} platform provides a set of tools to help developers build consistent experience around routing and browser navigation. Some of that tooling is inside core
, some is available as part of various plugins.
Follow this guide to get an idea of available tools and common approaches for handling routing and browser navigation.
Testing & stability [_testing_stability]
Review: