Created 07-04-2016 09:22 AM
Hi All,
I was running the "Run Service Checks" from service actions and getting a overall status as success. I'm interested to know what all the checks covered under this for each service.
Is there a documentation on this? (or) anyone listed out this? Please share the information
Thanks,
Surya
Created 07-04-2016 09:38 AM
@Surya Rao this documents will tell you what are the service checks available
https://gist.github.com/mr-jstraub/0b55de318eeae6695c3f#payload-to-run-all-service-checks
and generally in each service checks , basic commands or operation relalted to the corresponding compoenent is executed and if result is successful the service check is passed
for more info you can run the service check and see what operation they are doing , for ex:
HDFS runs safemode command for service check:
safemode_command = format("dfsadmin -fs {namenode_address} -safemode get | grep OFF")
you can refer to the following file for hdfs service check:
same way there will be option for other components too
Created 07-04-2016 09:38 AM
@Surya Rao this documents will tell you what are the service checks available
https://gist.github.com/mr-jstraub/0b55de318eeae6695c3f#payload-to-run-all-service-checks
and generally in each service checks , basic commands or operation relalted to the corresponding compoenent is executed and if result is successful the service check is passed
for more info you can run the service check and see what operation they are doing , for ex:
HDFS runs safemode command for service check:
safemode_command = format("dfsadmin -fs {namenode_address} -safemode get | grep OFF")
you can refer to the following file for hdfs service check:
same way there will be option for other components too
Created on 07-07-2016 04:41 AM - edited 08-19-2019 04:23 AM
@Deepak Sharma, Thank you for the quick reply..
I was trying to bring the github code to easily readable format in excel spreadsheet. For instance, for HDFS service the service checks are as follows..
Trying to prepare the same for rest of the services.. if anyone already did this exercise, please save my time. 🙂
Thanks
Surya