- Legacy APM Server Reference:
- Overview
- Getting Started With APM Server
- Setting up APM Server
- Upgrading APM Server
- Configuring APM Server
- General configuration options
- Configure the output
- Parse data using ingest node pipelines
- SSL/TLS settings
- Load the Elasticsearch index template
- Index lifecycle management (ILM)
- Configure logging
- Set up Real User Monitoring (RUM) support
- Use environment variables in the configuration
- Configure project paths
- Securing APM Server
- Monitoring APM Server
- Real User Monitoring (RUM)
- Tune Data Ingestion
- Storage Management
- Intake API
- Exploring data in Elasticsearch
- Exported fields
- Troubleshooting
- Release notes
A newer version is available. For the latest information, see the
current release documentation.
Server Informationedit
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 a 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.