-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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 reporting/pre-perf-instrument
- Loading branch information
Showing
306 changed files
with
52,384 additions
and
6,175 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
[[troubleshooting]] | ||
=== Troubleshooting common problems | ||
|
||
If you have something to add to this section, please consider creating a pull request with | ||
your proposed changes at https://github.com/elastic/kibana. | ||
|
||
Also check out the https://discuss.elastic.co/c/apm[APM discussion forum]. | ||
|
||
==== No APM data found | ||
|
||
This section can help with any of the following: | ||
|
||
* Data isn't displaying in the APM app | ||
* You're seeing a message like "No Services Found", | ||
* You're seeing errors like "Fielddata is disabled on text fields by default..." | ||
|
||
There are a number of factors that could be at play here. | ||
One important thing to double-check first is your index template. | ||
|
||
An APM index template must exist for the APM app to work correctly. | ||
By default, this index template is created by APM Server on startup. | ||
However, this only happens if `setup.template.enabled` is `true` in `apm-server.yml`. | ||
You can create the index template manually by running `apm-server setup`. | ||
Take note that index templates *cannot* be applied retroactively -- they are only applied at index creation time. | ||
More information is available in {apm-server-ref}/apm-server-configuration.html[Set up and configure]. | ||
|
||
You can check for the existence of an APM index template using the | ||
{ref}/indices-get-template.html[Get index template API]. | ||
If you're using the default index naming pattern, that request would be: | ||
|
||
[source,js] | ||
-------------------------------------------------- | ||
GET /_template/apm-{version} | ||
-------------------------------------------------- | ||
// CONSOLE | ||
|
||
If you're not outputting data directly from APM Server to Elasticsearch (perhaps you're using Logstash or Kafka), | ||
then the index template will not be set up automatically. Instead, you'll need to | ||
{apm-server-ref}/_manually_loading_template_configuration.html#load-template-manually-alternate[load the template manually]. | ||
|
||
Finally, this problem can also occur if you've changed the index name that you write APM data to. | ||
The default index pattern can be found {apm-server-ref}/elasticsearch-output.html#index-option-es[here]. | ||
If you change this setting, you must also configure the `setup.template.name` and `setup.template.pattern` options. | ||
See {apm-server-ref}/configuration-template.html[Load the Elasticsearch index template]. |
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
15 changes: 15 additions & 0 deletions
15
docs/development/core/server/kibana-plugin-server.assistanceapiresponse.indices.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-server](./kibana-plugin-server.md) > [AssistanceAPIResponse](./kibana-plugin-server.assistanceapiresponse.md) > [indices](./kibana-plugin-server.assistanceapiresponse.indices.md) | ||
|
||
## AssistanceAPIResponse.indices property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
indices: { | ||
[indexName: string]: { | ||
action_required: MIGRATION_ASSISTANCE_INDEX_ACTION; | ||
}; | ||
}; | ||
``` |
18 changes: 18 additions & 0 deletions
18
docs/development/core/server/kibana-plugin-server.assistanceapiresponse.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,18 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [AssistanceAPIResponse](./kibana-plugin-server.assistanceapiresponse.md) | ||
|
||
## AssistanceAPIResponse interface | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface AssistanceAPIResponse | ||
``` | ||
|
||
## Properties | ||
|
||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [indices](./kibana-plugin-server.assistanceapiresponse.indices.md) | <code>{</code><br/><code> [indexName: string]: {</code><br/><code> action_required: MIGRATION_ASSISTANCE_INDEX_ACTION;</code><br/><code> };</code><br/><code> }</code> | | | ||
|
19 changes: 19 additions & 0 deletions
19
docs/development/core/server/kibana-plugin-server.assistantapiclientparams.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,19 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [AssistantAPIClientParams](./kibana-plugin-server.assistantapiclientparams.md) | ||
|
||
## AssistantAPIClientParams interface | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface AssistantAPIClientParams extends GenericParams | ||
``` | ||
## Properties | ||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [method](./kibana-plugin-server.assistantapiclientparams.method.md) | <code>'GET'</code> | | | ||
| [path](./kibana-plugin-server.assistantapiclientparams.path.md) | <code>'/_migration/assistance'</code> | | | ||
11 changes: 11 additions & 0 deletions
11
...development/core/server/kibana-plugin-server.assistantapiclientparams.method.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [AssistantAPIClientParams](./kibana-plugin-server.assistantapiclientparams.md) > [method](./kibana-plugin-server.assistantapiclientparams.method.md) | ||
|
||
## AssistantAPIClientParams.method property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
method: 'GET'; | ||
``` |
11 changes: 11 additions & 0 deletions
11
docs/development/core/server/kibana-plugin-server.assistantapiclientparams.path.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [AssistantAPIClientParams](./kibana-plugin-server.assistantapiclientparams.md) > [path](./kibana-plugin-server.assistantapiclientparams.path.md) | ||
|
||
## AssistantAPIClientParams.path property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
path: '/_migration/assistance'; | ||
``` |
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
19 changes: 19 additions & 0 deletions
19
docs/development/core/server/kibana-plugin-server.deprecationapiclientparams.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,19 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIClientParams](./kibana-plugin-server.deprecationapiclientparams.md) | ||
|
||
## DeprecationAPIClientParams interface | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface DeprecationAPIClientParams extends GenericParams | ||
``` | ||
## Properties | ||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [method](./kibana-plugin-server.deprecationapiclientparams.method.md) | <code>'GET'</code> | | | ||
| [path](./kibana-plugin-server.deprecationapiclientparams.path.md) | <code>'/_migration/deprecations'</code> | | | ||
11 changes: 11 additions & 0 deletions
11
...velopment/core/server/kibana-plugin-server.deprecationapiclientparams.method.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIClientParams](./kibana-plugin-server.deprecationapiclientparams.md) > [method](./kibana-plugin-server.deprecationapiclientparams.method.md) | ||
|
||
## DeprecationAPIClientParams.method property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
method: 'GET'; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...development/core/server/kibana-plugin-server.deprecationapiclientparams.path.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIClientParams](./kibana-plugin-server.deprecationapiclientparams.md) > [path](./kibana-plugin-server.deprecationapiclientparams.path.md) | ||
|
||
## DeprecationAPIClientParams.path property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
path: '/_migration/deprecations'; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...ent/core/server/kibana-plugin-server.deprecationapiresponse.cluster_settings.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIResponse](./kibana-plugin-server.deprecationapiresponse.md) > [cluster\_settings](./kibana-plugin-server.deprecationapiresponse.cluster_settings.md) | ||
|
||
## DeprecationAPIResponse.cluster\_settings property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
cluster_settings: DeprecationInfo[]; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...pment/core/server/kibana-plugin-server.deprecationapiresponse.index_settings.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIResponse](./kibana-plugin-server.deprecationapiresponse.md) > [index\_settings](./kibana-plugin-server.deprecationapiresponse.index_settings.md) | ||
|
||
## DeprecationAPIResponse.index\_settings property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
index_settings: IndexSettingsDeprecationInfo; | ||
``` |
21 changes: 21 additions & 0 deletions
21
docs/development/core/server/kibana-plugin-server.deprecationapiresponse.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,21 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIResponse](./kibana-plugin-server.deprecationapiresponse.md) | ||
|
||
## DeprecationAPIResponse interface | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface DeprecationAPIResponse | ||
``` | ||
|
||
## Properties | ||
|
||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [cluster\_settings](./kibana-plugin-server.deprecationapiresponse.cluster_settings.md) | <code>DeprecationInfo[]</code> | | | ||
| [index\_settings](./kibana-plugin-server.deprecationapiresponse.index_settings.md) | <code>IndexSettingsDeprecationInfo</code> | | | ||
| [ml\_settings](./kibana-plugin-server.deprecationapiresponse.ml_settings.md) | <code>DeprecationInfo[]</code> | | | ||
| [node\_settings](./kibana-plugin-server.deprecationapiresponse.node_settings.md) | <code>DeprecationInfo[]</code> | | | ||
|
11 changes: 11 additions & 0 deletions
11
...elopment/core/server/kibana-plugin-server.deprecationapiresponse.ml_settings.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIResponse](./kibana-plugin-server.deprecationapiresponse.md) > [ml\_settings](./kibana-plugin-server.deprecationapiresponse.ml_settings.md) | ||
|
||
## DeprecationAPIResponse.ml\_settings property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
ml_settings: DeprecationInfo[]; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...opment/core/server/kibana-plugin-server.deprecationapiresponse.node_settings.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationAPIResponse](./kibana-plugin-server.deprecationapiresponse.md) > [node\_settings](./kibana-plugin-server.deprecationapiresponse.node_settings.md) | ||
|
||
## DeprecationAPIResponse.node\_settings property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
node_settings: DeprecationInfo[]; | ||
``` |
11 changes: 11 additions & 0 deletions
11
docs/development/core/server/kibana-plugin-server.deprecationinfo.details.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationInfo](./kibana-plugin-server.deprecationinfo.md) > [details](./kibana-plugin-server.deprecationinfo.details.md) | ||
|
||
## DeprecationInfo.details property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
details?: string; | ||
``` |
11 changes: 11 additions & 0 deletions
11
docs/development/core/server/kibana-plugin-server.deprecationinfo.level.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,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationInfo](./kibana-plugin-server.deprecationinfo.md) > [level](./kibana-plugin-server.deprecationinfo.level.md) | ||
|
||
## DeprecationInfo.level property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
level: MIGRATION_DEPRECATION_LEVEL; | ||
``` |
Oops, something went wrong.