Skip to main content

Mobile Device (UE) Reports

The following metric and dimension combinations are possible for Mobile Device (UE) reports.

Metrics

  • downlink_bandwidth_usage (Bandwidth usage from the customer data network to the UE)
  • uplink_bandwidth_usage (Bandwidth usage from the UE to the customer data network)
info

If the above bandwidth usage reports are used with customer_id, device, or enb_ip dimension, the response will be the usage of a single UE within that dimension, not the usage of that dimension as a whole. For instance, a downlink_bandwidth_usage report requesting MAX bandwidth usage for a device (the device being an Edge Point) will return the downlink bandwidth usage of the top talking UE connected to that Edge Point during the time window.

  • ue_session_duration_seconds
  • ue_session_downlink_bytes
  • ue_session_downlink_packet
  • ue_session_uplink_bytes
  • ue_session_uplink_packets
  • ue_connections
  • ue_online_status

Dimensions

  • customer_id
  • device (Edge Point)
  • enb_ip (Mobile Access Point IP)
  • seid (Session ID)
  • ue_ip

Examples

UE Session Duration in seconds

curl --request POST \
--url 'https://api.dev.alefedge.com/connectivity/v2/report?Authorization=SI8v9KHJmDF3jCRmxxxxxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"start_date_time": "2023-10-27T19:19:19-04:00",
"end_date_time": "2023-10-27T20:19:19-04:00",
"granularity": "HOUR",
"dimension_filter_clauses": [
{
"filters": [
{
"dimension_name": "account_id",
"operator": "EXACT",
"expressions": [
"00000000000000000000000000000001"
]
}
]
}
],
"metrics": [
{
"name": "ue_session_duration_seconds",
"aggregation_type": "COUNT"
}
]
}'
curl --request POST \
--url 'https://api.dev.alefedge.com/connectivity/v2/report?Authorization=SI8v9KHJmDF3jCRmxxxxxxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"start_date_time": "2023-10-27T19:19:19-04:00",
"end_date_time": "2023-10-27T20:19:19-04:00",
"granularity": "HOUR",
"dimension_filter_clauses": [
{
"filters": [
{
"dimension_name": "account_id",
"operator": "EXACT",
"expressions": [
"00000000000000000000000000000001"
]
}
]
}
],
"metrics": [
{
"name": "ue_session_downlink_bytes",
"aggregation_type": "COUNT"
}
]
}'
curl --request POST \
--url 'https://api.dev.alefedge.com/connectivity/v2/report?Authorization=SI8v9KHJmDF3jCRmxxxxxxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"start_date_time": "2023-10-27T19:19:19-04:00",
"end_date_time": "2023-10-27T20:19:19-04:00",
"granularity": "HOUR",
"dimension_filter_clauses": [
{
"filters": [
{
"dimension_name": "account_id",
"operator": "EXACT",
"expressions": [
"00000000000000000000000000000001"
]
}
]
}
],
"metrics": [
{
"name": "ue_session_downlink_bytes",
"aggregation_type": "MIN"
}
]
}'
curl --request POST \
--url 'https://api.dev.alefedge.com/connectivity/v2/report?Authorization=SI8v9KHJmDF3jCRmxxxxxxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"start_date_time": "2023-10-27T19:19:19-04:00",
"end_date_time": "2023-10-27T20:19:19-04:00",
"granularity": "HOUR",
"dimension_filter_clauses": [
{
"filters": [
{
"dimension_name": "account_id",
"operator": "EXACT",
"expressions": [
"00000000000000000000000000000001"
]
}
]
}
],
"metrics": [
{
"name": "ue_session_downlink_bytes",
"aggregation_type": "MAX"
}
]
}'

UE connections

curl --request POST \
--url 'https://api.dev.alefedge.com/connectivity/v2/report?Authorization=SI8v9KHJmDF3jCRmxxxxxxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
"start_date_time": "2023-10-27T19:19:19-04:00",
"end_date_time": "2023-10-27T20:19:19-04:00",
"granularity": "HOUR",
"dimension_filter_clauses": [
{
"filters": [
{
"dimension_name": "account_id",
"operator": "EXACT",
"expressions": [
"00000000000000000000000000000001"
]
}
]
}
],
"metrics": [
{
"name": "ue_connections",
"aggregation_type": "COUNT"
}
]
}'