The following shows how to generate the todaytraffic-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 hits, volume, bandwidth, and offload data for the most recent 48 hours. The aggregation interval may be either FIVE_MINUTES, HOUR, or DAY.
This report allows you to configure the aggregation interval for each data record. Available interval
values are: MONTH
, WEEK
, DAY
, HOUR
, FIVE_MINUTES
.
If you use China CDN and want to monitor the offload metrics, use the new delivery/traffic/current report in the API v2.
Business object: cpcode
Data available for: 3 days
Available metrics
Metric | Description |
---|---|
Data metrics | |
bytesOffload | The volume that was served by Akamai as a percentage of total volume served for given objects and filters. |
edgeBitsPerSecond | The edge bandwidth for given objects and filters. |
edgeHitsPerSecond | The number of edge requests per second for given objects and filters. |
hitsOffload | The number of hits that Akamai served as a percentage of total hits served for given objects and filters. |
midgressBitsPerSecond | The bandwidth between Akamai servers for given objects and filters. |
midgressHitsPerSecond | The number of requests between Akamai servers per second for given objects and filters. |
originBitsPerSecond | The origin bandwidth for given objects and filters. |
originHitsPerSecond | The number of origin requests per second for given objects and filters. |
Summary metrics | |
bytesOffloadAvg | The average number of bytes that Akamai served as a percentage of total hits served for given objects and filters. |
bytesOffloadMax | The peak volume that was served by Akamai as a percentage of total volume served for given objects and filters. |
bytesOffloadMin | The lowest volume that was served by Akamai as a percentage of total volume served for given objects and filters. |
bytesOffloadSlope | Represents the overall change in volume that was served by Akamai as a percentage of total volume served for the given objects and filters, a positive number if increasing or a negative number if decreasing. |
bytesOffloadTotal | Bytes offload total. |
edgeBitsPerSecondMax | The peak edge bandwidth for given objects and filters. |
edgeBitsPerSecondMin | The lowest edge bandwidth for given objects and filters. |
edgeBytesSlope | Represents the overall change in volume for edge traffic for given objects and filters, a positive number if increasing or a negative number if decreasing. |
edgeBytesTotal | The total volume of edge traffic for given objects and filters. |
edgeHitsPerSecondMax | The peak number of edge requests per second for given objects and filters. |
edgeHitsPerSecondMin | The lowest number of edge requests per second for given objects and filters. |
edgeHitsSlope | 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. |
edgeHitsTotal | The total number of edge requests for given objects and filters. |
hitsOffloadAvg | The average number of hits that Akamai served as a percentage of total hits served for given objects and filters. |
hitsOffloadMax | The peak number of hits that Akamai served as a percentage of total hits served for given objects and filters. |
hitsOffloadMin | The lowest number of hits that Akamai served as a percentage of total hits served for given objects and filters. |
hitsOffloadSlope | The overall change in number of hits that were served by Akamai as a percentage of total hits served for given objects and filters, a positive number if increasing or a negative number if decreasing. |
hitsOffloadTotal | Hits offload total. |
midgressBitsPerSecondMax | The peak bandwidth measurement between Akamai servers for given objects and filters. |
midgressBitsPerSecondMin | The lowest bandwidth measurement between Akamai servers for given objects and filters. |
midgressBytesSlope | Represents the overall change in traffic volume between Akamai servers over time for given objects and filters, a positive number if increasing or a negative number if decreasing. |
midgressBytesTotal | The total volume for the amount of internal API traffic exchanged between Akamai edge servers. |
midgressHitsPerSecondMax | The peak number of requests between Akamai servers per second for given objects and filters. |
midgressHitsPerSecondMin | The lowest number of requests between Akamai servers per second for given objects and filters. |
midgressHitsSlope | Represents the overall change in traffic volume between Akamai servers over time for given objects and filters, a positive number if increasing or a negative number if decreasing. |
midgressHitsTotal | All hits with all response codes delivered from Akamai’s Tiered Distribution network, that is bytes served from the Akamai Tiered Distribution infrastructure to edge servers. |
originBitsPerSecondMax | The peak origin bandwidth for given objects and filters. |
originBitsPerSecondMin | The lowest origin bandwidth for given objects and filters. |
originBytesSlope | Represents the overall change in origin traffic volume over time for given objects and filters, a positive number if increasing or a negative number if decreasing. |
originBytesTotal | The total volume of origin traffic for given objects and filters. |
originHitsPerSecondMax | The peak number of origin requests per second for given objects and filters. |
originHitsPerSecondMin | The lowest number of origin requests per second for given objects and filters. |
originHitsSlope | Represents the overall change in the number of requests to origin over time for given objects and filters, a positive number if increasing or a negative number if decreasing. |
originHitsTotal | The total number of origin requests for given objects and filters. |
Available filters
Filter | Type | Description |
---|---|---|
Optional filters | ||
response_class | Enumeration | A 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_status | Enumeration | An indicator of whether the HTTP response resulted in success or an error. |
success : Successful HTTP response status. | ||
error : Error HTTP response status. |
POST request
POST /reporting-api/v1/reports/todaytraffic-by-time/versions/1/report-data{?start,end,interval}
Sample: /reporting-api/v1/reports/todaytraffic-by-time/versions/1/report-data?start=2022-07-19T13%3A55%3A00Z&end=2022-07-19T14%3A15%3A00Z&interval=FIVE_MINUTES
For other granularity, you need to adjust start and end dates:
Sample with longer interval: /reporting-api/v1/reports/todaytraffic-by-time/versions/1/report-data?start=2022-03-01&end=2022-07-01&interval=MONTH
Query parameters
Parameter | Type | Sample | Description |
---|---|---|---|
Required | |||
start | String | 2022-07-19T13: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-07-19T14: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 | FIVE_MINUTES | The duration of each data record. Available values: MONTH , WEEK , DAY , HOUR , FIVE_MINUTES . |
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": [
"bytesOffload",
"bytesOffloadAvg",
"bytesOffloadMax",
"bytesOffloadMin",
"bytesOffloadSlope",
"bytesOffloadTotal",
"edgeBitsPerSecond",
"edgeBitsPerSecondMax",
"edgeBitsPerSecondMin",
"edgeBytesSlope",
"edgeBytesTotal",
"edgeHitsPerSecond",
"edgeHitsPerSecondMax",
"edgeHitsPerSecondMin",
"edgeHitsSlope",
"edgeHitsTotal",
"hitsOffload",
"hitsOffloadAvg",
"hitsOffloadMax",
"hitsOffloadMin",
"hitsOffloadSlope",
"hitsOffloadTotal",
"midgressBitsPerSecond",
"midgressBitsPerSecondMax",
"midgressBitsPerSecondMin",
"midgressBytesSlope",
"midgressBytesTotal",
"midgressHitsPerSecond",
"midgressHitsPerSecondMax",
"midgressHitsPerSecondMin",
"midgressHitsSlope",
"midgressHitsTotal",
"originBitsPerSecond",
"originBitsPerSecondMax",
"originBitsPerSecondMin",
"originBytesSlope",
"originBytesTotal",
"originHitsPerSecond",
"originHitsPerSecondMax",
"originHitsPerSecondMin",
"originHitsSlope",
"originHitsTotal"
],
"filters": {
"response_class": [
"1xx",
"5xx"
],
"response_status": [
"success",
"error"
]
}
}
GET request
GET /reporting-api/v1/reports/todaytraffic-by-time/versions/1/report-data{?start,end,interval,objectIds,allObjectIds,metrics,filters}
Sample: /reporting-api/v1/reports/todaytraffic-by-time/versions/1/report-data?start=2022-07-19T13%3A55%3A00Z&end=2022-07-19T14%3A15%3A00Z&interval=FIVE_MINUTES&objectIds=55232,23433,32433&metrics=bytesOffload%2CbytesOffloadAvg&filters=response_class%3D0xx%2Cresponse_class%3D3xx%2Cresponse_status%3Dsuccess%2Cresponse_status%3Derror
Query parameters
Parameter | Type | Sample | Description |
---|---|---|---|
Required | |||
start | String | 2022-07-19T13: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-07-19T14: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 | FIVE_MINUTES | The duration of each data record. Available values: MONTH , WEEK , DAY , HOUR , FIVE_MINUTES . |
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 | bytesOffload,bytesOffloadAvg | 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 | response_class=0xx,response_class=3xx,response_status=success,response_status=error | 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": "todaytraffic-by-time",
"version": "1",
"outputType": "FLAT",
"groupBy": [
"startdatetime"
],
"interval": "FIVE_MINUTES",
"start": "2022-07-19T13:55:00Z",
"end": "2022-07-19T14:15:00Z",
"availableDataEnds": null,
"suggestedRetryTime": null,
"rowCount": 4,
"filters": [
{
"name": "response_class",
"values": [
"5xx",
"2xx"
]
},
{
"name": "response_status",
"values": [
"success",
"error"
]
}
],
"columns": [
{
"name": "groupBy",
"label": "startdatetime"
},
{
"name": "bytesOffload",
"label": "Offloaded Bytes"
},
{
"name": "edgeBitsPerSecond",
"label": "Edge Bits/Sec"
},
{
"name": "edgeHitsPerSecond",
"label": "Edge Hits/Sec"
},
{
"name": "hitsOffload",
"label": "Offloaded Hits"
},
{
"name": "midgressBitsPerSecond",
"label": "Midgress Bits/Sec"
},
{
"name": "midgressHitsPerSecond",
"label": "Midgress Hits/Sec"
},
{
"name": "originBitsPerSecond",
"label": "Origin Bits/Sec"
},
{
"name": "originHitsPerSecond",
"label": "Origin Hits/Sec"
}
],
"objectType": "cpcode",
"objectIds": [
"55232",
"23433",
"32433"
]
},
"data": [
{
"startdatetime": "2022-07-19T13:55:00Z",
"bytesOffload": "2",
"edgeBitsPerSecond": "3697.654203",
"edgeHitsPerSecond": "939.626666",
"hitsOffload": "45",
"midgressBitsPerSecond": "1193.702202",
"midgressHitsPerSecond": "2024.846592",
"originBitsPerSecond": "347.20537",
"originHitsPerSecond": "2281.462881"
},
{
"startdatetime": "2022-07-19T14:00:00Z",
"bytesOffload": "60",
"edgeBitsPerSecond": "2636.024185",
"edgeHitsPerSecond": "843.019669",
"hitsOffload": "20",
"midgressBitsPerSecond": "706.934753",
"midgressHitsPerSecond": "4469.72415",
"originBitsPerSecond": "2009.615491",
"originHitsPerSecond": "4622.894145"
},
{
"startdatetime": "2022-07-19T14:05:00Z",
"bytesOffload": "38",
"edgeBitsPerSecond": "2843.18606",
"edgeHitsPerSecond": "1160.333828",
"hitsOffload": "40",
"midgressBitsPerSecond": "4872.779176",
"midgressHitsPerSecond": "3842.811155",
"originBitsPerSecond": "1211.391262",
"originHitsPerSecond": "4773.674859"
},
{
"startdatetime": "2022-07-19T14:10:00Z",
"bytesOffload": "55",
"edgeBitsPerSecond": "1670.40304",
"edgeHitsPerSecond": "2314.411044",
"hitsOffload": "67",
"midgressBitsPerSecond": "1327.014339",
"midgressHitsPerSecond": "777.997989",
"originBitsPerSecond": "3847.250706",
"originHitsPerSecond": "4078.062046"
}
],
"summaryStatistics": {
"bytesOffloadAvg": {
"value": "89",
"details": {}
},
"bytesOffloadMax": {
"value": "80",
"details": {}
},
"bytesOffloadMin": {
"value": "9",
"details": {}
},
"bytesOffloadSlope": {
"value": "2334",
"details": {}
},
"bytesOffloadTotal": {
"value": "84",
"details": {}
},
"edgeBitsPerSecondMax": {
"value": "4745.136122",
"details": {}
},
"edgeBitsPerSecondMin": {
"value": "1817.376296",
"details": {}
},
"edgeBytesSlope": {
"value": "628",
"details": {}
},
"edgeBytesTotal": {
"value": "2071",
"details": {}
},
"edgeHitsPerSecondMax": {
"value": "3317.52711",
"details": {}
},
"edgeHitsPerSecondMin": {
"value": "3765.367873",
"details": {}
},
"edgeHitsSlope": {
"value": "3770",
"details": {}
},
"edgeHitsTotal": {
"value": "762",
"details": {}
},
"hitsOffloadAvg": {
"value": "22",
"details": {}
},
"hitsOffloadMax": {
"value": "42",
"details": {}
},
"hitsOffloadMin": {
"value": "79",
"details": {}
},
"hitsOffloadSlope": {
"value": "4064",
"details": {}
},
"hitsOffloadTotal": {
"value": "59",
"details": {}
},
"midgressBitsPerSecondMax": {
"value": "3001.838216",
"details": {}
},
"midgressBitsPerSecondMin": {
"value": "634.90279",
"details": {}
},
"midgressBytesSlope": {
"value": "4237",
"details": {}
},
"midgressBytesTotal": {
"value": "2735",
"details": {}
},
"midgressHitsPerSecondMax": {
"value": "4174.687567",
"details": {}
},
"midgressHitsPerSecondMin": {
"value": "3074.452739",
"details": {}
},
"midgressHitsSlope": {
"value": "1589",
"details": {}
},
"midgressHitsTotal": {
"value": "113",
"details": {}
},
"originBitsPerSecondMax": {
"value": "3929.737578",
"details": {}
},
"originBitsPerSecondMin": {
"value": "477.591652",
"details": {}
},
"originBytesSlope": {
"value": "3514",
"details": {}
},
"originBytesTotal": {
"value": "2272",
"details": {}
},
"originHitsPerSecondMax": {
"value": "3527.913361",
"details": {}
},
"originHitsPerSecondMin": {
"value": "4200.47706",
"details": {}
},
"originHitsSlope": {
"value": "1239",
"details": {}
},
"originHitsTotal": {
"value": "3424",
"details": {}
}
}
}
CSV response
Status 200 text/csv
Response Body:
#METADATA_START
name,todaytraffic-by-time
version,1
source,todaytraffic-by-time/versions/1
groupBy,startdatetime
start,2022-07-19T13:55:00Z
end,2022-07-19T14:15:00Z
interval,`FIVE_MINUTES`
availableDataEnds,
suggestedRetryTime,
rowCount,4
objectType,cpcode
objectIds,55232,23433,32433
response_class,5xx,2xx
response_status,success,error
#METADATA_END
#SUMMARYSTATISTICS_START
bytesOffloadAvg,89
bytesOffloadMax,80
bytesOffloadMin,9
bytesOffloadSlope,2334
bytesOffloadTotal,84
edgeBitsPerSecondMax,4745.136122
edgeBitsPerSecondMin,1817.376296
edgeBytesSlope,628
edgeBytesTotal,2071
edgeHitsPerSecondMax,3317.52711
edgeHitsPerSecondMin,3765.367873
edgeHitsSlope,3770
edgeHitsTotal,762
hitsOffloadAvg,22
hitsOffloadMax,42
hitsOffloadMin,79
hitsOffloadSlope,4064
hitsOffloadTotal,59
midgressBitsPerSecondMax,3001.838216
midgressBitsPerSecondMin,634.90279
midgressBytesSlope,4237
midgressBytesTotal,2735
midgressHitsPerSecondMax,4174.687567
midgressHitsPerSecondMin,3074.452739
midgressHitsSlope,1589
midgressHitsTotal,113
originBitsPerSecondMax,3929.737578
originBitsPerSecondMin,477.591652
originBytesSlope,3514
originBytesTotal,2272
originHitsPerSecondMax,3527.913361
originHitsPerSecondMin,4200.47706
originHitsSlope,1239
originHitsTotal,3424
#SUMMARYSTATISTICS_END
#COLUMNS_START
startdatetime,bytesOffload,edgeBitsPerSecond,edgeHitsPerSecond,hitsOffload,midgressBitsPerSecond,midgressHitsPerSecond,originBitsPerSecond,originHitsPerSecond
#COLUMNS_END
#DATA_START
2022-07-19T13:55:00Z,2,3697.654203,939.626666,45,1193.702202,2024.846592,347.20537,2281.462881
2022-07-19T14:00:00Z,60,2636.024185,843.019669,20,706.934753,4469.72415,2009.615491,4622.894145
2022-07-19T14:05:00Z,38,2843.18606,1160.333828,40,4872.779176,3842.811155,1211.391262,4773.674859
2022-07-19T14:10:00Z,55,1670.40304,2314.411044,67,1327.014339,777.997989,3847.250706,4078.062046
#DATA_END
Get report details
This sample Get a report type operation gets the same information you need to run the todaytraffic-by-time
report as provided in this reference documentation, but available dynamically to your API client application.
GET /reporting-api/v1/reports/todaytraffic-by-time/versions/1
Status 200 application/json
Response body:
{
"name": "todaytraffic-by-time",
"description": "Provides hits, volume, bandwidth, and offload data for the most recent 48 hours. The aggregation interval may be either FIVE_MINUTES, HOUR, or DAY.",
"businessObjectName": "cpcode",
"version": 1,
"status": "PUBLISHED",
"deprecated": false,
"timeBased": true,
"supportsPagination": false,
"outputType": "FLAT",
"requiredProducts": [
"Basic Traffic Reports"
],
"requiredRoles": [
"Reports - All privileges ",
"Reports - View only",
"OTA App User"
],
"available": true,
"metrics": [
{
"name": "bytesOffload",
"description": "The volume that was served by Akamai as a percentage of total volume served for given objects and filters.",
"label": "Offloaded Bytes",
"unit": "RATIO",
"summaryStatistic": false
},
{
"name": "bytesOffloadAvg",
"description": "The average number of bytes that Akamai served as a percentage of total hits served for given objects and filters.",
"label": "Average Bytes Offload",
"unit": "RATIO",
"summaryStatistic": true
},
{
"name": "bytesOffloadMax",
"description": "The peak volume that was served by Akamai as a percentage of total volume served for given objects and filters.",
"label": "Bytes Offload Maximum",
"unit": "RATIO",
"summaryStatistic": true
},
{
"name": "bytesOffloadMin",
"description": "The lowest volume that was served by Akamai as a percentage of total volume served for given objects and filters.",
"label": "Bytes Offload Minimum",
"unit": "RATIO",
"summaryStatistic": true
},
{
"name": "bytesOffloadSlope",
"description": "Represents the overall change in volume that was served by Akamai as a percentage of total volume served for the given objects and filters, a positive number if increasing or a negative number if decreasing.",
"label": "Bytes Offload Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "edgeBitsPerSecond",
"description": "The edge bandwidth for given objects and filters.",
"label": "Edge Bits/Sec",
"unit": "BIT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "edgeBitsPerSecondMax",
"description": "The peak edge bandwidth for given objects and filters.",
"label": "Edge Bits/Sec Maximum",
"unit": "BIT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "edgeBitsPerSecondMin",
"description": "The lowest edge bandwidth for given objects and filters.",
"label": "Edge Bits/Sec Minimum",
"unit": "BIT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "edgeBytesSlope",
"description": "Represents the overall change in volume for edge traffic for given objects and filters, a positive number if increasing or a negative number if decreasing.",
"label": "Edge Bytes Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "edgeBytesTotal",
"description": "The total volume of edge traffic for given objects and filters.",
"label": "Total Edge Bytes",
"unit": "BYTE",
"summaryStatistic": true
},
{
"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": "hitsOffload",
"description": "The number of hits that Akamai served as a percentage of total hits served for given objects and filters.",
"label": "Offloaded Hits",
"unit": "RATIO",
"summaryStatistic": false
},
{
"name": "hitsOffloadAvg",
"description": "The average number of hits that Akamai served as a percentage of total hits served for given objects and filters.",
"label": "Average Hits Offload",
"unit": "RATIO",
"summaryStatistic": true
},
{
"name": "hitsOffloadMax",
"description": "The peak number of hits that Akamai served as a percentage of total hits served for given objects and filters.",
"label": "Hits Offload Maximum",
"unit": "RATIO",
"summaryStatistic": true
},
{
"name": "hitsOffloadMin",
"description": "The lowest number of hits that Akamai served as a percentage of total hits served for given objects and filters.",
"label": "Hits Offload Minimum",
"unit": "RATIO",
"summaryStatistic": true
},
{
"name": "hitsOffloadSlope",
"description": "The overall change in number of hits that were served by Akamai as a percentage of total hits served for given objects and filters, a positive number if increasing or a negative number if decreasing.",
"label": "Hits Offload Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "midgressBitsPerSecond",
"description": "The bandwidth between Akamai servers for given objects and filters.",
"label": "Midgress Bits/Sec",
"unit": "BIT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "midgressBitsPerSecondMax",
"description": "The peak bandwidth measurement between Akamai servers for given objects and filters.",
"label": "Midgress Bits/Sec Maximum",
"unit": "BIT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "midgressBitsPerSecondMin",
"description": "The lowest bandwidth measurement between Akamai servers for given objects and filters.",
"label": "Midgress Bits/Sec Minimum",
"unit": "BIT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "midgressBytesSlope",
"description": "Represents the overall change in traffic volume between Akamai servers over time for given objects and filters, a positive number if increasing or a negative number if decreasing.",
"label": "Midgress Bytes Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "midgressBytesTotal",
"description": "The total volume for the amount of internal API traffic exchanged between Akamai edge servers.",
"label": "Total Midgress Bytes",
"unit": "BYTE",
"summaryStatistic": true
},
{
"name": "midgressHitsPerSecond",
"description": "The number of requests between Akamai servers per second for given objects and filters.",
"label": "Midgress Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "midgressHitsPerSecondMax",
"description": "The peak number of requests between Akamai servers per second for given objects and filters.",
"label": "Midgress Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "midgressHitsPerSecondMin",
"description": "The lowest number of requests between Akamai servers per second for given objects and filters.",
"label": "Midgress Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "midgressHitsSlope",
"description": "Represents the overall change in traffic volume between Akamai servers over time for given objects and filters, a positive number if increasing or a negative number if decreasing.",
"label": "Midgress Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "midgressHitsTotal",
"description": "All hits with all response codes delivered from Akamai’s Tiered Distribution network, that is bytes served from the Akamai Tiered Distribution infrastructure to edge servers.",
"label": "Total Midgress Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "originBitsPerSecond",
"description": "The origin bandwidth for given objects and filters.",
"label": "Origin Bits/Sec",
"unit": "BIT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "originBitsPerSecondMax",
"description": "The peak origin bandwidth for given objects and filters.",
"label": "Origin Bits/Sec Maximum",
"unit": "BIT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "originBitsPerSecondMin",
"description": "The lowest origin bandwidth for given objects and filters.",
"label": "Origin Bits/Sec Minimum",
"unit": "BIT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "originBytesSlope",
"description": "Represents the overall change in origin traffic volume over time for given objects and filters, a positive number if increasing or a negative number if decreasing.",
"label": "Origin Bytes Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "originBytesTotal",
"description": "The total volume of origin traffic for given objects and filters.",
"label": "Total Origin Bytes",
"unit": "BYTE",
"summaryStatistic": true
},
{
"name": "originHitsPerSecond",
"description": "The number of origin requests per second for given objects and filters.",
"label": "Origin Hits/Sec",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": false
},
{
"name": "originHitsPerSecondMax",
"description": "The peak number of origin requests per second for given objects and filters.",
"label": "Origin Hits/Sec Maximum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "originHitsPerSecondMin",
"description": "The lowest number of origin requests per second for given objects and filters.",
"label": "Origin Hits/Sec Minimum",
"unit": "COUNT_PER_SECOND",
"summaryStatistic": true
},
{
"name": "originHitsSlope",
"description": "Represents the overall change in the number of requests to origin over time for given objects and filters, a positive number if increasing or a negative number if decreasing.",
"label": "Origin Hits Slope",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "originHitsTotal",
"description": "The total number of origin requests for given objects and filters.",
"label": "Total Origin Hits",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "hitsOffloadTotal",
"description": "Hits offload total.",
"label": "Hits Offload Total",
"unit": "RATIO",
"summaryStatistic": true
},
{
"name": "bytesOffloadTotal",
"description": "Bytes offload total.",
"label": "Bytes Offload Total",
"unit": "RATIO",
"summaryStatistic": true
}
],
"groupOutlyingValues": {
"enabled": false
},
"groupBy": [
"startdatetime"
],
"filters": [
{
"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": "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
}
],
"intervals": [
"MONTH",
"WEEK",
"DAY",
"HOUR",
"FIVE_MINUTES"
],
"dataRetentionDays": 3,
"links": [
{
"rel": "self",
"href": "/reporting-api/v1/reports/todaytraffic-by-time/versions/1"
},
{
"rel": "versions",
"href": "/reporting-api/v1/reports/todaytraffic-by-time/versions"
},
{
"rel": "all-reports",
"href": "/reporting-api/v1/reports"
},
{
"rel": "execute-report",
"href": "/reporting-api/v1/reports/todaytraffic-by-time/versions/1/report-data"
}
]
}