prolexic-metrics-by-scrubbing-centers

The following shows how to generate the prolexic-metrics-by-scrubbing-centers 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 metrics data (pre/post-mitigation) by scrubbing center. It requires a scrubbingCenters filter, with metric defaulted to BPS. The response includes Unix timestamp and N/A values for unavailable data.

Business object: scrubbingCenters

Data available for: 90 days

Required products: Prolexic Routed, Prolexic over ADC, Prolexic Connect, Prolexic IP Protect

Available metrics

MetricDescription
startDateTimeThe report's start time in ISO 8601 format using UTC time.
scrubbingCenterThe traffic mitigation scrubbing center.
preMitigationTrafficValueAll inbound traffic — both legitimate and malicious, that enters the ​Akamai​ Prolexic platform from the internet via anycast, before reaching the nearest scrubbing center.
postMitigationTrafficValueTraffic after initial mitigation has been applied – includes both the filtered attack traffic and the remaining clean traffic as it transits within ​Akamai​ towards the origin.

POST request

POST /reporting-api/v1/reports/metrics-by-scrubbing-centers

Sample: /reporting-api/v1/reports/prolexic-metrics-by-scrubbing-centers/versions/1/report-data?start=2025-05-26T15%3A45%3A00Z&end=2025-05-28T15%3A50%3A00Z&interval=FIVE_MINUTES

Required query parameters

ParameterTypeSampleDescription
startString2020-05-01T00:00: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.
endString2020-06-01T00:00: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_MINUTESSpecifies the time interval, one of: FIVE_MINUTES, HOUR, or DAY.

JSON request members

MemberTypeDescription
objectTypeStringSpecifies the business object for the report.
filtersObjectSpecifies a set of custom filters, with each filter's name keying an array with each filter's set of values: metric, scrubbingCenters, securityConfigs.
The response data includes only objects with metrics matching the query.
metricsArrayThe set of desired metrics. If omitted, the report includes all available metrics.

Request body:

{
  "objectType": "scrubbingCenters",
  "objectIds": [
    "SFO"
  ],
  "filters": {
    "metric": [
      "BPS"
    ],
    "scrubbingCenters": [
      "SFO"
    ],
    "securityConfigs": [
      "west_config"
    ]
  },
  "metrics": [
    "startDateTime",
    "preMitigationTrafficValue",
    "postMitigationTrafficValue"
  ]
}

# JSON response

Status 200 application/json

Response body

{
   "metadata": {
       "name": "prolexic-metrics-by-scrubbing-centers",
       "version": "1",
       "outputType": "HIERARCHICAL",
       "groupBy": [
           "startDateTime",
           "scrubbingCenter"
       ],
       "interval": "FIVE_MINUTES",
       "start": "2025-05-26T15:45:00Z",
       "end": "2025-05-28T15:50:00Z",
       "availableDataEnds": null,
       "suggestedRetryTime": null,
       "rowCount": 577,
       "filters": [
           {
               "name": "metric",
               "values": [
                   "BPS"
               ]
           },
           {
               "name": "scrubbingCenters",
               "values": [
                   "SFO"
               ]
           },
           {
               "name": "securityConfigs",
               "values": [
                   "west-config"
               ]
           }
       ],
       "columns": [
           {
               "name": "groupBy",
               "label": "startDateTime"
           },
           {
               "name": "groupBy",
               "label": "scrubbingCenter"
           },
           {
               "name": "startDateTime",
               "label": "startDateTime"
           },
           {
               "name": "preMitigationTrafficValue",
               "label": "Pre Mitigation"
           },
           {
               "name": "postMitigationTrafficValue",
               "label": "Post Mitigation"
           }
       ],
       "objectType": "scrubbingCenters",
       "objectIds": [
           "SFO"
       ]
   },
   "data": [
       {
           "startDateTime": "2025-05-28T03:10:00Z",
           "data": [
               {
                   "scrubbingCenter": "SFO",
                   "startDateTime": "1748401800000",
                   "preMitigationTrafficValue": "4886801",
                   "postMitigationTrafficValue": "3508874.5"
               }
           ]
       }
   ],
   "summaryStatistics": {}
}