hostname-hits-by-time

🚧

The hostname-hits-by-time report is being discontinued

This report is deprecated and will be deactivated on January 31, 2025. As an alternative, use the new delivery/traffic/current report, based on the Reporting API v2.

The following shows how to generate the hostname-hits-by-time report using either the Reporting API's Generate a report POST operation or the Get a cacheable report GET operation. Details about each report's supported products, metrics, filters, and available data intervals are also available dynamically by running the API's Get a report type operation, also shown below. See also other available reports.

Report definition

Provides edge hits data that can be filtered by hostname grouped by time.

This report allows you to configure the aggregation interval for each data record. Available interval values are: MONTH, WEEK, DAY, HOUR, FIVE_MINUTES.

Business object: cpcode

Data available for: 92 days

Available metrics

MetricDescription
Data metrics
edgeHitsPerSecondThe number of edge requests per second for given objects and filters.
maxEdgeHitsMaximum Edge Hits.
Summary metrics
edgeHitsPerSecond​MaxThe peak number of edge requests per second for given objects and filters.
edgeHitsPerSecond​MinThe lowest number of edge requests per second for given objects and filters.
edgeHitsSlopeRepresents the overall change in the number of edge requests for given objects and filters, a positive number if increasing or a negative number if decreasing.
edgeHitsTotalThe total number of edge requests for given objects and filters.

Available filters

FilterTypeDescription
Optional filters
caEnumerationIndicates whether content is storable.
non_cacheable: Can't be stored (identified as 'no-store' or has a 0 TTL) and will always trigger an origin request.
cacheable: Can be stored after an initial request for faster future delivery.
delivery_typeEnumerationDistinguishes secure from non-secure traffic.
secure: Secure traffic.
non_secure: Non-secure traffic.
hostname_containStringHostname contains the specified string.
hostname_end_​withStringHostname ends with the specified string.
hostname_exact_​matchStringHostname is an exact match for the specified string.
hostname_matchStringHostname is an exact match for the specified string.
hostname_not_​containStringHostname does not contain the specified string.
hostname_not_​end_​withStringHostname does not end with the specified string.
hostname_not_​matchStringHostname does not match the specified string.
hostname_not_​start_​withStringHostname does not start with the specified string.
hostname_start_​withStringHostname starts with the specified string.
http_versionEnumerationHTTP version.
https1.1: https1.1
http2: http2
http3: http3
http1.1: http1.1
ip_versionEnumerationIP for which the report is shown.
ipv4: IP address in v4 format.
ipv6: IP address in v6 format.
response_classEnumerationA class of HTTP response status codes, from 0xx through 6xx.
0xx: An aborted action on the client side.
1xx: An informational response, like Continue.
2xx: A successful response.
3xx: Success, but a redirect where the thing you want is somewhere else.
4xx: Error, where there’s some problem with the client request.
5xx: Error, where there’s some problem with how the API server responded to the client request.
6xx: Invalid headers (defined by Akamai).
response_codeStringAn HTTP response status code, for example, 201.
response_statusEnumerationAn indicator of whether the HTTP response resulted in success or an error.
success: Successful HTTP response status.
error: Error HTTP response status.
trafficEnumerationHTTP traffic to be included in the report data.
get_head_responses: Response header traffic from GET operations.
put_post_responses: Response traffic from PUT and POST operations.

POST request

POST /reporting-api/v1/reports/hostname-hits-by-time/versions/2/report-data{?start,end,interval}

Sample: /reporting-api/v1/reports/hostname-hits-by-time/versions/2/report-data?start=2022-10-25T13%3A55%3A00Z&end=2022-10-25T14%3A15%3A00Z&interval=FIVE_MINUTES

For other granularity, you need to adjust start and end dates:

Sample with longer interval: /reporting-api/v1/reports/hostname-hits-by-time/versions/2/report-data?start=2022-06-01&end=2022-10-01&interval=MONTH

Query parameters

