0

我正在尝试在调用 Azure 函数时使用 azure alert 发送的有效负载。

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 函数中使用它。

4

1 回答 1

0

如果要使用 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. 创建警报

    一种。定义条件

    湾。定义操作组 在此处输入图像描述

  2. 测试 在此处输入图像描述

于 2021-06-24T07:58:14.583 回答