0
我想使用Netapp API和Java來獲得存儲系統的性能。如何使用Netapp API和Java來獲得CPU和內存的性能?
我能夠獲取卷,聚合,磁盤信息。
現在我想獲得系統的內存和CPU利用率。 爲了獲得與CPU和內存相關的信息,我應該使用哪個類?
我使用apirunner對象來調用API中的各個類。
下面是一個連接的代碼..
Protocol protocol = Protocol.INSECURE_HTTPS;
try {
ApiRunner apirunner = new ApiRunner(ApiTarget.builder()
.withHost(myip)
.withUserName(user)
.withPassword(pass)
.withTargetType(TargetType.FILER)
.useProtocol(protocol)
.build()
);