- Legacy APM Server Reference:
- Overview
- Get started
- Set up
- How-to guides
- Configure
- Secure
- Monitor
- API
- Explore data in Elasticsearch
- Exported fields
- General APM fields
- APM Error fields
- APM Profile fields
- APM Sourcemap fields
- APM Span fields
- APM Transaction fields
- APM Transaction Metrics fields
- APM Transaction Metrics fields
- Beat fields
- Cloud provider metadata fields
- Docker fields
- ECS fields
- Host fields
- Kubernetes fields
- Process fields
- APM System Metrics fields
- Troubleshoot
- Upgrade
- Release notes
- APM Server version 7.8
- APM Server version 7.7
- APM Server version 7.6
- APM Server version 7.5
- APM Server version 7.4
- APM Server version 7.3
- APM Server version 7.2
- APM Server version 7.1
- APM Server version 7.0
- APM Server version 6.8
- APM Server version 6.7
- APM Server version 6.6
- APM Server version 6.5
- APM Server version 6.4
- APM Server version 6.3
- APM Server version 6.2
- APM Server version 6.1
A newer version is available. For the latest information, see the
current release documentation.
Server Information APIedit
The APM Server exposes an API endpoint to query general server information. This lightweight endpoint is useful as a server up/down healthcheck.
Server Information endpointedit
Send an HTTP GET
request to the server information endpoint:
http(s)://{hostname}:{port}/
This endpoint always returns an HTTP 200.
If an API keys or Secret token is set, only requests including authentication will receive server details.
Set the Accept
header set to text/plain
to move the server information to the root level of the response, removing ok
.
Exampleedit
Example server information request:
curl http://127.0.0.1:8200/ { "ok": { "build_date": "2018-07-27T18:49:58Z", "build_sha": "bc4d9a286a65b4283c2462404add86a26be61dca", "version": "7.0.0-alpha1" } }
On this page
Was this helpful?
Thank you for your feedback.