Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
get_domain_inspector_historical | GET /metrics/domains/services/{service_id} | Get historical domain data for a service |
Fetches historical domain metrics for a given Fastly service, optionally filtering and grouping the results by domain, region, or POP.
let cfg = &Configuration::default();
let params = GetDomainInspectorHistoricalParams {
// parameters
};
get_domain_inspector_historical(cfg, params)
Name | Type | Description | Required | Notes |
---|---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | [required] | |
start | Option<String> | A valid ISO-8601-formatted date and time, or UNIX timestamp, indicating the inclusive start of the query time range. If not provided, a default is chosen based on the provided downsample value. |
||
end | Option<String> | A valid ISO-8601-formatted date and time, or UNIX timestamp, indicating the exclusive end of the query time range. If not provided, a default is chosen based on the provided downsample value. |
||
downsample | Option<String> | Duration of sample windows. | [default to hour] | |
metric | Option<String> | The metrics to retrieve. Multiple values should be comma-separated. | [default to edge_requests] | |
group_by | Option<String> | Dimensions to return in the query. Multiple dimensions may be separated by commas. For example, group_by=domain will return one timeseries for every domain, as a total across all datacenters (POPs). |
||
limit | Option<String> | Number of results per page. The maximum is 200. | [default to 100] | |
cursor | Option<String> | Cursor value from the next_cursor field of a previous response, used to retrieve the next page. To request the first page, this should be empty. |
||
region | Option<String> | Limit query to one or more specific geographic regions. Values should be comma-separated. | ||
datacenter | Option<String> | Limit query to one or more specific POPs. Values should be comma-separated. | ||
domain | Option<String> | Limit query to one or more specific domains. Values should be comma-separated. |
crate::models::HistoricalDomainsResponse
- Content-Type: Not defined
- Accept: application/json