Edge Point (EP) Reports
The following metric and dimension combinations are possible for Edge Point reports
Metrics
- customer_vlan_breakout_egress_bytes
- customer_vlan_breakout_egress_packets
- customer_vlan_breakout_ingress_bytes
- customer_vlan_breakout_ingress_packets
- customer_vlan_ran_egress_bytes
- customer_vlan_ran_egress_packets
- customer_vlan_ran_ingress_bytes
- customer_vlan_ran_ingress_packets
Dimensions
- device(Edge Location: PHI-1, PHI-2, CHI-1)
Examples
User data traffic egressing Edge Point towards customer network in bytes
curl -X 'POST' 'https://api.alefedge.com/reporting/v2/reporting-service/{coreId}' \
  -H 'Authorization: Bearer <JWT TOKEN>' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "start_date_time": "LAST HOUR",
    "end_date_time": "NOW",
    "step": "5m",
    "dimension_filters": [
      {
        "dimension_name": "device",
        "operator": "EXACT",
        "expressions": [
          "PHI-1"
        ]
      }
    ],
    "metrics": {
      "name": "customer_vlan_breakout_egress_bytes",
      "aggregation_type": "COUNT"
    }
  }'
Response
{
  "account_id": "668dbec28474f8e6f9940a67",
  "mobile-core-id": "668dbec28474f8e6f9940a67",
  "metric": "customer_vlan_breakout_egress_bytes",
  "aggregation_type": "COUNT",
  "edgepoint": "PHI-1",
  "result": [
    {
      "time_stamp": "2024-08-13T21:17:48+00:00",
      "value": 654211901067
    },
    {
      "time_stamp": "2024-08-13T21:22:48+00:00",
      "value": 654216509952
    },
    ...
    {
      "time_stamp": "2024-08-13T22:12:48+00:00",
      "value": 654296424712
    },
    {
      "time_stamp": "2024-08-13T22:17:48+00:00",
      "value": 654302481657
    }
  ]
}
Mobile AP traffic egressing Edge Point in bytes
curl -X 'POST' 'https://api.alefedge.com/reporting/v2/reporting-service/668dbec28474f8e6f9940a67' \
  -H 'Authorization: Bearer <JWT TOKEN>' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "start_date_time": "LAST HOUR",
    "end_date_time": "NOW",
    "step": "5m",
    "dimension_filters": [
      {
        "dimension_name": "device",
        "operator": "EXACT",
        "expressions": [
          "PHI-1"
        ]
      }
    ],
    "metrics": {
      "name": "customer_vlan_ran_egress_bytes",
      "aggregation_type": "COUNT"
    }
  }'
Response
{
  "account_id": "668dbec28474f8e6f9940a67",
  "mobile-core-id": "668dbec28474f8e6f9940a67",
  "metric": "customer_vlan_ran_egress_bytes",
  "aggregation_type": "COUNT",
  "edgepoint": "PHI-1",
  "result": [
    {
      "time_stamp": "2024-08-13T21:20:27+00:00",
      "value": 2295994332248
    },
    {
      "time_stamp": "2024-08-13T21:25:27+00:00",
      "value": 2295998153329
    },
    ...
    {
      "time_stamp": "2024-08-13T22:15:27+00:00",
      "value": 2297163923149
    },
    {
      "time_stamp": "2024-08-13T22:20:27+00:00",
      "value": 2297169876505
    }
  ]
}