Query PM Counters
A testing method for querying historical PM counter data directly without the DMS intervening.
Parameters for querying PM Counter data.
{
"start": 1632781620000,
"end": 1632929865000,
"technology": "string",
"cell_ids": [
"3139998247308295"
],
"counter_names": [
"PMUECTXTSETUPATT"
]
}
Milliseconds since the UNIX epoch defining the start of the time range to query.
Milliseconds since the UNIX epoch defining the end of the time range to query.
The wireless networking technology, nr
or lte
, of the counters being retrieved.
A list of Cell Global Identifiers. The results are filtered to include only data for the listed cells. If this field is not present, then the results contain counter data for all cells for all provided counter names.
One or more counter names on which to filter the results.
A successful retrieval of one job result, presented as a transfer-encoding chunked stream of multiple JSON objects, each single object as described in the schema.
{
"epoch_timestamp_ms": 1632781620000,
"counter_name": "PMRRCCONNESTABATT",
"counter_value": 5,
"vector_index": 0,
"cell_global_id": "string",
"cell_relation": 0,
"arp": 0,
"beam_id": 0,
"qci_5qi": 0,
"slice_id": 0,
"cause": "string"
}
Time in milliseconds since the UNIX epoch that this counter was recorded.
The name of the PM counter, as stored in the PM History database.
The float value of the counter at the time indicated by epoch_timestamp_ms
.
The vector index of this counter, if any. Set to -1 if this is a scalar counter.
The identifier of a cell. This is a Cell Global ID as a sequence of numerals as a string.
Indicates the other cell in cell relation PM counters.
The arp of this counter, if any.
The beam id of this counter, if any.
The qci_5qi of this counter, if any.
The slice id of this counter, if any.
The cause of this counter, if any.
Response Headers
undefined
{
"type": "string",
"title": "string",
"status": 400,
"detail": "Required field 'counter_names' missing.",
"instance": "string"
}
A URI representing the type of the problem.
A short summary of the error.
The HTTP Response code associated with this error.
A detailed description of the error.
An optional URI of the instance involved in the problem.