Skip to content

Commit 43330a2

Browse files
committed
commit some doc changes to see the docs link in action
1 parent 0d8827f commit 43330a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/developer/contributing/development-ci-metrics.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ In addition to running our tests, CI collects metrics about the Kibana build. Th
1515
[[ci-metric-types-bundle-size-metrics]]
1616
==== Bundle size
1717

18-
These metrics help contributors know how they are impacting the size of the bundles Kibana creates, and help make sure that Kibana loads as fast as possible.
18+
THESE METRICS HELP CONTRIBUTORS KNOW HOW THEY ARE IMPACTING THE SIZE OF THE BUNDLES KIBANA CREATES, AND HELP MAKE SURE THAT KIBANA LOADS AS FAST AS POSSIBLE.
1919

2020
[[ci-metric-page-load-bundle-size]] `page load bundle size` ::
2121
The size of the entry file produced for each bundle/plugin. This file is always loaded on every page load, so it should be as small as possible. To reduce this metric you can put any code that isn't necessary on every page load behind an https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports[`async import()`].
2222
+
23-
Code that is shared statically with other plugins will contribute to the `page load bundle size` of that plugin. This includes exports from the `public/index.ts` file and any file referenced by the `extraPublicDirs` manifest property.
23+
CODE THAT IS SHARED STATICALLY WITH OTHER PLUGINS WILL CONTRIBUTE TO THE `PAGE LOAD BUNDLE SIZE` OF THAT PLUGIN. THIS INCLUDES EXPORTS FROM THE `PUBLIC/INDEX.TS` FILE AND ANY FILE REFERENCED BY THE `EXTRAPUBLICDIRS` MANIFEST PROPERTY.
2424

2525
[[ci-metric-async-chunks-size]] `async chunks size` ::
2626
An "async chunk" is created for the files imported by each https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports[`async import()`] statement. This metric tracks the sum size of these chunks, in bytes, broken down by plugin/bundle id. You can think of this as the amount of code users will have to download if they access all the components/applications within a bundle.
@@ -39,7 +39,7 @@ The size of the Kibana distributable is an essential metric as it not only contr
3939

4040
There are several metrics that we don't report on PRs because gzip-compression produces different file sizes even when provided the same input, so this metric would regularly show changes even though PR authors hadn't made any relevant changes.
4141

42-
All metrics are collected from the `tar.gz` archive produced for the linux platform.
42+
ALL METRICS ARE COLLECTED FROM THE `TAR.GZ` ARCHIVE PRODUCED FOR THE LINUX PLATFORM.
4343

4444
[[ci-metric-distributable-file-count]] `distributable file count` ::
4545
The number of files included in the default distributable.

0 commit comments

Comments
 (0)