如何将 Azure Alert 有效负载用于 HTTP 触发 azure 函数

How to consume Azure Alert payload to HTTP trigger azure function

我正在尝试使用 Azure 警报在调用 Azure 函数时发送的负载。

def main(req: func.HttpRequest) -> func.HttpResponse:
    logging.info('Python HTTP trigger function processed a request.')
    req_body = req.get_json()
    print(req_body)

但在 req_body 变量中没有得到任何东西。 有人知道如何在 python azure 函数中使用它。

如果想使用azure alert触发Azure Function,请参考以下步骤

  1. 创建 Azure 函数。我的代码如下
def main(req: func.HttpRequest) -> func.HttpResponse:
    logging.info('Python HTTP trigger function processed a request.')

  
    req_body = req.get_json()
    logging.info(req_body)
    return func.HttpResponse(
             "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response.",
             status_code=200
    )
  1. 创建警报

    一个。定义条件

    b。定义动作组

  2. 测试