Set "UE ID" field in Ue Metrics.
Signed-off-by: jinwei.fan <jinwei.fan@samsung.com> Change-Id: Id789316a0a7abd14a17ee112e1a6bbc6d71f48ef
This commit is contained in:
parent
3c35293212
commit
3557f23287
@ -649,6 +649,8 @@ func (c *Control) handleIndication(params *xapp.RMRParams) (err error) {
|
|||||||
json.Unmarshal([]byte(ueJsonStr), &ueMetrics)
|
json.Unmarshal([]byte(ueJsonStr), &ueMetrics)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ueMetrics.UeID = ueID
|
||||||
|
log.Printf("UeID: %d", ueMetrics.UeID)
|
||||||
ueMetrics.ServingCellID = servingCellID
|
ueMetrics.ServingCellID = servingCellID
|
||||||
log.Printf("ServingCellID: %s", ueMetrics.ServingCellID)
|
log.Printf("ServingCellID: %s", ueMetrics.ServingCellID)
|
||||||
|
|
||||||
@ -719,6 +721,8 @@ func (c *Control) handleIndication(params *xapp.RMRParams) (err error) {
|
|||||||
json.Unmarshal([]byte(ueJsonStr), &ueMetrics)
|
json.Unmarshal([]byte(ueJsonStr), &ueMetrics)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ueMetrics.UeID = ueID
|
||||||
|
log.Printf("UeID: %d", ueMetrics.UeID)
|
||||||
ueMetrics.ServingCellID = servingCellID
|
ueMetrics.ServingCellID = servingCellID
|
||||||
log.Printf("ServingCellID: %s", ueMetrics.ServingCellID)
|
log.Printf("ServingCellID: %s", ueMetrics.ServingCellID)
|
||||||
|
|
||||||
@ -797,6 +801,8 @@ func (c *Control) handleIndication(params *xapp.RMRParams) (err error) {
|
|||||||
json.Unmarshal([]byte(ueJsonStr), &ueMetrics)
|
json.Unmarshal([]byte(ueJsonStr), &ueMetrics)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ueMetrics.UeID = ueID
|
||||||
|
log.Printf("UeID: %d", ueMetrics.UeID)
|
||||||
ueMetrics.ServingCellID = servingCellID
|
ueMetrics.ServingCellID = servingCellID
|
||||||
log.Printf("ServingCellID: %s", ueMetrics.ServingCellID)
|
log.Printf("ServingCellID: %s", ueMetrics.ServingCellID)
|
||||||
|
|
||||||
|
@ -360,7 +360,7 @@ type NeighborCellRFType struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type UeMetricsEntry struct {
|
type UeMetricsEntry struct {
|
||||||
UeID string `json:"UE ID"`
|
UeID int64 `json:"UE ID"`
|
||||||
ServingCellID string `json:"Serving Cell ID"`
|
ServingCellID string `json:"Serving Cell ID"`
|
||||||
MeasTimestampPDCPBytes Timestamp `json:"Meas-Timestamp-PDCP-Bytes"`
|
MeasTimestampPDCPBytes Timestamp `json:"Meas-Timestamp-PDCP-Bytes"`
|
||||||
PDCPBytesDL int64 `json:"PDCP-Bytes-DL"`
|
PDCPBytesDL int64 `json:"PDCP-Bytes-DL"`
|
||||||
|
Loading…
Reference in New Issue
Block a user