jmx.yaml error, Include Section

이 페이지는 아직 한국어로 제공되지 않으며 번역 작업 중입니다. 번역에 관한 질문이나 의견이 있으시면 언제든지 저희에게 연락해 주십시오.

You may encounter the following error message when configuring your jmx.yaml file:

initialize check class [ERROR]: "Each configuration must have an 'include' section. See https://docs.datadoghq.com/integrations/java/ for more information"

In this case, the error is thrown because of incorrect indentation in the yaml file. For example, in the screenshot below you can see that there is no indentation of ‘domain’ after the ‘include’. This throws the error.

incorrect_jmx_include

If you were to place the above code into the Online YAML Parser , you would get a JSON object in the right hand window in which you can see that the value of “include” comes out as null.

In order to correct this, indent the lines below ‘include’ two spaces to the right as depicted below. This ensures that ‘include’ is not registered as null.

correct_jmx_include