JaredTan95 commented on a change in pull request #6193: URL: https://github.com/apache/skywalking/pull/6193#discussion_r559077511
########## File path: oap-server/server-bootstrap/src/main/resources/alarm-settings.yml ########## @@ -81,3 +81,16 @@ dingtalkHooks: webhooks: # - url: https://oapi.dingtalk.com/robot/send?access_token=dummy_token # secret: dummysecret + +feishuHooks: + textTemplate: |- + { + "msg_type": "text", + "content": { + "text": "Apache SkyWalking Alarm: \n %s." + }, Review comment: This may cause the OAP startup to fail due to a YAML parse failure. You need to remove this if it is unnecessary params, as follows: ```yaml feishuHooks: textTemplate: |- { "msg_type": "text", "content": { "text": "Apache SkyWalking Alarm: \n %s." } } ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
