﻿---
title: OpenTelemetry intake API
description: APM Server supports receiving traces, metrics, and logs over the OpenTelemetry Protocol (OTLP). OTLP is the default transfer protocol for OpenTelemetry...
url: https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/observability/apm/opentelemetry-intake-api
products:
  - APM
  - Elastic Observability
applies_to:
  - Elastic Stack: Generally available
---

# OpenTelemetry intake API
APM Server supports receiving traces, metrics, and logs over the [OpenTelemetry Protocol (OTLP)](https://opentelemetry.io/docs/specs/otlp/). OTLP is the default transfer protocol for OpenTelemetry and is supported natively by APM Server.
APM Server supports two OTLP communication protocols on the same port:
- OTLP/HTTP (protobuf)
- OTLP/gRPC

The OTLP endpoint on APM Server is not recommended for new users; use the [EDOT Collector](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/edot-collector) or [Managed OTLP](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/opentelemetry/motlp) instead. EDOT SDKs are only supported with [EDOT Collector Gateway](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/edot-collector/modes#edot-collector-as-gateway) or [Managed OTel intake](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/reference/opentelemetry/motlp), and using them with this intake is not supported.

## OTLP/gRPC paths


| Name                | Endpoint                                                          |
|---------------------|-------------------------------------------------------------------|
| OTLP metrics intake | `/opentelemetry.proto.collector.metrics.v1.MetricsService/Export` |
| OTLP trace intake   | `/opentelemetry.proto.collector.trace.v1.TraceService/Export`     |
| OTLP logs intake    | `/opentelemetry.proto.collector.logs.v1.LogsService/Export`       |


## OTLP/HTTP paths


| Name                | Endpoint      |
|---------------------|---------------|
| OTLP metrics intake | `/v1/metrics` |
| OTLP trace intake   | `/v1/traces`  |
| OTLP logs intake    | `/v1/logs`    |