forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into alerting/consumer-based-rbac
* master: (37 commits) [DOCS] Adds documentation for drilldowns (elastic#68122) [Telemetry] telemetry.sendUsageFrom: "server" by default (elastic#68071) [ML] Transforms: Support sub-aggregations (elastic#68306) Fixed pre-configured docs link points to the wrong page and functional tests configs (elastic#68606) [Ingest Manager] Update queries from `stream.*` to `dataset.*` (elastic#68322) Enable Watcher by default to fix bug in which Watcher doesn't render in the side nav (elastic#68602) Convert Index Templates API routes to snakecase. (elastic#68463) [SECURITY SOLUTION] [Detections] Add / Update e2e tests to ensure initial rule runs are successful (elastic#68441) [Ingest] OpenAPI spec file (elastic#68323) chore(NA): skip apis Endpoint plugin Endpoint policy api (elastic#68638) bumping makelogs version to v6.0.0 (elastic#66163) [SIEM] Add create template button (elastic#66613) Bump websocket-extensions from 0.1.3 to 0.1.4 (elastic#68414) [ML] Sample data modules - use event.dataset instead of index name (elastic#68538) [ML] Functional tests - fix job validation API test with maxModelMemoryLimit (elastic#68501) [ML] Functional tests - stabilize DFA job creation (elastic#68495) [TSVB] Allows the user to change the tooltip mode (elastic#67775) chore(NA): skip apis Endpoint plugin Endpoint alert API when data is in elasticsearch (elastic#68613) chore(NA): skip endpoint Endpoint Alert Page: when es has data and user has navigated to the page (elastic#68596) [SIEM][Detection Engine] Converts from joi to use io-ts and moves the types to common (elastic#68127) ...
- Loading branch information
Showing
567 changed files
with
74,281 additions
and
64,642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
docs/development/core/public/kibana-plugin-core-public.url_max_length.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-public](./kibana-plugin-core-public.md) > [URL\_MAX\_LENGTH](./kibana-plugin-core-public.url_max_length.md) | ||
|
||
## URL\_MAX\_LENGTH variable | ||
|
||
The max URL length allowed by the current browser. Should be used to display warnings to users when query parameters cause URL to exceed this limit. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
URL_MAX_LENGTH: number | ||
``` |
11 changes: 0 additions & 11 deletions
11
...nt/plugins/data/public/kibana-plugin-plugins-data-public.isearchcontext.core.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...ta/public/kibana-plugin-plugins-data-public.isearchcontext.getsearchstrategy.md
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
...lopment/plugins/data/public/kibana-plugin-plugins-data-public.isearchcontext.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
...lugins/data/public/kibana-plugin-plugins-data-public.tsearchstrategyprovider.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
[[drilldowns]] | ||
== Use drilldowns for dashboard actions | ||
|
||
Drilldowns, also known as custom actions, allow you to configure a | ||
workflow for analyzing and troubleshooting your data. | ||
Using a drilldown, you can navigate from one dashboard to another, | ||
taking the current time range, filters, and other parameters with you, | ||
so the context remains the same. You can continue your analysis from a new perspective. | ||
|
||
For example, you might have a dashboard that shows the overall status of multiple data centers. | ||
You can create a drilldown that navigates from this dashboard to a dashboard | ||
that shows a single data center or server. | ||
|
||
[float] | ||
[[how-drilldowns-work]] | ||
=== How drilldowns work | ||
|
||
Drilldowns are {kib} actions that you configure and store | ||
in the dashboard saved object. Drilldowns are specific to the dashboard panel | ||
for which you create them—they are not shared across panels. | ||
A panel can have multiple drilldowns. | ||
|
||
This example shows a dashboard panel that contains a pie chart. | ||
Typically, clicking a pie slice applies the current filter. | ||
When a panel has a drilldown, clicking a pie slice opens a menu with | ||
the default action and your drilldowns. Refer to the <<drilldowns-example, Try it section>> | ||
for instructions on how to create this drilldown. | ||
|
||
[role="screenshot"] | ||
image::images/drilldown_on_piechart.gif[Drilldown on pie chart that navigates to another dashboard] | ||
|
||
Third-party developers can create drilldowns. | ||
Refer to https://github.com/elastic/kibana/tree/master/x-pack/examples/ui_actions_enhanced_examples[this example plugin] | ||
to learn how to code drilldowns. | ||
|
||
[float] | ||
[[create-manage-drilldowns]] | ||
=== Create and manage drilldowns | ||
|
||
Your dashboard must be in *Edit* mode to create a drilldown. | ||
Once a panel has at least one drilldown, the menu also includes a *Manage drilldowns* action | ||
for editing and deleting drilldowns. | ||
|
||
[role="screenshot"] | ||
image::images/drilldown_menu.png[Panel menu with Create drilldown and Manage drilldown actions] | ||
|
||
[float] | ||
[[drilldowns-example]] | ||
=== Try it: Create a drilldown | ||
|
||
This example shows how to create the *Host Overview* drilldown shown earlier in this doc. | ||
|
||
[float] | ||
==== Set up the dashboards | ||
|
||
. Add the <<get-data-in, sample web logs>> data set. | ||
|
||
. Create a new dashboard, called `Host Overview`, and include these visualizations | ||
from the sample data set: | ||
+ | ||
[%hardbreaks] | ||
*[Logs] Heatmap* | ||
*[Logs] Visitors by OS* | ||
*[Logs] Host, Visits, and Bytes Table* | ||
*[Logs] Total Requests and Bytes* | ||
+ | ||
TIP: If you don’t see data for a panel, try changing the time range. | ||
|
||
. Open the *[Logs] Web traffic* dashboard. | ||
|
||
. Set a search and filter. | ||
+ | ||
[%hardbreaks] | ||
Search: `extension.keyword:( “gz” or “css” or “deb”)` | ||
Filter: `geo.src : CN` | ||
|
||
[float] | ||
==== Create the drilldown | ||
|
||
|
||
. In the dashboard menu bar, click *Edit*. | ||
|
||
. In *[Logs] Visitors by OS*, open the panel menu, and then select *Create drilldown*. | ||
|
||
. Give the drilldown a name. | ||
|
||
. Select *Host Overview* as the destination dashboard. | ||
|
||
. Keep both filters enabled so that the drilldown carries over the global filters and date range. | ||
+ | ||
Your input should look similar to this: | ||
+ | ||
[role="screenshot"] | ||
image::images/drilldown_create.png[Create drilldown with entries for drilldown name and destination] | ||
|
||
. Click *Create drilldown.* | ||
|
||
. Save the dashboard. | ||
+ | ||
If you don’t save the drilldown, and then navigate away, the drilldown is lost. | ||
|
||
. In *[Logs] Visitors by OS*, click the `win 8` slice of the pie, and then select the name of your drilldown. | ||
+ | ||
[role="screenshot"] | ||
image::images/drilldown_on_panel.png[Drilldown on pie chart that navigates to another dashboard] | ||
+ | ||
You are navigated to your destination dashboard. Verify that the search query, filters, | ||
and time range are carried over. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.