ParameterTypeSampleDescription
Required
startString2022-07-25T13:55:00ZSpecifies the start of the reported period as an ISO-8601 timestamp with optional time zone. The report includes data that matches the start value’s timestamp.
endString2022-07-25T14:15:00ZSpecifies the end of the reported period as an ISO-8601 timestamp with optional time zone. The report excludes any data that matches the end value’s timestamp.
intervalEnumerationFIVE_MINUTESThe duration of each data record. Available values: MONTH, WEEK, DAY, HOUR, FIVE_MINUTES.

JSON request members

MemberTypeDescription
objectIdsArraySpecifies the set of cpcode values you want to report on.
objectIdsEnumerationAs an alternative to an array of ID values, specify all as a string for unfiltered data. Either way, objectIds is required.
metricsArrayThe set of desired metrics. If omitted, the report includes all available metrics.
filtersMap of ArraysSpecifies a set of custom filters, with each filter's name keying an array with each filter's set of values.

Request body:

{
    "objectIds": [
        "55232",
        "23433",
        "32433"
    ],
    "metrics": [
        "edgeHitsPerSecond",
        "edgeHitsPerSecondMax",
        "edgeHitsPerSecondMin",
        "edgeHitsSlope",
        "edgeHitsTotal",
        "maxEdgeHits"
    ],
    "filters": {
        "ca": [
            "cacheable",
            "non_cacheable"
        ],
        "delivery_type": [
            "secure",
            "non-secure"
        ],
        "hostname_contain": [
            "blog.example.com",
            "img.example.com"
        ],
        "http_version": [
            "http1.1",
            "http2"
        ],
        "ip_version": [
            "ipv4",
            "ipv6"
        ],
        "response_class": [
            "2xx",
            "0xx"
        ],
        "response_code": [
            "403",
            "200"
        ],
        "response_status": [
            "success",
            "error"
        ],
        "traffic": [
            "put_post_requests",
            "get_head_responses"
        ]
    }
}

Note: Other filtering options for retrieving details about a groups of hostnames such as hostname_exact_match, hostname_start_with, hostname_end_with, hostname_not_contain, hostname_not_start_with, hostname_match, or hostname_not_match are supported.

GET request

GET /reporting-api/v1/reports/hostname-hits-by-time/versions/2/report-data{?start,end,interval,objectIds,allObjectIds,metrics,filters}

Sample: /reporting-api/v1/reports/hostname-hits-by-time/versions/2/report-data?start=2022-10-25T13%3A55%3A00Z&end=2022-10-25T14%3A15%3A00Z&interval=FIVE_MINUTES&objectIds=55232,23433,32433&metrics=edgeHitsPerSecond%2CedgeHitsPerSecondMax&filters=ca%3Dcacheable%2Cca%3Dnon_cacheable%2Cdelivery_type%3Dsecure%2Cdelivery_type%3Dnon-secure

Query parameters

ParameterTypeSampleDescription
Required
startString2022-07-25T13:55:00ZSpecifies the start of the reported period as an ISO-8601 timestamp with optional time zone. The report includes data that matches the start value’s timestamp.
endString2022-07-25T14:15:00ZSpecifies the end of the reported period as an ISO-8601 timestamp with optional time zone. The report excludes any data that matches the end value’s timestamp.
intervalEnumerationFIVE_MINUTESThe duration of each data record. Available values: MONTH, WEEK, DAY, HOUR, FIVE_MINUTES.
Optional
allObjectIdsBooleantrueAs an alternative to objectIds, enabling this generates a report that includes all IDs available for the cpcode objectType. This parameter is ignored if the request also specifies a set of objectIds.
objectIdsString55232,23433,32433As an alternative to allObjectIds, specifies the set of unique IDs for the cpcode objectType you want to report on, formatted as a comma-delimited list.
metricsStringedgeHitsPerSecond,​edge​Hits​Per​Second​MaxSpecifies a comma-separated list of metrics to include in the report, otherwise all metrics if omitted. The set of available metrics depends on the type of report. URL-encode the entire value in the GET request.
filtersStringca=cacheable,​ca=​non_​cacheable,​delivery_​type=​secure,​delivery_​type=​non-secureSpecifies criteria to filter the report’s data. The set of available filters depends on the type of report. Separate each filter name and value with an equals (=) character, and separate various name/value pairs with commas (,). To specify more than one filter value, repeat the filter name. See the accompanying example for guidance. URL-encode the entire value in the GET request.

