-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'apm-instances-table' of github.com:cauemarcondes/kibana…
… into apm-instances-table
- Loading branch information
Showing
761 changed files
with
134,454 additions
and
30,424 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
15 changes: 15 additions & 0 deletions
15
docs/development/core/server/kibana-plugin-core-server.makeusagefromschema.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,15 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-server](./kibana-plugin-core-server.md) > [MakeUsageFromSchema](./kibana-plugin-core-server.makeusagefromschema.md) | ||
|
||
## MakeUsageFromSchema type | ||
|
||
List of configuration values that will be exposed to usage collection. If parent node or actual config path is set to `true` then the actual value of these configs will be reoprted. If parent node or actual config path is set to `false` then the config will be reported as \[redacted\]. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare type MakeUsageFromSchema<T> = { | ||
[Key in keyof T]?: T[Key] extends Maybe<object[]> ? false : T[Key] extends Maybe<any[]> ? boolean : T[Key] extends Maybe<object> ? MakeUsageFromSchema<T[Key]> | boolean : boolean; | ||
}; | ||
``` |
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
17 changes: 17 additions & 0 deletions
17
...t/core/server/kibana-plugin-core-server.pluginconfigdescriptor.exposetousage.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,17 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-core-server](./kibana-plugin-core-server.md) > [PluginConfigDescriptor](./kibana-plugin-core-server.pluginconfigdescriptor.md) > [exposeToUsage](./kibana-plugin-core-server.pluginconfigdescriptor.exposetousage.md) | ||
|
||
## PluginConfigDescriptor.exposeToUsage property | ||
|
||
Expose non-default configs to usage collection to be sent via telemetry. set a config to `true` to report the actual changed config value. set a config to `false` to report the changed config value as \[redacted\]. | ||
|
||
All changed configs except booleans and numbers will be reported as \[redacted\] unless otherwise specified. | ||
|
||
[MakeUsageFromSchema](./kibana-plugin-core-server.makeusagefromschema.md) | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
exposeToUsage?: MakeUsageFromSchema<T>; | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
[role="xpack"] | ||
[[action-types]] | ||
== Connectors | ||
|
||
Connectors provide a central place to store connection information for services and integrations with third party systems. Actions are instantiations of a connector that are linked to rules and run as background tasks on the {kib} server when rule conditions are met. {kib} provides the following types of connectors: | ||
|
||
[cols="2"] | ||
|=== | ||
|
||
a| <<email-action-type, Email>> | ||
|
||
| Send email from your server. | ||
|
||
a| <<resilient-action-type, IBM Resilient>> | ||
|
||
| Create an incident in IBM Resilient. | ||
|
||
a| <<index-action-type, Index>> | ||
|
||
| Index data into Elasticsearch. | ||
|
||
a| <<jira-action-type, Jira>> | ||
|
||
| Create an incident in Jira. | ||
|
||
a| <<teams-action-type, Microsoft Teams>> | ||
|
||
| Send a message to a Microsoft Teams channel. | ||
|
||
a| <<pagerduty-action-type, PagerDuty>> | ||
|
||
| Send an event in PagerDuty. | ||
|
||
a| <<server-log-action-type, ServerLog>> | ||
|
||
| Add a message to a Kibana log. | ||
|
||
a| <<servicenow-action-type, ServiceNow>> | ||
|
||
| Create an incident in ServiceNow. | ||
|
||
a| <<slack-action-type, Slack>> | ||
|
||
| Send a message to a Slack channel or user. | ||
|
||
a| <<webhook-action-type, Webhook>> | ||
|
||
| Send a request to a web service. | ||
|=== | ||
|
||
[NOTE] | ||
============================================== | ||
Some connector types are paid commercial features, while others are free. | ||
For a comparison of the Elastic subscription levels, | ||
see https://www.elastic.co/subscriptions[the subscription page]. | ||
============================================== | ||
|
||
[float] | ||
[[connector-management]] | ||
=== Managing Connectors | ||
|
||
Rules use *Connectors* to route actions to different destinations like log files, ticketing systems, and messaging tools. While each {kib} app can offer their own types of rules, they typically share connectors. The *Connectors* tab offers a central place to view and manage all the connectors in the current space. | ||
|
||
For more information on connectors and the types of actions available see <<action-types>>. | ||
|
||
[role="screenshot"] | ||
image::images/connector-listing.png[Example connector listing in the Rules and Connectors UI] | ||
|
||
[float] | ||
=== Required permissions | ||
|
||
Access to connectors is granted based on your privileges to alerting-enabled features. See <<alerting-security, Alerting Security>> for more information. | ||
|
||
[float] | ||
[[connectors-list]] | ||
=== Connector list | ||
|
||
The *Connectors* tab lists all connectors in the current space. The *search bar* can be used to find specific connectors by name and/or type. | ||
|
||
[role="screenshot"] | ||
image::images/connector-filter-by-search.png[Filtering the connector list using the search bar] | ||
|
||
|
||
The *type* dropdown also lets you filter to a subset of connector types. | ||
|
||
[role="screenshot"] | ||
image::images/connector-filter-by-type.png[Filtering the connector list by types of connectors] | ||
|
||
You can delete individual connectors using the trash icon. Connectors can also be deleted in bulk by multi-selecting them and clicking the *Delete* button to the left of the search box. | ||
|
||
[role="screenshot"] | ||
image::images/connector-delete.png[Deleting connectors individually or in bulk] | ||
|
||
[NOTE] | ||
============================================================================ | ||
You can delete a connector even if there are still actions referencing it. | ||
When this happens the action will fail to execute, and appear as errors in the {kib} logs. | ||
============================================================================ | ||
|
||
[float] | ||
[[creating-new-connector]] | ||
=== Creating a new connector | ||
|
||
New connectors can be created by clicking the *Create connector* button, which will guide you to select the type of connector and configure its properties. Refer to <<action-types>> for the types of connectors available and how to configure them. Once you create a connector it will be made available to you anytime you set up an action in the current space. | ||
|
||
[role="screenshot"] | ||
image::images/connector-select-type.png[Connector select type] | ||
|
||
[float] | ||
[[create-connectors]] | ||
=== Preconfigured connectors | ||
|
||
For out-of-the-box and standardized connectors, you can <<preconfigured-connector-example, preconfigure connectors>> | ||
before {kib} starts. | ||
|
||
|
||
include::connectors/index.asciidoc[] |
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
docs/management/alerting/rules-and-connectors-intro.asciidoc
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
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.