- Heartbeat Reference: other versions:
- Overview
- Getting Started With Heartbeat
- Setting up and running Heartbeat
- Configuring Heartbeat
- Set up monitors
- Specify general settings
- Configure the internal queue
- Configure the output
- Specify SSL settings
- Filter and Enhance the exported data
- Parse data by using ingest node
- Set up project paths
- Set up the Kibana endpoint
- Load the Kibana dashboards
- Load the Elasticsearch index template
- Configure logging
- Use environment variables in the configuration
- Autodiscover
- YAML tips and gotchas
- Regular expression support
- HTTP Endpoint
- heartbeat.reference.yml
- Exported fields
- Monitoring Heartbeat
- Securing Heartbeat
- Troubleshooting
- Contributing to Beats
HTTP monitor fields
editHTTP monitor fields
editNone
http fields
editHTTP related fields.
-
http.url
-
type: text
Service url used by monitor.
-
http.url.raw
-
type: keyword
The service url used by monitor. This is a non-analyzed field that is useful for aggregations.
response fields
editService response parameters.
-
http.response.status_code
-
type: integer
Response status code.
rtt fields
editHTTP layer round trip times.
validate fields
editDuration between first byte of HTTP request being written and response being processed by validator. Duration based on already available network connection.
Note: if validator is not reading body or only a prefix, this number does not fully represent the total time needed to read the body.
-
http.rtt.validate.us
-
type: long
Duration in microseconds
validate_body fields
editDuration of validator required to read and validate the response body.
Note: if validator is not reading body or only a prefix, this number does not fully represent the total time needed to read the body.
-
http.rtt.validate_body.us
-
type: long
Duration in microseconds
write_request fields
editDuration of sending the complete HTTP request. Duration based on already available network connection.
-
http.rtt.write_request.us
-
type: long
Duration in microseconds
response_header fields
editTime required between sending the start of sending the HTTP request and first byte from HTTP response being read. Duration based on already available network connection.
-
http.rtt.response_header.us
-
type: long
Duration in microseconds
-
http.rtt.content.us
-
type: long
Time required to retrieved the content in micro seconds.
total fields
editDuration required to process the HTTP transaction. Starts with the initial TCP connection attempt. Ends with after validator did check the response.
Note: if validator is not reading body or only a prefix, this number does not fully represent the total time needed.
-
http.rtt.total.us
-
type: long
Duration in microseconds
On this page