The following shows how to generate the urlresponses-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
Returns URL data by response class over time.
This report allows you to configure the aggregation interval for each data record. Available interval
values are: MONTH
, WEEK
, DAY
.
Business object: cpcode
Data available for: 92 days
Available metrics
Metric | Description | |
---|---|---|
Data metrics | ||
0XXEdgeHitsPerSecond | The rate of hits from Akamai to the end user returning 0XX responses. | |
2XXEdgeHitsPerSecond | The rate of hits from Akamai to the end user returning 2XX responses. | |
3XXEdgeHitsPerSecond | The rate of hits from Akamai to the end user returning 3XX responses. | |
4XXEdgeHitsPerSecond | The rate of hits from Akamai to the end user returning 4XX responses. | |
allEdgeHitsPerSecond | The rate of hits from Akamai to the end user. | |
errorEdgeHitsPerSecond | The rate of hits from Akamai to the end user returning error responses. | |
successEdgeHitsPerSecond | The rate of hits from Akamai to the end user returning success responses. | |
Summary metrics | ||
0XXEdgeHitsMax | The highest number of hits from Akamai to the end user returning 0XX responses. | |
0XXEdgeHitsMin | The lowest number of hits from Akamai to the end user returning 0XX responses. | |
0XXEdgeHitsSlope | Represents the overall change in the number of URLs returning 0XX responses, a positive number if increasing or a negative number if decreasing. | |
0XXEdgeHitsTotal | The total number of hits from Akamai to the end user returning 0XX responses. | |
2XXEdgeHitsMax | The highest number of hits from Akamai to the end user returning 2XX responses. | |
2XXEdgeHitsMin | The lowest number of hits from Akamai to the end user returning 2XX responses. | |
2XXEdgeHitsSlope | Represents the overall change in the number of URLs returning 2XX responses, a positive number if increasing or a negative number if decreasing. | |
2XXEdgeHitsTotal | The total number of hits from Akamai to the end user returning 2XX responses. | |
3XXEdgeHitsMax | The highest number of hits from Akamai to the end user returning 3XX responses. | |
3XXEdgeHitsMin | The lowest number of hits from Akamai to the end user returning 3XX responses. | |
3XXEdgeHitsSlope | Represents the overall change in the number of URLs returning 3XX responses, a positive number if increasing or a negative number if decreasing. | |
3XXEdgeHitsTotal | The total number of hits from Akamai to the end user returning 3XX responses. | |
4XXEdgeHitsMax | The highest number of hits from Akamai to the end user returning 4XX responses. | |
4XXEdgeHitsMin | The lowest number of hits from Akamai to the end user returning 4XX responses. | |
4XXEdgeHitsSlope | Represents the overall change in the number of URLs returning 4XX responses, a positive number if increasing or a negative number if decreasing. | |
4XXEdgeHitsTotal | The total number of hits from Akamai to the end user returning 4XX responses. | |
allEdgeHitsMax | The highest number of hits from Akamai to the end user. | |
allEdgeHitsMin | The lowest number of hits from Akamai to the end user. | |
allEdgeHitsSlope | Represents the overall change in the number of hits from Akamai to the end user, a positive number if increasing or a negative number if decreasing. | |
allEdgeHitsTotal | The total number of hits from Akamai to the end user. | |
errorEdgeHitsMax | The highest number of hits from Akamai to the end user returning error responses. | |
errorEdgeHitsMin | The lowest number of hits from Akamai to the end user returning error responses. | |
errorEdgeHitsSlope | Represents the overall change in the number of URLs returning error responses, a positive number if increasing or a negative number if decreasing. | |
errorEdgeHitsTotal | The total number of hits from Akamai to the end user returning error responses. | |
successEdgeHitsMax | The highest number of hits from Akamai to the end user returning success responses. | |
successEdgeHitsMin | The lowest number of hits from Akamai to the end user returning success responses. | |
successEdgeHitsSlope | Represents the overall change in the number of URLs returning success responses, a positive number if increasing or a negative number if decreasing. | |
successEdgeHitsTotal | The total number of hits from Akamai to the end user returning success responses. |
Available filters
Filter | Type | Description |
---|---|---|
Optional filters | ||
delivery_type | Enumeration | Distinguishes secure from non-secure traffic. |
secure : Secure traffic. | ||
non_secure : Non-secure traffic. | ||
url_contain | String | URL contains the specified string. |
url_end_with | String | URL ends with the specified string. |
url_exact_match | String | URL is an exact match for the specified string. |
url_match | String | URL matches the specified string. |
url_not_contain | String | URL does not contain the specified string. |
url_not_end_with | String | URL does not end with the specified string. |
url_not_match | String | URL does not match the specified string. |
url_not_start_with | String | URL does not start with the specified string. |
url_start_with | String | URL starts with the specified string. |
The use of negative filters
For this report, the negative filters, such as
url_not_start_with
orurl_not_contain
, use the OR logic, which means you can only use one filter value at a time. Otherwise, the filters may not work in the expected way.
POST request
POST /reporting-api/v1/reports/urlresponses-by-time/versions/1/report-data{?start,end,interval}
Sample: /reporting-api/v1/reports/urlresponses-by-time/versions/1/report-data?start=2020-06-22T00%3A00%3A00Z&end=2020-06-26T00%3A00%3A00Z&interval=DAY
Query parameters
Parameter | Type | Sample | Description |
---|---|---|---|
Required | |||
start | String | 2020-06-22T00:00:00Z | Specifies 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. |
end | String | 2020-06-26T00:00:00Z | Specifies 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. |
interval | Enumeration | DAY | The duration of each data record. Available values: MONTH , WEEK , DAY . |
JSON request members
Member | Type | Description |
---|---|---|
objectIds | Array | Specifies the set of cpcode values you want to report on. |
objectIds | Enumeration | As an alternative to an array of ID values, specify all as a string for unfiltered data. Either way, objectIds is required. |
metrics | Array | The set of desired metrics. If omitted, the report includes all available metrics. |
filters | Map of arrays | Specifies 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": [
"0XXEdgeHitsMax",
"0XXEdgeHitsMin",
"0XXEdgeHitsPerSecond",
"0XXEdgeHitsSlope",
"0XXEdgeHitsTotal",
"2XXEdgeHitsMax",
"2XXEdgeHitsMin",
"2XXEdgeHitsPerSecond",
"2XXEdgeHitsSlope",
"2XXEdgeHitsTotal",
"3XXEdgeHitsMax",
"3XXEdgeHitsMin",
"3XXEdgeHitsPerSecond",
"3XXEdgeHitsSlope",
"3XXEdgeHitsTotal",
"4XXEdgeHitsMax",
"4XXEdgeHitsMin",
"4XXEdgeHitsPerSecond",
"4XXEdgeHitsSlope",
"4XXEdgeHitsTotal",
"allEdgeHitsMax",
"allEdgeHitsMin",
"allEdgeHitsPerSecond",
"allEdgeHitsSlope",
"allEdgeHitsTotal",
"errorEdgeHitsMax",
"errorEdgeHitsMin",
"errorEdgeHitsPerSecond",
"errorEdgeHitsSlope",
"errorEdgeHitsTotal",
"successEdgeHitsMax",
"successEdgeHitsMin",
"successEdgeHitsPerSecond",
"successEdgeHitsSlope",
"successEdgeHitsTotal"
],
"filters": {
"delivery_type": [
"secure",
"non-secure"
],
"url_contain": [
"/shop",
"/about"
],
"url_end_with": [
".html",
".jsp"
],
"url_exact_match": [
"https://www.example.com/shop/index.html",
"https://www.example.com/about/index.html"
],
"url_match": [
"https://www.example.com/shop",
"https://www.example.com/about"
],
"url_not_contain": [
"/blog",
"/contact"
],
"url_not_end_with": [
".doc",
".pdf"
],
"url_not_match": [
"https://www.example.com/blog",
"https://www.example.com/contact"
],
"url_not_start_with": [
"email:",
"ftp:"
],
"url_start_with": [
"http:",
"https:"
]
}
}
GET request
GET /reporting-api/v1/reports/urlresponses-by-time/versions/1/report-data{?start,end,interval,objectIds,allObjectIds,metrics,filters}
Sample: /reporting-api/v1/reports/urlresponses-by-time/versions/1/report-data?start=2020-06-22T00%3A00%3A00Z&end=2020-06-26T00%3A00%3A00Z&interval=DAY&objectIds=55232,23433,32433&metrics=0XXEdgeHitsMax%2C0XXEdgeHitsMin&filters=delivery_type%3Dsecure%2Cdelivery_type%3Dnon-secure%2Curl_contain%3D%2Fshop%2Curl_contain%3D%2Fabout
Query parameters
Parameter | Type | Sample | Description |
---|---|---|---|
Required | |||
start | String | 2022-06-23T13:55:00Z | Specifies 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. |
end | String | 2022-06-23T14:15:00Z | Specifies 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. |
interval | Enumeration | DAY | The duration of each data record. Available values: MONTH , WEEK , DAY . |
Optional | |||
allObjectIds | Boolean | true | As 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. |
objectIds | String | 55232,23433,32433 | As 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. |
metrics | String | 0XXEdgeHitsMax,0XXEdgeHitsMin | Specifies 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. |
filters | String | delivery_type=secure,delivery_type=non-secure,url_contain=/shop,url_contain=/about | Specifies 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": "urlresponses-by-time",
"version": "1",
"outputType": "FLAT",
"groupBy": [
"date_id"
],
"interval": "DAY",
"start": "2020-06-22T00:00:00Z",
"end": "2020-06-26T00:00:00Z",
"availableDataEnds": null,
"suggestedRetryTime": null,
"rowCount": 4,
"filters": [
{
"name": "delivery_type",
"values": [
"secure",
"non-secure"
]
},
{
"name": "url_contain",
"values": [
"/shop",
"/about"
]
},
{
"name": "url_end_with",
"values": [
".html",
".jsp"
]
},
{
"name": "url_exact_match",
"values": [
"https://www.example.com/shop/index.html",
"https://www.example.com/about/index.html"
]
},
{
"name": "url_match",
"values": [
"https://www.example.com/shop",
"https://www.example.com/about"
]
},
{
"name": "url_not_contain",
"values": [
"/blog",
"/contact"
]
},
{
"name": "url_not_end_with",
"values": [
".css",
".js"
]
},
{
"name": "url_not_match",
"values": [
"https://www.example.com/blog",
"https://www.example.com/contact"
]
},
{
"name": "url_not_start_with",
"values": [
"email:",
"ftp:"
]
},
{
"name": "url_start_with",
"values": [
"http:",
"https:"
]
}
],
"columns": [
{
"name": "groupBy",
"label": "date_id"
},
{
"name": "0XXEdgeHitsPerSecond",
"label": "Edge Hits/Sec"
},
{
"name": "2XXEdgeHitsPerSecond",
"label": "Edge Hits/Sec"
},
{
"name": "3XXEdgeHitsPerSecond",
"label": "Edge Hits/Sec"
},
{
"name": "4XXEdgeHitsPerSecond",
"label": "Edge Hits/Sec"
},
{
"name": "allEdgeHitsPerSecond",
"label": "Edge Hits/Sec"
},
{
"name": "errorEdgeHitsPerSecond",
"label": "Edge Hits/Sec"
},
{
"name": "successEdgeHitsPerSecond",
"label": "Edge Hits/Sec"
}
],
"objectType": "cpcode",
"objectIds": [
"55232",
"23433",
"32433"
]
},
"data": [
{
"date_id": "2020-06-22T00:00:00Z",
"0XXEdgeHitsPerSecond": "752.974618",
"2XXEdgeHitsPerSecond": "1122.733158",
"3XXEdgeHitsPerSecond": "89.163764",
"4XXEdgeHitsPerSecond": "3462.01696",
"allEdgeHitsPerSecond": "4048.315763",
"errorEdgeHitsPerSecond": "30.213302",
"successEdgeHitsPerSecond": "1841.448914"
},
{
"date_id": "2020-06-23T00:00:00Z",
"0XXEdgeHitsPerSecond": "3174.055685",
"2XXEdgeHitsPerSecond": "3474.401377",
"3XXEdgeHitsPerSecond": "1830.389924",
"4XXEdgeHitsPerSecond": "553.731258",
"allEdgeHitsPerSecond": "4962.990408",
"errorEdgeHitsPerSecond": "1331.584856",
"successEdgeHitsPerSecond": "2942.371519"
},
{
"date_id": "2020-06-24T00:00:00Z",
"0XXEdgeHitsPerSecond": "1857.396603",
"2XXEdgeHitsPerSecond": "640.088238",
"3XXEdgeHitsPerSecond": "4291.378973",
"4XXEdgeHitsPerSecond": "1928.280603",
"allEdgeHitsPerSecond": "2847.741603",
"errorEdgeHitsPerSecond": "1304.878006",
"successEdgeHitsPerSecond": "2685.066786"
},
{
"date_id": "2020-06-25T00:00:00Z",
"0XXEdgeHitsPerSecond": "3772.42924",
"2XXEdgeHitsPerSecond": "1794.2131",
"3XXEdgeHitsPerSecond": "781.843853",
"4XXEdgeHitsPerSecond": "4888.22771",
"allEdgeHitsPerSecond": "437.360105",
"errorEdgeHitsPerSecond": "179.63945",
"successEdgeHitsPerSecond": "245.304632"
}
],
"summaryStatistics": {
"0XXEdgeHitsMax": {
"value": "2065.477882",
"details": {}
},
"0XXEdgeHitsMin": {
"value": "158.741087",
"details": {}
},
"0XXEdgeHitsSlope": {
"value": "3289",
"details": {}
},
"0XXEdgeHitsTotal": {
"value": "3794",
"details": {}
},
"2XXEdgeHitsMax": {
"value": "603.206162",
"details": {}
},
"2XXEdgeHitsMin": {
"value": "1360.145246",
"details": {}
},
"2XXEdgeHitsSlope": {
"value": "2604",
"details": {}
},
"2XXEdgeHitsTotal": {
"value": "4944",
"details": {}
},
"3XXEdgeHitsMax": {
"value": "4136.915404",
"details": {}
},
"3XXEdgeHitsMin": {
"value": "1280.120555",
"details": {}
},
"3XXEdgeHitsSlope": {
"value": "3227",
"details": {}
},
"3XXEdgeHitsTotal": {
"value": "4569",
"details": {}
},
"4XXEdgeHitsMax": {
"value": "2345.694486",
"details": {}
},
"4XXEdgeHitsMin": {
"value": "4110.296232",
"details": {}
},
"4XXEdgeHitsSlope": {
"value": "1600",
"details": {}
},
"4XXEdgeHitsTotal": {
"value": "4322",
"details": {}
},
"allEdgeHitsMax": {
"value": "4041.112518",
"details": {}
},
"allEdgeHitsMin": {
"value": "4639.120041",
"details": {}
},
"allEdgeHitsSlope": {
"value": "2176",
"details": {}
},
"allEdgeHitsTotal": {
"value": "977",
"details": {}
},
"errorEdgeHitsMax": {
"value": "1166.982884",
"details": {}
},
"errorEdgeHitsMin": {
"value": "1951.297014",
"details": {}
},
"errorEdgeHitsSlope": {
"value": "1148",
"details": {}
},
"errorEdgeHitsTotal": {
"value": "377",
"details": {}
},
"successEdgeHitsMax": {
"value": "618.743759",
"details": {}
},
"successEdgeHitsMin": {
"value": "4145.201133",
"details": {}
},
"successEdgeHitsSlope": {
"value": "2857",
"details": {}
},
"successEdgeHitsTotal": {
"value": "4216",
"details": {}
}
}
}
CSV response
Status 200 text/csv
Response Body:
#METADATA_START
name,urlresponses-by-time
version,1
source,urlresponses-by-time/versions/1
groupBy,date_id
start,2020-06-22T00:00:00Z
end,2020-06-26T00:00:00Z
interval,`DAY`
availableDataEnds,
suggestedRetryTime,
rowCount,4
objectType,cpcode
objectIds,55232,23433,32433
delivery_type,secure,non-secure
url_contain,/shop,/about
url_end_with,.html,.jsp
url_exact_match,https://www.example.com/shop/index.html,https://www.example.com/about/index.html
url_match,https://www.example.com/shop,https://www.example.com/about
url_not_contain,/blog,/contact
url_not_end_with,.css,.js
url_not_match,https://www.example.com/blog,https://www.example.com/contact
url_not_start_with,email:,ftp:
url_start_with,http:,https:
#METADATA_END
#SUMMARYSTATISTICS_START
0XXEdgeHitsMax,2065.477882
0XXEdgeHitsMin,158.741087
0XXEdgeHitsSlope,3289
0XXEdgeHitsTotal,3794
2XXEdgeHitsMax,603.206162
2XXEdgeHitsMin,1360.145246
2XXEdgeHitsSlope,2604
2XXEdgeHitsTotal,4944
3XXEdgeHitsMax,4136.915404
3XXEdgeHitsMin,1280.120555
3XXEdgeHitsSlope,3227
3XXEdgeHitsTotal,4569
4XXEdgeHitsMax,2345.694486
4XXEdgeHitsMin,4110.296232
4XXEdgeHitsSlope,1600
4XXEdgeHitsTotal,4322
allEdgeHitsMax,4041.112518
allEdgeHitsMin,4639.120041
allEdgeHitsSlope,2176
allEdgeHitsTotal,977
errorEdgeHitsMax,1166.982884
errorEdgeHitsMin,1951.297014
errorEdgeHitsSlope,1148
errorEdgeHitsTotal,377
successEdgeHitsMax,618.743759
successEdgeHitsMin,4145.201133
successEdgeHitsSlope,2857
successEdgeHitsTotal,4216
#SUMMARYSTATISTICS_END
#COLUMNS_START
date_id,0XXEdgeHitsPerSecond,2XXEdgeHitsPerSecond,3XXEdgeHitsPerSecond,4XXEdgeHitsPerSecond,allEdgeHitsPerSecond,errorEdgeHitsPerSecond,successEdgeHitsPerSecond
#COLUMNS_END
#DATA_START
2020-06-22T00:00:00Z,752.974618,1122.733158,89.163764,3462.01696,4048.315763,30.213302,1841.448914
2020-06-23T00:00:00Z,3174.055685,3474.401377,1830.389924,553.731258,4962.990408,1331.584856,2942.371519
2020-06-24T00:00:00Z,1857.396603,640.088238,4291.378973,1928.280603,2847.741603,1304.878006,2685.066786
2020-06-25T00:00:00Z,3772.42924,1794.2131,781.843853,4888.22771,437.360105,179.63945,245.304632
#DATA_END
Get report details
This sample Get a report type operation gets the same information you need to run the urlresponses-by-time
report as provided in this reference documentation, but available dynamically to your API client application.
GET /reporting-api/v1/reports/urlresponses-by-time/versions/1
Status 200 application/json
Response body:
{
"name": "urlresponses-by-time",
"description": "Returns URL data by response class over time.",
"businessObjectName": "cpcode",
"version": 1,
"status": "PUBLISHED",
"deprecated": false,
"timeBased": true,
"outputType": "FLAT",
"requiredProducts": [
"Basic Traffic Reports"
],
"requiredRoles": [
"Reports - All privileges",
"Reports - View only",
"OTA App User"
],
"available": true,
"metrics": [
{
"name": "0XXEdgeHitsMax",
"description": "The highest number of hits from Akamai to the end user returning 0XX responses.",
"label": "Edge Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "0XXEdgeHitsMin",
"description": "The lowest number of hits from Akamai to the end user returning 0XX responses.",
"label": "Edge Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "0XXEdgeHitsPerSecond",
"description": "The rate of hits from Akamai to the end user returning 0XX responses.",
"label": "Edge Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "0XXEdgeHitsSlope",
"description": "Represents the overall change in the number of URLs returning 0XX responses, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "0XXEdgeHitsTotal",
"description": "The total number of hits from Akamai to the end user returning 0XX responses.",
"label": "Total Edge Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "2XXEdgeHitsMax",
"description": "The highest number of hits from Akamai to the end user returning 2XX responses.",
"label": "Edge Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "2XXEdgeHitsMin",
"description": "The lowest number of hits from Akamai to the end user returning 2XX responses.",
"label": "Edge Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "2XXEdgeHitsPerSecond",
"description": "The rate of hits from Akamai to the end user returning 2XX responses.",
"label": "Edge Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "2XXEdgeHitsSlope",
"description": "Represents the overall change in the number of URLs returning 2XX responses, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "2XXEdgeHitsTotal",
"description": "The total number of hits from Akamai to the end user returning 2XX responses.",
"label": "Total Edge Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "3XXEdgeHitsMax",
"description": "The highest number of hits from Akamai to the end user returning 3XX responses.",
"label": "Edge Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "3XXEdgeHitsMin",
"description": "The lowest number of hits from Akamai to the end user returning 3XX responses.",
"label": "Edge Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "3XXEdgeHitsPerSecond",
"description": "The rate of hits from Akamai to the end user returning 3XX responses.",
"label": "Edge Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "3XXEdgeHitsSlope",
"description": "Represents the overall change in the number of URLs returning 3XX responses, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "3XXEdgeHitsTotal",
"description": "The total number of hits from Akamai to the end user returning 3XX responses.",
"label": "Total Edge Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "4XXEdgeHitsMax",
"description": "The highest number of hits from Akamai to the end user returning 4XX responses.",
"label": "Edge Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "4XXEdgeHitsMin",
"description": "The lowest number of hits from Akamai to the end user returning 4XX responses.",
"label": "Edge Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "4XXEdgeHitsPerSecond",
"description": "The rate of hits from Akamai to the end user returning 4XX responses.",
"label": "Edge Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "4XXEdgeHitsSlope",
"description": "Represents the overall change in the number of URLs returning 4XX responses, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "4XXEdgeHitsTotal",
"description": "The total number of hits from Akamai to the end user returning 4XX responses.",
"label": "Total Edge Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "allEdgeHitsMax",
"description": "The highest number of hits from Akamai to the end user.",
"label": "Edge Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "allEdgeHitsMin",
"description": "The lowest number of hits from Akamai to the end user.",
"label": "Edge Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "allEdgeHitsPerSecond",
"description": "The rate of hits from Akamai to the end user.",
"label": "Edge Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "allEdgeHitsSlope",
"description": "Represents the overall change in the number of hits from Akamai to the end user, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "allEdgeHitsTotal",
"description": "The total number of hits from Akamai to the end user.",
"label": "Total Edge Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "errorEdgeHitsMax",
"description": "The highest number of hits from Akamai to the end user returning error responses.",
"label": "Edge Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "errorEdgeHitsMin",
"description": "The lowest number of hits from Akamai to the end user returning error responses.",
"label": "Edge Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "errorEdgeHitsPerSecond",
"description": "The rate of hits from Akamai to the end user returning error responses.",
"label": "Edge Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "errorEdgeHitsSlope",
"description": "Represents the overall change in the number of URLs returning error responses, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "errorEdgeHitsTotal",
"description": "The total number of hits from Akamai to the end user returning error responses.",
"label": "Total Edge Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "successEdgeHitsMax",
"description": "The highest number of hits from Akamai to the end user returning success responses.",
"label": "Edge Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "successEdgeHitsMin",
"description": "The lowest number of hits from Akamai to the end user returning success responses.",
"label": "Edge Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "successEdgeHitsPerSecond",
"description": "The rate of hits from Akamai to the end user returning success responses.",
"label": "Edge Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "successEdgeHitsSlope",
"description": "Represents the overall change in the number of URLs returning success responses, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "successEdgeHitsTotal",
"description": "The total number of hits from Akamai to the end user returning success responses.",
"label": "Total Edge Hits",
"unit": "COUNT",
"summaryStatistic": true
}
],
"groupOutlyingValues": {
"enabled": false
},
"groupBy": [
"date_id"
],
"filters": [
{
"name": "url_exact_match",
"type": "string",
"description": "URL is an exact match for the specified string.",
"required": false
},
{
"name": "url_not_end_with",
"type": "string",
"description": "URL does not end with the specified string.",
"required": false
},
{
"name": "url_contain",
"type": "string",
"description": "URL contains the specified string.",
"required": false
},
{
"name": "url_end_with",
"type": "string",
"description": "URL ends with the specified string. ",
"required": false
},
{
"name": "url_match",
"type": "string",
"description": "URL matches the specified string.",
"required": false
},
{
"name": "url_not_contain",
"type": "string",
"description": "URL does not contain the specified string.",
"required": false
},
{
"name": "url_not_start_with",
"type": "string",
"description": "URL does not start with the specified string.",
"required": false
},
{
"name": "url_start_with",
"type": "string",
"description": "URL starts with the specified string.",
"required": false
},
{
"name": "url_not_match",
"type": "string",
"description": "URL does not match 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"
],
"dataRetentionDays": 92,
"links": [
{
"rel": "self",
"href": "/reporting-api/v1/reports/urlresponses-by-time/versions/1"
},
{
"rel": "versions",
"href": "/reporting-api/v1/reports/urlresponses-by-time/versions"
},
{
"rel": "all-reports",
"href": "/reporting-api/v1/reports"
},
{
"rel": "execute-report",
"href": "/reporting-api/v1/reports/urlresponses-by-time/versions/1/report-data"
}
]
}