System Information¶
This resource allows the client to get system information including component versions and serial numbers from the GPR.
Resource |
api/nic/gpr/system_information |
Returns |
system information structure |
Supported methods |
|
Attributes¶
Field |
Type |
Description |
---|---|---|
unit_ser_num |
string |
Serial number of the enclosure. |
gic_serial_number |
string |
Serial number of the GIC board. |
app_code_version |
string |
Version of software running on the device. |
app_code_dip |
string |
DIP number of the software running on the device. |
type |
string |
Identifies a device as RX or TX. |
window_time_shift_reference_ps |
string |
The window time shift value to set to have first break appear at point 1 on the trace. |
Read the GPR system information¶
Sample request¶
response = requests.get("http://192.168.20.221:8080/api/nic/gpr/system_information")
curl http://192.168.20.221:8080/api/nic/gpr/system_information
Sample response data¶
{
"data": {
"gpr": {
"dev1": {
"unit_serial_number": "000066660000",
"type": "TX",
"app_code_dip": "2004-00229-01"
},
"dev0": {
"unit_serial_number": "000066660000",
"type": "RX",
"app_code_dip": "2004-00226-02"
},
"unit_serial_number": "FFFFFFFFFFFF",
"app_code_version": "3.039",
"gic_serial_number": "006794570024",
"app_code_dip": "2014-00092-05",
"window_time_shift_reference_ps": -45000
}
}