Skip to content

Commit abae288

Browse files
committed
Merge remote-tracking branch 'upstream/master' into 47201-adapt-log-entry-rate-data-vis
2 parents a5d6e45 + 65a3741 commit abae288

File tree

211 files changed

+4784
-1886
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+4784
-1886
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ module.exports = {
149149
'src/core/server/**/*',
150150
'!src/core/server/index.ts',
151151
'!src/core/server/mocks.ts',
152+
'!src/core/server/types.ts',
152153
'!src/core/server/*.test.mocks.ts',
153154

154155
'src/plugins/**/public/**/*',
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [EnvironmentMode](./kibana-plugin-public.environmentmode.md) &gt; [dev](./kibana-plugin-public.environmentmode.dev.md)
4+
5+
## EnvironmentMode.dev property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
dev: boolean;
11+
```
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [EnvironmentMode](./kibana-plugin-public.environmentmode.md)
4+
5+
## EnvironmentMode interface
6+
7+
8+
<b>Signature:</b>
9+
10+
```typescript
11+
export interface EnvironmentMode
12+
```
13+
14+
## Properties
15+
16+
| Property | Type | Description |
17+
| --- | --- | --- |
18+
| [dev](./kibana-plugin-public.environmentmode.dev.md) | <code>boolean</code> | |
19+
| [name](./kibana-plugin-public.environmentmode.name.md) | <code>'development' &#124; 'production'</code> | |
20+
| [prod](./kibana-plugin-public.environmentmode.prod.md) | <code>boolean</code> | |
21+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [EnvironmentMode](./kibana-plugin-public.environmentmode.md) &gt; [name](./kibana-plugin-public.environmentmode.name.md)
4+
5+
## EnvironmentMode.name property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
name: 'development' | 'production';
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [EnvironmentMode](./kibana-plugin-public.environmentmode.md) &gt; [prod](./kibana-plugin-public.environmentmode.prod.md)
4+
5+
## EnvironmentMode.prod property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
prod: boolean;
11+
```

docs/development/core/public/kibana-plugin-public.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
4646
| [CoreSetup](./kibana-plugin-public.coresetup.md) | Core services exposed to the <code>Plugin</code> setup lifecycle |
4747
| [CoreStart](./kibana-plugin-public.corestart.md) | Core services exposed to the <code>Plugin</code> start lifecycle |
4848
| [DocLinksStart](./kibana-plugin-public.doclinksstart.md) | |
49+
| [EnvironmentMode](./kibana-plugin-public.environmentmode.md) | |
4950
| [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md) | |
5051
| [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md) | Represents the <code>message</code> and <code>stack</code> of a fatal Error |
5152
| [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) | FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error. |
@@ -68,6 +69,7 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
6869
| [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) | |
6970
| [OverlayRef](./kibana-plugin-public.overlayref.md) | |
7071
| [OverlayStart](./kibana-plugin-public.overlaystart.md) | |
72+
| [PackageInfo](./kibana-plugin-public.packageinfo.md) | |
7173
| [Plugin](./kibana-plugin-public.plugin.md) | The interface that should be returned by a <code>PluginInitializer</code>. |
7274
| [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) | The available core services passed to a <code>PluginInitializer</code> |
7375
| [SavedObject](./kibana-plugin-public.savedobject.md) | |
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [PackageInfo](./kibana-plugin-public.packageinfo.md) &gt; [branch](./kibana-plugin-public.packageinfo.branch.md)
4+
5+
## PackageInfo.branch property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
branch: string;
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [PackageInfo](./kibana-plugin-public.packageinfo.md) &gt; [buildNum](./kibana-plugin-public.packageinfo.buildnum.md)
4+
5+
## PackageInfo.buildNum property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
buildNum: number;
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [PackageInfo](./kibana-plugin-public.packageinfo.md) &gt; [buildSha](./kibana-plugin-public.packageinfo.buildsha.md)
4+
5+
## PackageInfo.buildSha property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
buildSha: string;
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [PackageInfo](./kibana-plugin-public.packageinfo.md) &gt; [dist](./kibana-plugin-public.packageinfo.dist.md)
4+
5+
## PackageInfo.dist property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
dist: boolean;
11+
```

0 commit comments

Comments
 (0)