gpt4 book ai didi

azure - 通过分析 Azure 日志发送警报

转载 作者:行者123 更新时间:2023-12-03 07:00:26 25 4
gpt4 key购买 nike

我正在使用一个写入日志的azure函数:

def main(name: str) :

connect_str = os.getenv('AzureWebJobsStorage')
blob = BlobClient.from_connection_string(conn_str=connect_str, container_name="testcsv",
blob_name=name)
exists = blob.exists()

if (exists == False):
logging.info(f"The blob exists \n")

else:
logging.error(f"The blob does not exist \n")


return exists

当我在日志中发现“该 blob 不存在”时,我想发送警报。我想我必须在警报中使用自定义日志搜索。你知道怎么做吗?

最佳答案

警报始终由遥测查询触发。如果我们可以制定一个查询来揭示不良行为,我们就可以针对不良行为设置警报。

到目前为止,我们可以创建自定义警报,即基于结果数指标测量

请参阅Microsoft Blog on Alert based on Analytics query using Custom Log Search了解更多信息。

关于azure - 通过分析 Azure 日志发送警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72458847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com