JSON response

Status 200 application/json

Response body:

{
    "metadata": {
        "name": "hostname-hits-by-time",
        "version": "2",
        "outputType": "FLAT",
        "groupBy": [
            "startdatetime"
        ],
        "interval": "FIVE_MINUTES",
        "start": "2022-07-25T13:55:00Z",
        "end": "2022-07-25T14:15:00Z",
        "availableDataEnds": null,
        "suggestedRetryTime": null,
        "rowCount": 4,
        "filters": [
            {
                "name": "ca",
                "values": [
                    "cacheable",
                    "non_cacheable"
                ]
            },
            {
                "name": "delivery_type",
                "values": [
                    "secure",
                    "non-secure"
                ]
            },
            {
                "name": "hostname_contain",
                "values": [
                    "m.example.com",
                    "blog.example.com"
                ]
            },
            {
                "name": "http_version",
                "values": [
                    "http1.1",
                    "http2"
                ]
            },
            {
                "name": "ip_version",
                "values": [
                    "ipv4",
                    "ipv6"
                ]
            },
            {
                "name": "response_class",
                "values": [
                    "2xx",
                    "5xx"
                ]
            },
            {
                "name": "response_code",
                "values": [
                    "503",
                    "100"
                ]
            },
            {
                "name": "response_status",
                "values": [
                    "success",
                    "error"
                ]
            },
            {
                "name": "traffic",
                "values": [
                    "get_head_responses",
                    "put_post_responses"
                ]
            }
        ],
        "columns": [
            {
                "name": "groupBy",
                "label": "startdatetime"
            },
            {
                "name": "edgeHitsPerSecond",
                "label": "Edge Hits/Sec"
            },
            {
                "name": "maxEdgeHits",
                "label": "Maximum Edge Hits"
            }
        ],
        "objectType": "cpcode",
        "objectIds": [
            "55232",
            "23433",
            "32433"
        ]
    },
    "data": [
        {
            "startdatetime": "2022-07-25T13:55:00Z",
            "edgeHitsPerSecond": "2628.750394",
            "maxEdgeHits": "3181"
        },
        {
            "startdatetime": "2022-07-25T14:00:00Z",
            "edgeHitsPerSecond": "4420.106226",
            "maxEdgeHits": "3341"
        },
        {
            "startdatetime": "2022-07-25T14:05:00Z",
            "edgeHitsPerSecond": "78.855382",
            "maxEdgeHits": "552"
        },
        {
            "startdatetime": "2022-07-25T14:10:00Z",
            "edgeHitsPerSecond": "4885.268874",
            "maxEdgeHits": "296"
        }
    ],
    "summaryStatistics": {
        "edgeHitsPerSecondMax": {
            "value": "2722.090241",
            "details": {}
        },
        "edgeHitsPerSecondMin": {
            "value": "594.640137",
            "details": {}
        },
        "edgeHitsSlope": {
            "value": "647",
            "details": {}
        },
        "edgeHitsTotal": {
            "value": "4791",
            "details": {}
        }
    }
}

CSV response

Status 200 text/csv

Response Body:

#METADATA_START
name,hostname-hits-by-time
version,2
source,hostname-hits-by-time/versions/2
groupBy,startdatetime
start,2022-07-25T13:55:00Z
end,2022-07-25T14:15:00Z
interval,`FIVE_MINUTES`
availableDataEnds,
suggestedRetryTime,
rowCount,4
objectType,cpcode
objectIds,55232,23433,32433
ca,cacheable,non_cacheable
delivery_type,secure,non-secure
hostname_contain,m.example.com,blog.example.com
http_version,http1.1,http2
ip_version,ipv4,ipv6
response_class,2xx,5xx
response_code,503,100
response_status,success,error
traffic,get_head_responses,put_post_responses
#METADATA_END

