prolexic-metrics-by-fbm-routers

The following shows how to generate the prolexic-metrics-by-fbm-routers 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 FBM metrics data by router NetFlow IPs which are in DEPLOYED state. It requires the fbmRouterNetFlowIps filter, with metric defaulted to BPS. The response includes Unix timestamp and N/A values for unavailable data.

Business object: allFbmFilters

Data available for: 90 days

Required products: Prolexic Flow Based Monitoring

Available metrics

MetricDescription
startDateTimeThe report's start time in ISO 8601 format using UTC time.
fbmRouterNetFlowIpsThe DEPLOYED router Netflow IPs.
fbmTrafficValueOrigin traffic data transiting the FBM system, based on NetFlow data exported to ​Akamai​'s flow aggregation systems within the scrubbing centers.

POST request

POST /reporting-api/v1/reports/metrics-by-fbm-routers

Sample: /reporting-api/v1/reports/prolexic-metrics-by-fbm-routers/versions/1/report-data?start=2025-05-26T16%3A05%3A00Z&end=2025-05-28T16%3A10%3A00Z&interval=FIVE_MINUTES

Required query parameters

ParameterTypeSampleDescription
startString2025-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.
endString2025-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 object with each filter's set of values: metric and fbmRouterNetFlowIps.
metricsArrayThe set of desired metrics. If omitted, the report includes all available metrics.

Request body

{
 "objectType": "allFbmFilters",
 "filters": {
   "metric": [
     "BPS"
   ],
   "fbmRouterNetFlowIps": [
     "198.51.100.0"
   ]
 },
 "metrics": [
   "startDateTime",
   "fbmTrafficValue"
 ]
}

JSON response

Status 200 application/json

Response body

 {
   "metadata": {
       "name": "prolexic-metrics-by-fbm-routers",
       "version": "1",
       "outputType": "HIERARCHICAL",
       "groupBy": [
           "startDateTime",
           "fbmRouterNetFlowIp"
       ],
       "interval": "FIVE_MINUTES",
       "start": "2025-05-26T16:05:00Z",
       "end": "2025-05-28T16:10:00Z",
       "availableDataEnds": null,
       "suggestedRetryTime": null,
       "rowCount": 577,
       "filters": [
           {
               "name": "metric",
               "values": [
                   "BPS"
               ]
           },
   {
               "name": "fbmRouterNetFlowIps",
               "values": [
                   "198.51.100.0"
               ]
           }
       ],
       "columns": [
           {
               "name": "groupBy",
               "label": "startDateTime"
           },
           {
               "name": "groupBy",
               "label": "fbmRouterNetFlowIp"
           },
           {
               "name": "startDateTime",
               "label": "startDateTime"
           },
           {
               "name": "fbmTrafficValue",
               "label": "FBM"
           }
       ],
       "objectType": "allFbmFilters",
       "objectIds": [
           "198.51.100.0"
       ]
   },
   "data": [
       {
           "startDateTime": "2025-05-26T16:55:00Z",
           "data": [
               {
                   "fbmRouterNetFlowIp": "198.51.100.0",
                   "startDateTime": "1748275500000",
                   "fbmTrafficValue": "34556.90"
               }
           ]
       }
   ],
   "summaryStatistics": {}
}
"columns": [
    "startDateTime",
    "fbmRouterNetFlowIp",
    "fbmTrafficValue"
  ],
  "data": [
    {
      "startDateTime": "1741102200000",
      "fbmRouterNetFlowIp": "192.0.2.3",
      "fbmTrafficValue": 0.1
    }
  ]
}