System Functions
System functions are used to access the hardware resources on which the inSCADA Platform is running. It is also used to shut down, restart, and manage the list of requests made from the system.
Get System Requests
ins.getSystemRequests()
It receives a list of requests received to the system.
Return Value: Returns a list of requests to the system as an array.
Syntax
Delete System Requests
ins.deleteSystemRequests(object requests)
Deletes a request to the system.
object requests: The request object in the list.
Syntax
Get System Status
ins.getSystemStats()
It gives information about the system resources and usage amounts.
Return Value: Does not return any value.
Syntax
Shutdown System
ins.shutdown()
Turns off the system.
Return Value: Does not return any value.
Syntax
Restart System
ins.restart()
Restarts the system.
Return Value: Does not return any value.
Syntax
Last updated