Skip to content

Commit 2ff5a07

Browse files
committed
Merge branch 'master' into reporting/server-plugin-definition
2 parents 2b8a8b2 + e8b859b commit 2ff5a07

File tree

345 files changed

+5451
-3583
lines changed

Some content is hidden

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

345 files changed

+5451
-3583
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ src/legacy/core_plugins/vis_type_vislib/public/vislib/__tests__/lib/fixtures/moc
1616
/src/legacy/core_plugins/console/public/webpackShims
1717
/src/legacy/core_plugins/console/public/tests/webpackShims
1818
/src/legacy/ui/public/utils/decode_geo_hash.js
19-
/src/legacy/core_plugins/timelion/public/webpackShims/jquery.flot.*
19+
/src/legacy/core_plugins/vis_type_timelion/public/webpackShims/jquery.flot.*
2020
/src/core/lib/kbn_internal_native_observable
2121
/packages/*/target
2222
/packages/eslint-config-kibana

.i18nrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"statusPage": "src/legacy/core_plugins/status_page",
3434
"telemetry": "src/legacy/core_plugins/telemetry",
3535
"tileMap": "src/legacy/core_plugins/tile_map",
36-
"timelion": "src/legacy/core_plugins/timelion",
36+
"timelion": ["src/legacy/core_plugins/timelion", "src/legacy/core_plugins/vis_type_timelion"],
3737
"uiActions": "src/plugins/ui_actions",
3838
"visTypeMarkdown": "src/legacy/core_plugins/vis_type_markdown",
3939
"visTypeMetric": "src/legacy/core_plugins/vis_type_metric",

docs/canvas/canvas-share-workpad.asciidoc

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Want to export multiple workpads? Go to the *Canvas workpads* view, select the w
2323
[[create-workpad-pdf]]
2424
=== Create a PDF
2525

26-
Create a PDF copy of your workpad that you can save and share outside of {kib}.
26+
If you have a license that supports the {report-features}, you can create a PDF copy of your workpad that you can save and share outside {kib}.
2727

28-
. If you are using a Gold or Platinum license, enable reporting in your `config/kibana.yml` file.
28+
For more information, refer to <<reporting-getting-started, Reporting from Kibana>>.
2929

3030
. From your workpad, click the *Share workpad* icon in the upper left corner, then select *PDF reports*.
3131

@@ -38,12 +38,10 @@ image::images/canvas-generate-pdf.gif[Generate PDF]
3838
[[create-workpad-URL]]
3939
=== Create a POST URL
4040

41-
Create a POST URL that you can use to automatically generate PDF reports using Watcher or a script.
41+
If you have a license that supports the {report-features}, you can create a POST URL that you can use to automatically generate PDF reports using Watcher or a script.
4242

4343
For more information, refer to <<automating-report-generation, Automating report generation>>.
4444

45-
. If you are using a Gold or Platinum license, enable reporting in your `config/kibana.yml` file.
46-
4745
. From your workpad, click the *Share workpad* icon in the upper left corner, then select *PDF reports*.
4846

4947
. Click *Copy POST URL*.
@@ -57,8 +55,6 @@ image::images/canvas-create-URL.gif[Create POST URL]
5755

5856
beta[] Canvas allows you to create _shareables_, which are workpads that you download and securely share on any website. To customize the behavior of the workpad on your website, you can choose to autoplay the pages or hide the workpad toolbar.
5957

60-
. If you are using a Gold or Platinum license, enable reporting in your `config/kibana.yml` file.
61-
6258
. From your workpad, click the *Share this workpad* icon in the upper left corner, then select *Share on a website*.
6359

6460
. On the *Share on a website* pane, follow the instructions.

docs/developer/visualize/development-create-visualization.asciidoc

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ This is the sidebar editor you see in many of the Kibana visualizations. You can
208208

209209
[[development-default-editor]]
210210
==== `default` editor controller
211-
The default editor controller receives an `optionsTemplate` or `optionsTabs` parameter.
212-
These can be either an AngularJS template or React component.
211+
The default editor controller receives an `optionsTemplate` or `optionTabs` parameter.
212+
These tabs should be React components.
213213

214214
["source","js"]
215215
-----------
@@ -220,12 +220,9 @@ These can be either an AngularJS template or React component.
220220
description: 'Cool new chart',
221221
editor: 'default',
222222
editorConfig: {
223-
optionsTemplate: '<my-custom-options-directive></my-custom-options-directive>' // or
224223
optionsTemplate: MyReactComponent // or if multiple tabs are required:
225-
optionsTabs: [
226-
{ title: 'tab 1', template: '<div>....</div> },
227-
{ title: 'tab 2', template: '<my-custom-options-directive></my-custom-options-directive>' },
228-
{ title: 'tab 3', template: MyReactComponent }
224+
optionTabs: [
225+
{ title: 'tab 3', editor: MyReactComponent }
229226
]
230227
}
231228
}
Lines changed: 30 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
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; [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) &gt; [update](./kibana-plugin-public.chromenavlinks.update.md)
4-
5-
## ChromeNavLinks.update() method
6-
7-
Update the navlink for the given id with the updated attributes. Returns the updated navlink or `undefined` if it does not exist.
8-
9-
<b>Signature:</b>
10-
11-
```typescript
12-
update(id: string, values: ChromeNavLinkUpdateableFields): ChromeNavLink | undefined;
13-
```
14-
15-
## Parameters
16-
17-
| Parameter | Type | Description |
18-
| --- | --- | --- |
19-
| id | <code>string</code> | |
20-
| values | <code>ChromeNavLinkUpdateableFields</code> | |
21-
22-
<b>Returns:</b>
23-
24-
`ChromeNavLink | undefined`
25-
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; [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) &gt; [update](./kibana-plugin-public.chromenavlinks.update.md)
4+
5+
## ChromeNavLinks.update() method
6+
7+
> Warning: This API is now obsolete.
8+
>
9+
> Uses the [AppBase.updater$](./kibana-plugin-public.appbase.updater_.md) property when registering your application with [ApplicationSetup.register()](./kibana-plugin-public.applicationsetup.register.md) instead.
10+
>
11+
12+
Update the navlink for the given id with the updated attributes. Returns the updated navlink or `undefined` if it does not exist.
13+
14+
<b>Signature:</b>
15+
16+
```typescript
17+
update(id: string, values: ChromeNavLinkUpdateableFields): ChromeNavLink | undefined;
18+
```
19+
20+
## Parameters
21+
22+
| Parameter | Type | Description |
23+
| --- | --- | --- |
24+
| id | <code>string</code> | |
25+
| values | <code>ChromeNavLinkUpdateableFields</code> | |
26+
27+
<b>Returns:</b>
28+
29+
`ChromeNavLink | undefined`
30+

docs/management/managing-licenses.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ At the end of the trial period, the platinum features operate in a
2525
<<license-expiration,degraded mode>>. You can revert to a basic license,
2626
extend the trial, or purchase a subscription.
2727

28-
TIP: If {security-features} are enabled, before you revert to a basic license or
29-
install a gold or platinum license, you must configure Transport Layer Security
30-
(TLS) in {es}. See {ref}/encrypting-communications.html[Encrypting communications].
28+
TIP: If {security-features} are enabled, unless you have a trial license,
29+
you must configure Transport Layer Security (TLS) in {es}.
30+
See {ref}/encrypting-communications.html[Encrypting communications].
3131
{kib} and the {ref}/start-basic.html[start basic API] provide a list of all of
3232
the features that will no longer be supported if you revert to a basic license.
3333

74.2 KB
Loading

docs/maps/images/gear_icon.png

4.26 KB
Loading

docs/maps/images/gs_link_icon.png

-665 Bytes
Binary file not shown.
548 KB
Loading

0 commit comments

Comments
 (0)