Menu
Grafana Cloud

MultiHTTP check

Note

MultiHTTP is currently in public preview. Grafana Labs offers limited support, and breaking changes might occur prior to the feature being made generally available.

MultiHTTP checks can test multiple URLs in a single check while measuring uptime and response latency like other check types. You can also use the results of one request in a later one and make several assertions for each request.

Options

The list of common options to all check types:

OptionDescription
EnabledWhether the check is enabled or not.
Job nameRefer to the check name. Check metrics include a job label with the value of this option.
TargetTarget of the check request. Check metrics include an instance label with the value of this option.
Probe locationsThe locations where the check should run from. Check metrics include a probe label with the value of the probe location running the check.
FrequencyThe frequency the check should run in seconds. The value can range from 60 to 3600 seconds. Only the sm_check_info metric includes the frequency label.
TimeoutMaximum execution time for the check. The value can range from 1 to 60 seconds.
Custom labels(Optional) Custom labels applied to check metrics. Refer to Custom labels for querying instructions.

Additionally, MultiHTTP checks have the following options:

OptionDescription
Request targetThe URL to send a request to.
Request methodThe HTTP method to use when sending the request.
HeadersName and value of HTTP headers to add to the request.
Query parametersName and value of URL query parameters.
AssertionsSee below.
VariablesSee below.

These last options don’t produce any additional labels in the resulting check metrics.

Assertions

There are four types of assertions.

Text assertions

Text assertions match a simple string against various subjects:

  • Body: The entire response body is used.
  • Headers: Each individual header is matched against the specified value. The header name is lower-cased, followed by a colon and a space (: ), followed by the header’s value (as is). The match succeeds if at least one of the headers matches.
  • Status code: The status code is used.

The match can be performed against the specified subject in one of several ways:

  • Contains: The specified value must be present somewhere in the subject.
  • Does not contain: The specified value must not be present anywhere in the subject.
  • Equals: The subject must be exactly equal to the specified value.
  • Starts with: The subject must start with the specified value.
  • Ends with: The subject must end with the specified value.

JSON path value assertions

This type of assertion expects the response body to be a JSON document, and it accepts a JSONPath expression to be matched against the specified value. The possible matches are:

  • Contains: The specified value must be present somewhere in the result of evaluating the JSONPath expression.
  • Does not contain: The specified value must not be present anywhere in the result of evaluating the JSONPath expression.
  • Equals: The result of evaluating the JSONPath expression must be exactly equal to the specified value.
  • Starts with: The result of evaluating the JSONPath expression must start with the specified value.
  • Ends with: The result of evaluating the JSONPath expression must end with the specified value.

JSON path assertions

This type of assertion expects the response body to be a JSON document, and it accepts a JSONPath expression that must evaluate to a non-empty result for the assertion to succeed.

Regex assertions

Regular expression assertions evaluate the provided regular expresion against one of various subjects:

  • Body: The entire response body is used.
  • Headers: Each individual header is evaluated against the specified regular expression. The header name is lower-cased, followed by a colon and a space (: ), followed by the header’s value (as is). The match succeeds if at least one of the headers matches.
  • Status code: The status code is used.

Variables

Variables can capture values from the responses to individual HTTP requests. Each variable must be named, and the name must be unique across all requests. The name can be used in subsequent requests by using the ${name} variable. It’s possible to use this anywhere where a string is expected, for example, as the value of a header or the value of an assertion.

Variable values can be obtained from the following.

  • A JSONPath: The value of the variable is the result of evaluating the JSONPath expression.
  • A regular expression: The value of the variable is the string matching the regular expression.
  • A CSS selector: The value of the variable is the value of evaluating the CSS selector against the response body. Optionally, an attribute name can be specified, in which case the value of the variable is the value of the specified attribute.

Metrics

Checks store their results as Prometheus metrics, including the list of common metrics:

MetricDescription
probe_all_duration_secondsReturns how long the probe took to complete in seconds (histogram).
probe_duration_secondsReturns how long the probe took to complete in seconds.
probe_all_successDisplays whether or not the probe was a success (summary).
probe_successDisplays whether or not the probe was a success.
sm_check_infoProvides information about a single check configuration.

Additionally, MultiHTTP checks produce the following metrics:

MetricDescription
probe_data_received_bytesThe total number of bytes received.
probe_data_sent_bytesThe total number of bytes sent.
probe_http_duration_secondsFor each method and URL group, its duration in seconds, split by phase (resolve, connect, TLS, processing, transfer).
probe_http_infoInformation about the response.
probe_http_requests_failed_totalThe number of failed requests by method and URL.
probe_http_requests_totalThe total number of requests by method and URL.
probe_http_sslFor each method and URL group, whether or not the request used SSL.
probe_http_status_codeFor each method and URL group, the response code for the request.
probe_http_versionFor each method and URL group, the version of the HTTP protocol used to complete the request.
probe_iteration_duration_secondsThe total number of seconds for the whole check, excluding setup time for the check itself.