-
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 'master' into refactorSearchSource
- Loading branch information
Showing
2,434 changed files
with
405,605 additions
and
57,784 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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
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
23 changes: 23 additions & 0 deletions
23
docs/development/core/public/kibana-plugin-public.httpfetcherror._constructor_.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,23 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchError](./kibana-plugin-public.httpfetcherror.md) > [(constructor)](./kibana-plugin-public.httpfetcherror._constructor_.md) | ||
|
||
## HttpFetchError.(constructor) | ||
|
||
Constructs a new instance of the `HttpFetchError` class | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
constructor(message: string, request: Request, response?: Response | undefined, body?: any); | ||
``` | ||
|
||
## Parameters | ||
|
||
| Parameter | Type | Description | | ||
| --- | --- | --- | | ||
| message | <code>string</code> | | | ||
| request | <code>Request</code> | | | ||
| response | <code>Response | undefined</code> | | | ||
| body | <code>any</code> | | | ||
|
11 changes: 11 additions & 0 deletions
11
docs/development/core/public/kibana-plugin-public.httpfetcherror.body.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-public](./kibana-plugin-public.md) > [HttpFetchError](./kibana-plugin-public.httpfetcherror.md) > [body](./kibana-plugin-public.httpfetcherror.body.md) | ||
|
||
## HttpFetchError.body property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
readonly body?: any; | ||
``` |
27 changes: 27 additions & 0 deletions
27
docs/development/core/public/kibana-plugin-public.httpfetcherror.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,27 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchError](./kibana-plugin-public.httpfetcherror.md) | ||
|
||
## HttpFetchError class | ||
|
||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare class HttpFetchError extends Error | ||
``` | ||
## Constructors | ||
| Constructor | Modifiers | Description | | ||
| --- | --- | --- | | ||
| [(constructor)(message, request, response, body)](./kibana-plugin-public.httpfetcherror._constructor_.md) | | Constructs a new instance of the <code>HttpFetchError</code> class | | ||
## Properties | ||
| Property | Modifiers | Type | Description | | ||
| --- | --- | --- | --- | | ||
| [body](./kibana-plugin-public.httpfetcherror.body.md) | | <code>any</code> | | | ||
| [request](./kibana-plugin-public.httpfetcherror.request.md) | | <code>Request</code> | | | ||
| [response](./kibana-plugin-public.httpfetcherror.response.md) | | <code>Response | undefined</code> | | | ||
11 changes: 11 additions & 0 deletions
11
docs/development/core/public/kibana-plugin-public.httpfetcherror.request.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-public](./kibana-plugin-public.md) > [HttpFetchError](./kibana-plugin-public.httpfetcherror.md) > [request](./kibana-plugin-public.httpfetcherror.request.md) | ||
|
||
## HttpFetchError.request property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
readonly request: Request; | ||
``` |
11 changes: 11 additions & 0 deletions
11
docs/development/core/public/kibana-plugin-public.httpfetcherror.response.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-public](./kibana-plugin-public.md) > [HttpFetchError](./kibana-plugin-public.httpfetcherror.md) > [response](./kibana-plugin-public.httpfetcherror.response.md) | ||
|
||
## HttpFetchError.response property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
readonly response?: Response | undefined; | ||
``` |
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
13 changes: 13 additions & 0 deletions
13
docs/development/core/public/kibana-plugin-public.savedobjectattributesingle.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-public](./kibana-plugin-public.md) > [SavedObjectAttributeSingle](./kibana-plugin-public.savedobjectattributesingle.md) | ||
|
||
## SavedObjectAttributeSingle type | ||
|
||
Don't use this type, it's simply a helper type for [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md) | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare type SavedObjectAttributeSingle = string | number | boolean | null | undefined | SavedObjectAttributes; | ||
``` |
Oops, something went wrong.