Access Point (AP) Reports
The following metric
and dimension
combinations are possible for Access Points (AP) reports.
Metrics
ap_count
ap_status
ue_count
ue_status
Dimensions
device
(Edge Location: PHI-1, DEN-1, CHI-1)enb_ip
(Mobile Access Point IP)seid
(Session ID)ue_ip
info
If the above reports are used with device
, or enb_ip
dimension, in most cases the response will be the data for a single UE within that dimension, not for that dimension as a whole. For instance, a ap_count
report requesting MAX for a device
(the device being an Edge Point) will return the number of eNBs connected to that Edge Point for each time period (as specified by the step
value) during the time window. The exception is where the COUNT
aggregator is used, in which case the result will be the total count for all UEs in each time period.
Examples
AP Count for EdgePoint
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": "ap_count",
"aggregation_type": "COUNT"
}
}'
Response
{
"account_id": "668dbec28474f8e6f9940a67",
"mobile-core-id": "668dbec28474f8e6f9940a67",
"metric": "ap_count",
"aggregation_type": "COUNT",
"edgepoint": "PHI-1",
"result": [
{
"time_stamp": "2024-08-13T20:58:24+00:00",
"value": 14
},
{
"time_stamp": "2024-08-13T21:03:24+00:00",
"value": 14
},
...
{
"time_stamp": "2024-08-13T21:53:24+00:00",
"value": 14
},
{
"time_stamp": "2024-08-13T21:58:24+00:00",
"value": 14
}
]
}
UE Status overview
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": "ue_count",
"aggregation_type": "COUNT"
}
}'
Response
{
"account_id": "668dbec28474f8e6f9940a67",
"mobile-core-id": "668dbec28474f8e6f9940a67",
"metric": "ue_status",
"aggregation_type": "COUNT",
"edgepoint": "PHI-1",
"result": [
{
"time_stamp": "2024-08-13T20:59:44+00:00",
"value": 1,
"instances": {
"enb_ip": "10.100.0.10",
"ue_ip": "192.168.100.14"
}
},
{
"time_stamp": "2024-08-13T21:04:44+00:00",
"value": 1,
"instances": {
"enb_ip": "10.100.0.10",
"ue_ip": "192.168.100.14"
}
},
...
{
"time_stamp": "2024-08-13T21:54:44+00:00",
"value": 1,
"instances": {
"enb_ip": "10.100.0.9",
"ue_ip": "192.168.100.65"
}
},
{
"time_stamp": "2024-08-13T21:59:44+00:00",
"value": 1,
"instances": {
"enb_ip": "10.100.0.9",
"ue_ip": "192.168.100.65"
}
}
]
}