look, ill start by saying that i dont do much programming but i know a little.
what i believe you need is a "function"
set up a function for everything you want to show in that monitor, then add another function called Draw or Whatever.
once you're done with all the functions start with the main program, the one that will request all the computers for status and then at the end call for the Draw() function using all the info stored.
Edit: my post was too ambiguous or W/E ill explain a little more.
Function getEngineStatus()
Code to get the status and store it in a variable goes here
end
and one more function for each data you want to represent, or maybe all in one. after that you start the program telling it to actually call those functions and store the values as you see fit. after that tell it to display each value at a specific coordinate to make sure that each one lines up as you want.
basically, the code you showed us would be the function for Engine status.... some other pc would give you the status for the fuel tanks, the current heat level, the amount of mobs in an area etc etc.