Skip to content

Commit c88ca13

Browse files
Merge branch 'master' into fix/reporting-viewport-regression
2 parents 15977f9 + 316346a commit c88ca13

File tree

381 files changed

+5712
-2839
lines changed

Some content is hidden

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

381 files changed

+5712
-2839
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,10 @@
138138
/x-pack/test/functional/apps/maps/ @elastic/kibana-gis
139139
/x-pack/test/functional/es_archives/maps/ @elastic/kibana-gis
140140
/x-pack/test/visual_regression/tests/maps/index.js @elastic/kibana-gis
141+
/x-pack/plugins/stack_alerts/server/alert_types/geo_containment @elastic/kibana-gis
142+
/x-pack/plugins/stack_alerts/public/alert_types/geo_containment @elastic/kibana-gis
143+
/x-pack/plugins/stack_alerts/server/alert_types/geo_threshold @elastic/kibana-gis
144+
/x-pack/plugins/stack_alerts/public/alert_types/geo_threshold @elastic/kibana-gis
141145
#CC# /src/plugins/maps_legacy/ @elastic/kibana-gis
142146
#CC# /src/plugins/maps_oss/ @elastic/kibana-gis
143147
#CC# /x-pack/plugins/file_upload @elastic/kibana-gis

dev_docs/api_welcome.mdx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
id: kibDevDocsApiWelcome
3+
slug: /kibana-dev-docs/api-welcome
4+
title: Welcome
5+
summary: The home of automatically generated plugin API documentation using extracted TSDocs
6+
date: 2021-01-02
7+
tags: ['kibana','dev', 'contributor', 'api docs']
8+
---
9+
10+
Welcome to Kibana's plugin API documentation. As a plugin developer, this is where you can
11+
learn the details of every service you can take advantage of to help you build awe-inspiring creative solutions and applications!
12+
13+
If you have any questions or issues, please reach out to the Kibana platform team or create an issue [here](https://github.com/elastic/kibana/issues).
14+

dev_docs/dev_welcome.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
id: kibDevDocsWelcome
3+
slug: /kibana-dev-docs/welcome
4+
title: Welcome
5+
summary: Build custom solutions and applications on top of Kibana.
6+
date: 2021-01-02
7+
tags: ['kibana','dev', 'contributor']
8+
---
9+
10+
Welcome to Kibana's plugin developer documentation!
11+
12+
Did you know that the vast majority of functionality built inside of Kibana is a plugin? A handful of core services hold the system together,
13+
but it's our vast system of plugin developers that provide the amazing, out of the box, functionality you can use when building your own set of
14+
custom utilities and applications.
15+
16+
Browse the `Services` section to view all the plugins that offer functionality you can take advantage of, or check out the
17+
`API documentation` to dig into the nitty gritty details of every public plugin API.

docs/apm/deployment-annotations.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<titleabbrev>Track deployments with annotations</titleabbrev>
77
++++
88

9+
[role="screenshot"]
10+
image::apm/images/apm-transaction-annotation.png[Example view of transactions annotation in the APM app in Kibana]
11+
912
For enhanced visibility into your deployments, we offer deployment annotations on all transaction charts.
1013
This feature enables you to easily determine if your deployment has increased response times for an end-user,
1114
or if the memory/CPU footprint of your application has changed.
@@ -43,6 +46,3 @@ See the <<apm-annotation-api,annotation API>> reference for more information.
4346

4447

4548
NOTE: If custom annotations have been created for the selected time period, any derived annotations, i.e., those created automatically when `service.version` changes, will not be shown.
46-
47-
[role="screenshot"]
48-
image::apm/images/apm-transaction-annotation.png[Example view of transactions annotation in the APM app in Kibana]

docs/apm/errors.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[role="xpack"]
22
[[errors]]
3-
=== Errors overview
3+
=== Errors
44

55
TIP: {apm-overview-ref-v}/errors.html[Errors] are groups of exceptions with a similar exception or log message.
66

docs/apm/getting-started.asciidoc

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,20 @@
66
<titleabbrev>Get started</titleabbrev>
77
++++
88

9-
Elastic APM captures different types of information from within instrumented applications:
10-
11-
* *Spans* contain information about the execution of a specific code path.
12-
They measure from the start to end of an activity,
13-
and they can have a parent/child relationship with other spans.
14-
* *Transactions* are a special kind of span;
15-
they are the first span for a particular service and have extra metadata associated with them.
16-
As an example, a transaction could be a request to your server, a batch job, or a custom transaction type.
17-
*Traces* link together related transactions to show an end-to-end performance of how a request was served and which services were part of it.
18-
* *Errors* contain information about the original exception that occurred or about a log created when the exception occurred.
19-
20-
Curated charts and tables display the different types of APM data, which allows you to compare and debug your applications easily.
9+
For a quick, high-level overview of the health and performance of your application,
10+
start with:
2111

2212
* <<services>>
2313
* <<traces>>
14+
* <<service-maps>>
15+
16+
Notice something awry? Select a service or trace and dive deeper with:
17+
18+
* <<service-overview>>
2419
* <<transactions>>
2520
* <<spans>>
2621
* <<errors>>
2722
* <<metrics>>
28-
* <<service-maps>>
2923

3024
TIP: Want to learn more about the Elastic APM ecosystem?
3125
See the {apm-get-started-ref}/overview.html[APM Overview].
@@ -34,12 +28,14 @@ include::services.asciidoc[]
3428

3529
include::traces.asciidoc[]
3630

31+
include::service-maps.asciidoc[]
32+
33+
include::service-overview.asciidoc[]
34+
3735
include::transactions.asciidoc[]
3836

3937
include::spans.asciidoc[]
4038

4139
include::errors.asciidoc[]
4240

4341
include::metrics.asciidoc[]
44-
45-
include::service-maps.asciidoc[]
-20.1 KB
Loading

docs/apm/images/apm-alert.png

127 KB
Loading
12.8 KB
Loading

docs/apm/images/apm-geo-ui.png

184 KB
Loading

0 commit comments

Comments
 (0)