Hitachi Ops Center​

 View Only

 How to get REST API response from Analyzer detail view using CURL?

Jump to Best Answer
AgL Storage Ops's profile image
AgL Storage Ops posted 03-26-2022 06:21
I have been trying to get some data from ops analyzer detail view using CURL and REST API, but I end up with a response as below.

"code":"420000E4",
"error":"Mandatory parameter {dataset} not specified"


This is what I have been using :

curl -k -v -u uname:pwd -H "Authorization: Basic cmVzdGFwaTpTdG9yYWdlQDEyMw==" -X GET https://detailviewIP:8443/dbapi.do?action=retrieveAttributeDef

Please help in resolving this issue.
Vinod Subramaniam's profile image
Vinod Subramaniam Best Answer
You are missing the dataset. See examples below.

https://localhost:8443/dbapi.do?action=retrieveAttributeDef&dataset=defaultDs

curl -k -1 -H 'Authorization:Basic YWRtaW46SGl0YWNoaUAxMjM=' 'https://localhost:8443/dbapi.do?action=query&dataset=defaultDs&processSync=true' -H 'Content-Type:application/json' -d '{"query":"*raidStorage[=name rx .*]/raidClpr[@utilization rx b .+][@writePendingRate rx b .+]","startTime":"20180531_000000","endTime":"20180531_235900"}' -o ./perf/raidClpr.out