-
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 eui_38_0_0
- Loading branch information
Showing
414 changed files
with
19,332 additions
and
4,967 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
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,32 @@ | ||
[role="xpack"] | ||
[[dependencies]] | ||
=== Dependencies | ||
|
||
APM agents collect details about external calls made from instrumented services. | ||
Sometimes, these external calls resolve into a downstream service that's instrumented -- in these cases, | ||
you can utilize <<distributed-tracing,distributed tracing>> to drill down into problematic downstream services. | ||
Other times, though, it's not possible to instrument a downstream dependency -- | ||
like with a database or third-party service. | ||
**Dependencies** gives you a window into these uninstrumented, downstream dependencies. | ||
|
||
[role="screenshot"] | ||
image::apm/images/dependencies.png[Dependencies view in the APM app in Kibana] | ||
|
||
Many application issues are caused by slow or unresponsive downstream dependencies. | ||
And because a single, slow dependency can significantly impact the end-user experience, | ||
it's important to be able to quickly identify these problems and determine the root cause. | ||
|
||
Select a dependency to see detailed latency, throughput, and failed transaction rate metrics. | ||
|
||
[role="screenshot"] | ||
image::apm/images/dependencies-drilldown.png[Dependencies drilldown view in the APM app in Kibana] | ||
|
||
When viewing a dependency, consider your pattern of usage with that dependency. | ||
If your usage pattern _hasn't_ increased or decreased, | ||
but the experience has been negatively effected -- either with an increase in latency or errors, | ||
there's likely a problem with the dependency that needs to be addressed. | ||
|
||
If your usage pattern _has_ changed, the dependency view can quickly show you whether | ||
that pattern change exists in all upstream services, or just a subset of your services. | ||
You might then start digging into traces coming from | ||
impacted services to determine why that pattern change has occurred. |
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
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.
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.
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Partial Results Example | ||
|
||
The partial results is a feature of the expressions plugin allowing to emit intermediate execution results over time. | ||
|
||
This example plugin demonstrates: | ||
|
||
1. An expression function emitting a datatable with intermediate results (`getEvents`). | ||
2. An expression function emitting an infinite number of results (`countEvent`). | ||
3. A combination of those two functions using the `mapColumn` function that continuously updates the resulting table. |
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,12 @@ | ||
{ | ||
"id": "paertialResultsExample", | ||
"version": "0.1.0", | ||
"kibanaVersion": "kibana", | ||
"ui": true, | ||
"owner": { | ||
"name": "App Services", | ||
"githubTeam": "kibana-app-services" | ||
}, | ||
"description": "A plugin demonstrating partial results in the expressions plugin", | ||
"requiredPlugins": ["developerExamples", "expressions"] | ||
} |
Oops, something went wrong.