I want to get performance of storage system using Netapp API and Java.
I am able to fetch volumes, Aggregates, Disks info.
Now I want to get memory and CPU utilization of a system. Which class should I use in order to get information related to CPU and memory?
I use apirunner object to call various classes in API.
Here is a code for a connection..
Protocol protocol = Protocol.INSECURE_HTTPS;
try {
ApiRunner apirunner = new ApiRunner(ApiTarget.builder()
.withHost(myip)
.withUserName(user)
.withPassword(pass)
.withTargetType(TargetType.FILER)
.useProtocol(protocol)
.build()
);