The following shows how to generate the endpoint-hits-by-method-and-response
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 data for your API endpoints by the HTTP methods that API consumers called on your endpoints, and the HTTP status code for those calls.
Business object: cpcode
Data available for: 90 days
Required products: API Gateway
Available metrics
Metric | Description |
---|---|
Data metrics | |
edgeBytes | The volume for the amount of API traffic that left the Akamai network. |
edgeHits | The number egress and midgress hits. |
midgressBytes | The volume for the amount of internal API traffic exchanged between Akamai edge servers. |
Summary metrics | |
edgeBytesMax | The highest volume for the amount of API traffic that left the Akamai network. |
edgeBytesMin | The lowest volume for the amount of API traffic that left the Akamai network. |
edgeBytesTotal | The total volume of edge traffic for given objects and filters. |
edgeHitsMax | The highest number of requests. |
edgeHitsMin | The lowest number of requests. |
edgeHitsTotal | The total number of edge requests for given objects and filters. |
midgressBytesMax | The highest volume for the amount of internal API traffic exchanged between Akamai edge servers. |
midgressBytesMin | The lowest volume for the amount of internal API traffic exchanged between Akamai edge servers. |
midgressBytesTotal | The total volume for the amount of internal API traffic exchanged between Akamai edge servers. |
Available filters
Filter | Type | Description |
---|---|---|
Optional filters | ||
endpoint_id | Integer | The ID of an API configuration registered with Akamai. |
http_method | Enumeration | A request method indicating the action performed on a resource. |
move : Copies, performs updates required by the move, like updating URLs, then deletes the source. | ||
unlock : Removes a lock on the target resource. | ||
proppatch : Sets or removes properties of the target resource. | ||
delete : Removes all information about the target resource. | ||
put : Replaces existing information about the target resource. | ||
head : Retrieves header information about the target resource, with no message body in the response. | ||
mkcol : Creates a new collection resource. | ||
patch : Updates existing information about the target resource. | ||
propfind : Retrieves properties defined on the target resource. | ||
trace : Creates a message loop-back test along the path to the resource. | ||
post : Sends information to the server. | ||
get : Retrieves information about the target resource. | ||
options : Describes communication methods for the target resource. | ||
lock : Prevents the use of other methods on the target resource. | ||
copy : Duplicates the target resource. | ||
connect : Creates a tunnel to the server. | ||
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_code | Integer | An HTTP response status code, for example, 201. |
POST request
POST /reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions/1/report-data{?start,end}
Sample: /reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions/1/report-data?start=2020-05-01T00%3A00%3A00Z&end=2020-06-01T00%3A00%3A00Z
Query parameters
Parameter | Type | Sample | Description |
---|---|---|---|
Required | |||
start | String | 2020-05-01T00: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-01T00: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. |
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": [
"edgeBytes",
"edgeBytesMax",
"edgeBytesMin",
"edgeBytesTotal",
"edgeHits",
"edgeHitsMax",
"edgeHitsMin",
"edgeHitsTotal",
"midgressBytes",
"midgressBytesMax",
"midgressBytesMin",
"midgressBytesTotal"
],
"filters": {
"endpoint_id": [
"577598",
"577596"
],
"http_method": [
"put",
"delete"
],
"response_class": [
"5xx",
"3xx"
],
"response_code": [
"500",
"200"
]
}
}
GET request
GET /reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions/1/report-data{?start,end,objectIds,allObjectIds,metrics,filters}
Sample: /reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions/1/report-data?start=2020-05-01T00%3A00%3A00Z&end=2020-06-01T00%3A00%3A00Z&objectIds=55232,23433,32433&metrics=edgeBytes%2CedgeBytesMax&filters=endpoint_id%3D577598%2Cendpoint_id%3D577597%2Chttp_method%3Ddelete%2Chttp_method%3Dput
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. |
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 | edgeBytes,edgeBytesMax | 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 | endpoint_id=577598,endpoint_id=577597,http_method=delete,http_method=put | 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": "endpoint-hits-by-method-and-response",
"version": "1",
"outputType": "FLAT",
"groupBy": [
"endpoint_id",
"http_method",
"response_code"
],
"start": "2020-05-01T00:00:00Z",
"end": "2020-06-01T00:00:00Z",
"availableDataEnds": null,
"suggestedRetryTime": null,
"rowCount": 4,
"filters": [
{
"name": "endpoint_id",
"values": [
"577597",
"577598"
]
},
{
"name": "http_method",
"values": [
"post",
"patch"
]
},
{
"name": "response_class",
"values": [
"5xx",
"2xx"
]
},
{
"name": "response_code",
"values": [
"403",
"500"
]
}
],
"columns": [
{
"name": "groupBy",
"label": "endpoint_id"
},
{
"name": "groupBy",
"label": "http_method"
},
{
"name": "groupBy",
"label": "response_code"
},
{
"name": "edgeBytes",
"label": "Edge Bytes"
},
{
"name": "edgeHits",
"label": "Edge Bytes"
},
{
"name": "midgressBytes",
"label": "Midgress Bytes"
}
],
"objectType": "cpcode",
"objectIds": [
"55232",
"23433",
"32433"
]
},
"data": [
{
"endpoint_id": "577597",
"http_method": "patch",
"response_code": "404",
"edgeBytes": "4813",
"edgeHits": "2832",
"midgressBytes": "4907"
},
{
"endpoint_id": "577595",
"http_method": "put",
"response_code": "201",
"edgeBytes": "1020",
"edgeHits": "2507",
"midgressBytes": "4774"
},
{
"endpoint_id": "577596",
"http_method": "get",
"response_code": "403",
"edgeBytes": "972",
"edgeHits": "2932",
"midgressBytes": "2443"
},
{
"endpoint_id": "577599",
"http_method": "delete",
"response_code": "500",
"edgeBytes": "2561",
"edgeHits": "3897",
"midgressBytes": "2440"
}
],
"summaryStatistics": {
"edgeBytesMax": {
"value": "4053",
"details": {}
},
"edgeBytesMin": {
"value": "768",
"details": {}
},
"edgeBytesTotal": {
"value": "2551",
"details": {}
},
"edgeHitsMax": {
"value": "4659",
"details": {}
},
"edgeHitsMin": {
"value": "98",
"details": {}
},
"edgeHitsTotal": {
"value": "4501",
"details": {}
},
"midgressBytesMax": {
"value": "3620",
"details": {}
},
"midgressBytesMin": {
"value": "1005",
"details": {}
},
"midgressBytesTotal": {
"value": "1654",
"details": {}
}
}
}
CSV response
Status 200 text/csv
Response Body:
#METADATA_START
name,endpoint-hits-by-method-and-response
version,1
source,endpoint-hits-by-method-and-response/versions/1
groupBy,endpoint_id,http_method,response_code
start,2020-05-01T00:00:00Z
end,2020-06-01T00:00:00Z
availableDataEnds,
suggestedRetryTime,
rowCount,4
objectType,cpcode
objectIds,55232,23433,32433
endpoint_id,577597,577598
http_method,post,patch
response_class,5xx,2xx
response_code,403,500
#METADATA_END
#SUMMARYSTATISTICS_START
edgeBytesMax,4053
edgeBytesMin,768
edgeBytesTotal,2551
edgeHitsMax,4659
edgeHitsMin,98
edgeHitsTotal,4501
midgressBytesMax,3620
midgressBytesMin,1005
midgressBytesTotal,1654
#SUMMARYSTATISTICS_END
#COLUMNS_START
endpoint_id,http_method,response_code,edgeBytes,edgeHits,midgressBytes
#COLUMNS_END
#DATA_START
577597,patch,404,4813,2832,4907
577595,put,201,1020,2507,4774
577596,get,403,972,2932,2443
577599,delete,500,2561,3897,2440
#DATA_END
Get report details
This sample Get a report type operation gets the same information you need to run the endpoint-hits-by-method-and-response
report as provided in this reference documentation, but available dynamically to your API client application.
GET /reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions/1
Status 200 application/json
Response body:
{
"name": "endpoint-hits-by-method-and-response",
"description": "Provides hits data for your API endpoints by the HTTP methods that API consumers called on your endpoints, and the HTTP status code for those calls.",
"businessObjectName": "cpcode",
"version": 1,
"status": "PUBLISHED",
"deprecated": false,
"timeBased": false,
"outputType": "FLAT",
"requiredProducts": [
"API Gateway"
],
"requiredRoles": [
"API Gateway Viewer",
"API Gateway Administrator"
],
"available": true,
"metrics": [
{
"name": "edgeBytes",
"description": "The volume for the amount of API traffic that left the Akamai network.",
"label": "Edge Bytes",
"unit": "BYTE",
"summaryStatistic": false
},
{
"name": "edgeBytesMax",
"description": "The highest volume for the amount of API traffic that left the Akamai network.",
"label": "Edge Bytes Max",
"unit": "BYTE",
"summaryStatistic": true
},
{
"name": "edgeBytesMin",
"description": "The lowest volume for the amount of API traffic that left the Akamai network.",
"label": "Edge Bytes Min",
"unit": "BYTE",
"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": "edgeHits",
"description": "The number egress and midgress hits.",
"label": "Edge Bytes",
"unit": "COUNT",
"summaryStatistic": false
},
{
"name": "edgeHitsMax",
"description": "The highest number of requests.",
"label": "Edge Hits Max",
"unit": "COUNT",
"summaryStatistic": true
},
{
"name": "edgeHitsMin",
"description": "The lowest number of requests.",
"label": "Edge Hits Min",
"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": "midgressBytes",
"description": "The volume for the amount of internal API traffic exchanged between Akamai edge servers.",
"label": "Midgress Bytes",
"unit": "BYTE",
"summaryStatistic": false
},
{
"name": "midgressBytesMax",
"description": "The highest volume for the amount of internal API traffic exchanged between Akamai edge servers.",
"label": "Midgress Bytes Max",
"unit": "BYTE",
"summaryStatistic": true
},
{
"name": "midgressBytesMin",
"description": "The lowest volume for the amount of internal API traffic exchanged between Akamai edge servers.",
"label": "Midgress Bytes Min",
"unit": "BYTE",
"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
}
],
"groupOutlyingValues": {
"enabled": false
},
"groupBy": [
"endpoint_id",
"http_method",
"response_code"
],
"filters": [
{
"name": "http_method",
"type": "enum",
"description": "A request method indicating the action performed on a resource.",
"values": [
{
"value": "move",
"description": "Copies, performs updates required by the move, like updating URLs, then deletes the source."
},
{
"value": "unlock",
"description": "Removes a lock on the target resource."
},
{
"value": "proppatch",
"description": "Sets or removes properties of the target resource."
},
{
"value": "delete",
"description": "Removes all information about the target resource."
},
{
"value": "put",
"description": "Replaces existing information about the target resource."
},
{
"value": "head",
"description": "Retrieves header information about the target resource, with no message body in the response."
},
{
"value": "mkcol",
"description": "Creates a new collection resource."
},
{
"value": "patch",
"description": "Updates existing information about the target resource."
},
{
"value": "propfind",
"description": "Retrieves properties defined on the target resource."
},
{
"value": "trace",
"description": "Creates a message loop-back test along the path to the resource."
},
{
"value": "post",
"description": "Sends information to the server."
},
{
"value": "get",
"description": "Retrieves information about the target resource."
},
{
"value": "options",
"description": "Describes communication methods for the target resource."
},
{
"value": "lock",
"description": "Prevents the use of other methods on the target resource."
},
{
"value": "copy",
"description": "Duplicates the target resource."
},
{
"value": "connect",
"description": "Creates a tunnel to the server."
}
],
"required": false
},
{
"name": "response_code",
"type": "int",
"description": "An HTTP response status code, for example, 201.",
"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": "endpoint_id",
"type": "int",
"description": "The ID of an API configuration registered with Akamai.",
"required": false
}
],
"intervals": [
"MONTH",
"WEEK",
"DAY",
"HOUR",
"FIVE_MINUTES"
],
"dataRetentionDays": 90,
"links": [
{
"rel": "self",
"href": "/reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions/1"
},
{
"rel": "versions",
"href": "/reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions"
},
{
"rel": "all-reports",
"href": "/reporting-api/v1/reports"
},
{
"rel": "execute-report",
"href": "/reporting-api/v1/reports/endpoint-hits-by-method-and-response/versions/1/report-data"
}
]
}