Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

how to find number of CPU core on datanode machine by ambari rest API

avatar

Hi all

 

 

I am running the following ambari API in order to find the CPU count on data node machine

 

 

curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://master:8080/api/v1/clusters/hdp_test/hosts?fields=Hosts/host_name,Hosts/public_host_name,Host...

 

we get the error about:

 

 

{

  "status" : 400,

  "message" : "The properties [host_compnents/HostRoles/component_name] specified in the request or predicate are not supported for the resource type Host."

 

 

The target is to find the number of cpu on data node machine as we can do it on datanode linux machine

 

nproc

16

Michael-Bronson
1 ACCEPTED SOLUTION

avatar

 

the API is


curl -sH "X-Requested-By: ambari" -u admin:admin http://AMBARI_SERVER_FQDN:8080/api/v1/hosts/DATA_NODE_FQDN | grep cpu

Michael-Bronson

View solution in original post

1 REPLY 1

avatar

 

the API is


curl -sH "X-Requested-By: ambari" -u admin:admin http://AMBARI_SERVER_FQDN:8080/api/v1/hosts/DATA_NODE_FQDN | grep cpu

Michael-Bronson