#SUMMARYSTATISTICS_START
edgeHitsPerSecondMax,2722.090241
edgeHitsPerSecondMin,594.640137
edgeHitsSlope,647
edgeHitsTotal,4791
#SUMMARYSTATISTICS_END

#COLUMNS_START
startdatetime,edgeHitsPerSecond,maxEdgeHits
#COLUMNS_END

#DATA_START
2022-07-25T13:55:00Z,2628.750394,3181
2022-07-25T14:00:00Z,4420.106226,3341
2022-07-25T14:05:00Z,78.855382,552
2022-07-25T14:10:00Z,4885.268874,296
#DATA_END

Get report details

This sample Get a report type operation gets the same information you need to run the hostname-hits-by-time report as provided in this reference documentation, but available dynamically to your API client application.

GET /reporting-api/v1/reports/hostname-hits-by-time/versions/2

Status 200 application/json

Response body:

{
    "name": "hostname-hits-by-time",
    "description": "This report provides edge traffic data that can be filtered by hostname.",
    "businessObjectName": "cpcode",
    "version": 2,
    "status": "DEPRECATED",
    "deprecated": true,
    "timeBased": true,
    "supportsPagination": false,
    "outputType": "FLAT",
    "requiredProducts": [
        "Basic Traffic Reports"
    ],
    "requiredRoles": [
        "Reports - All privileges",
        "Reports - View only",
        "OTA App User"
    ],
    "available": true,
    "metrics": [
        {
            "name": "edgeHitsPerSecond",
            "description": "The number of edge requests per second for given objects and filters.",
            "label": "Edge Hits/Sec",
            "unit": "COUNT_PER_SECOND",
            "summaryStatistic": false
        },
        {
            "name": "edgeHitsPerSecondMax",
            "description": "The peak number of edge requests per second for given objects and filters.",
            "label": "Edge Hits/Sec Maximum",
            "unit": "COUNT_PER_SECOND",
            "summaryStatistic": true
        },
        {
            "name": "edgeHitsPerSecondMin",
            "description": "The lowest number of edge requests per second for given objects and filters.",
            "label": "Edge Hits/Sec Minimum",
            "unit": "COUNT_PER_SECOND",
            "summaryStatistic": true
        },
        {
            "name": "edgeHitsSlope",
            "description": "Represents the overall change in the number of edge requests for given objects and filters, a positive number if increasing or a negative number if decreasing.",
            "label": "Edge Hits Slope",
            "unit": "COUNT",
            "summaryStatistic": true
        },
        {
            "name": "edgeHitsTotal",
            "description": "The total number of edge requests for given objects and filters.",
            "label": "Total Edge Hits",
            "unit": "COUNT",
            "summaryStatistic": true
        },
        {
            "name": "maxEdgeHits",
            "description": "Maximum Edge Hits.",
            "label": "Maximum Edge Hits",
            "unit": "COUNT",
            "summaryStatistic": false
        }
    ],
    "groupOutlyingValues": {
        "enabled": false
    },
    "groupBy": [
        "startdatetime"
    ],
    "filters": [
        {
            "name": "hostname_not_end_with",
            "type": "string",
            "description": "Hostname does not end with the specified string.",
            "required": false
        },
        {
            "name": "traffic",
            "type": "enum",
            "description": "HTTP traffic to be included in the report data.",
            "values": [
                {
                    "value": "get_head_responses",
                    "description": "Response header traffic from GET operations."
                },
                {
                    "value": "put_post_responses",
                    "description": "Response traffic from PUT and POST operations."
                }
            ],
            "required": false
        },
        {
            "name": "hostname_end_with",
            "type": "string",
            "description": "Hostname ends with the specified string.",
            "required": false
        },
        {
            "name": "response_code",
            "type": "string",
            "description": "An HTTP response status code, for example, 201.",
            "required": false
        },
        {
            "name": "hostname_contain",
            "type": "string",
            "description": "Hostname contains the specified string.",
            "required": false
        },
        {
            "name": "response_class",
            "type": "enum",
            "description": "A class of HTTP response status codes, from 0xx through 6xx.",
            "values": [
                {
                    "value": "0xx",
                    "description": "An aborted action on the client side."
                },
                {
                    "value": "1xx",
                    "description": "An informational response, like Continue."
                },
                {
                    "value": "2xx",
                    "description": "A successful response."
                },
                {
                    "value": "3xx",
                    "description": "Success, but a redirect where the thing you want is somewhere else."
                },
                {
                    "value": "4xx",
                    "description": "Error, where there’s some problem with the client request."
                },
                {
                    "value": "5xx",
                    "description": "Error, where there’s some problem with how the API server responded to the client request."
                },
                {
                    "value": "6xx",
                    "description": "Invalid headers (defined by Akamai)."
                }
            ],
            "required": false
        },
        {
            "name": "hostname_exact_match",
            "type": "string",
            "description": "Hostname is an exact match for the specified string.",
            "required": false
        },
        {
            "name": "ip_version",
            "type": "enum",
            "description": " IP for which the report is shown.",
            "values": [
                {
                    "value": "ipv4",
                    "description": "IP address in v4 format."
                },
                {
                    "value": "ipv6",
                    "description": "IP address in v6 format."
                }
            ],
            "required": false
        },
        {
            "name": "hostname_start_with",
            "type": "string",
            "description": "Hostname starts with the specified string.",
            "required": false
        },
        {
            "name": "hostname_not_contain",
            "type": "string",
            "description": "Hostname does not contain the specified string.",
            "required": false
        },
        {
            "name": "hostname_match",
            "type": "regexp",
            "description": "Hostname is an exact match for the specified string.",
            "required": false
        },
        {
            "name": "http_version",
            "type": "enum",
            "description": "HTTP version.",
            "values": [
                {
                    "value": "https1.1",
                    "description": "https1.1"
                },
                {
                    "value": "http2",
                    "description": "http2"
                },
                {
                    "value": "http3",
                    "description": "http3"
                },
                {
                    "value": "http1.1",
                    "description": "http1.1"
                }
            ],
            "required": false
        },
        {
            "name": "hostname_not_match",
            "type": "regexp",
            "description": "Hostname does not match the specified string.",
            "required": false
        },
        {
            "name": "ca",
            "type": "enum",
            "description": "Indicates whether content is storable.",
            "values": [
                {
                    "value": "non_cacheable",
                    "description": "Can't be stored (identified as 'no-store' or has a 0 TTL) and will always trigger an origin request."
                },
                {
                    "value": "cacheable",
                    "description": "Can be stored after an initial request for faster future delivery."
                }
            ],
            "required": false
        },
        {
            "name": "response_status",
            "type": "enum",
            "description": "An indicator of whether the HTTP response resulted in success or an error.",
            "values": [
                {
                    "value": "success",
                    "description": "Successful HTTP response status."
                },
                {
                    "value": "error",
                    "description": "Error HTTP response status. "
                }
            ],
            "required": false
        },
        {
            "name": "hostname_not_start_with",
            "type": "string",
            "description": "Hostname does not start with the specified string.",
            "required": false
        },
        {
            "name": "delivery_type",
            "type": "enum",
            "description": "Distinguishes secure from non-secure traffic.",
            "values": [
                {
                    "value": "secure",
                    "description": "Secure traffic."
                },
                {
                    "value": "non_secure",
                    "description": "Non-secure traffic."
                }
            ],
            "required": false
        }
    ],
    "intervals": [
        "MONTH",
        "WEEK",
        "DAY",
        "HOUR",
        "FIVE_MINUTES"
    ],
    "dataRetentionDays": 92,
    "links": [
        {
            "rel": "self",
            "href": "/reporting-api/v1/reports/hostname-hits-by-time/versions/2"
        },
        {
            "rel": "versions",
            "href": "/reporting-api/v1/reports/hostname-hits-by-time/versions"
        },
        {
            "rel": "all-reports",
            "href": "/reporting-api/v1/reports"
        },
        {
            "rel": "execute-report",
            "href": "/reporting-api/v1/reports/hostname-hits-by-time/versions/2/report-data"
        }
    ]
}