Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/internal/GeneralArchitectureGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,20 @@ See the [public upgrade docs][] for the upgrade process.

(what plugins do we have?)

# Observability

Elasticsearch emits logs as described in the [public logging docs][], and exposes a good deal of information about its inner workings using
all its management and stats APIs. Elasticsearch also integrates with the [Elastic APM Java agent][] to perform distributed tracing (as
described in [TRACING.md][]) and metrics collection (as described in [METERING.md][]). This agent exposes the data it collects to an
[OpenTelemetry][] service such as [Elastic APM Server][].

[public logging docs]: https://www.elastic.co/docs/deploy-manage/monitor/logging-configuration
[Elastic APM Java agent]: https://www.elastic.co/docs/reference/apm/agents/java
[OpenTelemetry]: https://opentelemetry.io/
[Elastic APM Server]: https://www.elastic.co/docs/solutions/observability/apm
[TRACING.md]: https://github.com/elastic/elasticsearch/blob/v8.18.3/TRACING.md
[METERING.md]: https://github.com/elastic/elasticsearch/blob/v8.18.3/modules/apm/METERING.md

# Testing

(Overview of our testing frameworks. Discuss base test classes.)
Expand Down
Loading