Retrieving the central_service.log file

All the measurement are saved in a file called central_service.log.

Downloading the file can be done with the help of the RsInstrument module.

from RsInstrument import *

resource_string = "my instrument resource" # e.g. "TCPIP::cmx50070-xxxxxx::HISLIP0::INSTR"

# Initializing the session
instr = RsInstrument(resource_string)

idn = instr.query_str("*IDN?")
print(f"\nConnected to: '{idn}'")

ip_analysis_res = instr.read_file_from_instrument_to_pc(
"/media/shared/smb_dataunit/rohde-schwarz/log/DAU/central_service.log", "./central_service.log")